vegapnk / RJW-Genes

Rimworld Biotech Genes related to RJW
MIT License
24 stars 28 forks source link

Hive Inheritance for custom Xenotypes. #56

Closed vegapnk closed 1 month ago

vegapnk commented 11 months ago

Seems like only pre-coded (XML) Xenotypes are detected and custom xenotypes are not. I got the following on Discord:

Ignoring Postfix Hediff_InsectEgg::ProcessHumanLikeInsectEgg - No Queen Parent - No Action.

this was with a custom xenotype, "mother" pawn had the queen gene and the host had the drone gene along with the insectincubator gene that auto-fertilizes eggs.  also had a second pawn with baseline xenotype to act as just a regular host, queen put eggs in her and one of the insects fertilized it.  in both cases the eggs birthed as baseline humans.

tested halamyr scenario again, works fine.

so i went back and tried a very basic test.  took the halamyr scenario, removed every gene but the required ones for each bug pawn (queen/drone genes plus genitals), renamed the new xenotypes test queen/breeder/hiveguard, and started a colony.  got several pawns egg'd and when the birthing happened it was the same baseline human babies with the same error message about no queen parent. 

Seems like something is wrong with my Queen-Detection: https://github.com/vegapnk/RJW-Genes/blob/f7445f8df77c664b3a3e79b2b05b4b0b41bf8880/Source/Genes/Hive/Helpers/HiveBirthLogic.cs#L137

Print is from https://github.com/vegapnk/RJW-Genes/blob/f7445f8df77c664b3a3e79b2b05b4b0b41bf8880/Source/Genes/Hive/Patches/Patch_InsectEggs_BirthBaby_SetHiveGenes.cs#L49

vegapnk commented 11 months ago

Ok, I can reproduce.

The issue is simple that the pawn.genes.Xenotype is null, and the pawn has a pawn.genes.CustomXenotype instead. That CustomXenotype is it's own type, which does not have a shared interface with Xenotype.

vegapnk commented 11 months ago

Should be fixed with 0aefb45d9bc581041e19378c02d15abcd654b8e8

vegapnk commented 8 months ago

This seems to persist in 1.3.0.

I received the following error on Discord:

"Pawn generation error: Generated pawn incapable of required skill: Construction Too many tries (120), returning null. Generation request: kindDef=Hunter_BasicMelee, context=NonPlayer, faction=PlayerColony, tile=-1, forceGenerateNewPawn=True, allowedDevelopmentalStages=Newborn, allowDead=False, allowDowned=True, canGeneratePawnRelations=False, mustBeCapableOfViolence=False, colonistRelationChanceFactor=0, forceAddFreeWarmLayerIfNeeded=False, allowGay=True, prohibitedTraits=, allowFood=False, allowAddictions=False, inhabitant=False, certainlyBeenInCryptosleep=False, biocodeWeaponChance=0, validatorPreGear=, validatorPostGear=, fixedBiologicalAge=, fixedChronologicalAge=, fixedGender=, fixedLastName=, fixedBirthName=
UnityEngine.StackTraceUtility:ExtractStackTrace ()
(wrapper dynamic-method) Verse.Log:Verse.Log.Error_Patch5 (string)
(wrapper dynamic-method) Verse.PawnGenerator:Verse.PawnGenerator.GenerateNewPawnInternal_Patch7 (Verse.PawnGenerationRequest&)
Verse.PawnGenerator:GenerateOrRedressPawnInternal (Verse.PawnGenerationRequest)
(wrapper dynamic-method) Verse.PawnGenerator:Verse.PawnGenerator.GeneratePawn_Patch13 (Verse.PawnGenerationRequest)
(wrapper dynamic-method) rjw.Hediff_InsectEgg:rjw.Hediff_InsectEgg.ProcessHumanLikeInsectEgg_Patch2 (rjw.Hediff_InsectEgg,Verse.Pawn,Verse.PawnKindDef,RimWorld.Faction)
(wrapper dynamic-method) rjw.Hediff_InsectEgg:rjw.Hediff_InsectEgg.GiveBirth_Patch0 (rjw.Hediff_InsectEgg)
(wrapper dynamic-method) rjw.Hediff_InsectEgg:rjw.Hediff_InsectEgg.Tick_Patch0 (rjw.Hediff_InsectEgg)
(wrapper dynamic-method) Verse.Pawn_HealthTracker:Verse.Pawn_HealthTracker.HealthTick_Patch0 (Verse.Pawn_HealthTracker)
(wrapper dynamic-method) Verse.Pawn:Verse.Pawn.Tick_Patch3 (Verse.Pawn)
Verse.TickList:Tick ()
(wrapper dynamic-method) Verse.TickManager:Verse.TickManager.DoSingleTick_Patch8 (Verse.TickManager)
Verse.TickManager:TickManagerUpdate ()
(wrapper dynamic-method) Verse.Game:Verse.Game.UpdatePlay_Patch4 (Verse.Game)

based on these files:

<?xml version="1.0" encoding="utf-8"?>
<Defs>

    <!-- 
        For writing your own: 
        1. specify your queenXenotype with an exactly matching name 
        2. defName is not important
        3. queen + drone + worker == 1

        Otherwise, it should default to the ones specified for rjw_genes_default_hive_offspring_chances
    -->

    <RJW_Genes.HiveOffspringChanceDef>
        <!-- Important: this default defName cannot be renamed! It is a protected keyword.-->
        <!-- Changing the queenXenotype-Name will also throw an error.-->
        <!-- But you can change the workerGenes list.-->
        <defName>rjw_genes_default_hive_offspring_chances</defName>
        <queenXenotype>default</queenXenotype>

        <queenChance>0.02</queenChance>
        <droneChance>0.48</droneChance>
        <workerChance>0.5</workerChance>

    </RJW_Genes.HiveOffspringChanceDef>

    <RJW_Genes.HiveOffspringChanceDef>
        <defName>rjw_genes_test_queen_offspring_chances</defName>
        <queenXenotype>rjw_genes_test_queen_xenotype</queenXenotype>

        <queenChance>0.02</queenChance>
        <droneChance>0.28</droneChance>
        <workerChance>0.7</workerChance>

    </RJW_Genes.HiveOffspringChanceDef>

        <RJW_Genes.HiveOffspringChanceDef>
        <defName>rjw_genes_Halita_offspring_chances</defName>
        <queenXenotype>Halita</queenXenotype>

        <queenChance>0.001</queenChance>
        <droneChance>0.01</droneChance>
        <workerChance>0.989</workerChance>

    </RJW_Genes.HiveOffspringChanceDef>

</Defs>
<?xml version="1.0" encoding="utf-8"?>
<Defs>

    <RJW_Genes.QueenWorkerMappingDef>
        <!-- Important: this default defName cannot be renamed! It is a protected keyword.-->
        <!-- Changing the queenXenotype-Name will also throw an error.-->
        <!-- But you can change the workerGenes list.-->
        <defName>rjw_genes_default_worker_genes</defName>
        <queenXenotype>default</queenXenotype>
        <workerGenes>
            <li>StrongStomach</li>
            <li MayRequire="sarg.alphagenes" >AG_FasterAging</li>
            <li>PsychicAbility_Dull</li>
            <li>FireTerror</li>
            <li>Sterile</li>
            <li>AptitudeTerrible_Intellectual</li>
            <li>rjw_genes_featureless_chest</li>
            <li>rjw_genes_worker</li>
            <li>rjw_genes_zealous_loyalty</li>  
        </workerGenes>
    </RJW_Genes.QueenWorkerMappingDef>

    <RJW_Genes.QueenWorkerMappingDef>
        <defName>rjw_genes_halamyr_queen_worker_mapping</defName>
        <queenXenotype>rjw_genes_halamyr_queen_xenotype</queenXenotype>
        <workerGenes>
            <li MayRequire="sarg.alphagenes" >AG_SmallerBodySize</li>
            <li>StrongStomach</li>
            <li MayRequire="sarg.alphagenes" >AG_EfficientMandibles</li>
            <li MayRequire="sarg.alphagenes" >AG_FasterAging</li>
            <li>PsychicAbility_Dull</li>
            <li>FireTerror</li>
            <li>Sterile</li>
            <li MayRequire="sarg.alphagenes" >AG_FormicAntennas</li>
            <li>Skin_DeepRed</li>
            <li>AptitudeTerrible_Intellectual</li>
            <li>rjw_genes_featureless_chest</li>
            <li>rjw_genes_worker</li>
            <li>rjw_genes_zealous_loyalty</li>
        </workerGenes>
    </RJW_Genes.QueenWorkerMappingDef>

    <RJW_Genes.QueenWorkerMappingDef>
        <defName>rjw_genes_Halita_worker_mapping</defName>
        <queenXenotype>Halita</queenXenotype>
        <workerGenes>
            <li>rjw_genes_worker</li>
            <li>rjw_genes_zealous_loyalty</li>
            <li>AG_AcidicBlood</li>
            <li>BS_CannotWearClothingOrArmor</li>
            <li>BS_RabbitFrame</li>
            <li>BugParts_Abdomen_Caterpillar</li>
            <li>Outland_MonocularEye_Yellow</li>
            <li>Outland_MonocularHead</li>
            <li>PE_PollutionEater</li>
            <li>rjw_genes_female_only</li>
            <li>AG_FrailStomach</li>
            <li>AG_UnderdevelopedTeeth</li>
            <li>WVC_NaturalFastGrowing</li>
            <li>AgingGeneRapidThrice</li>
            <li>WVC_Emotionless</li>
            <li>ToxResist_Total</li>
            <li>MeleeDamage_Weak</li>
            <li>AG_AcidImmunity</li>
            <li>Sterile</li>
            <li>Skin_InkBlack</li>
            <li>AG_SlugVoice</li>
            <li>rjw_genes_featureless_chest</li>
            <li>rjw_genes_no_vagina</li>
            <li>Flesh_Insect</li>
        </workerGenes>
    </RJW_Genes.QueenWorkerMappingDef>

</Defs>
vegapnk commented 8 months ago

On Request, this was the buggy xenotype:

<?xml version="1.0" encoding="utf-8"?>
<savedXenotype>
    <meta>
        <gameVersion>1.4.3704 rev896</gameVersion>
        <modIds>
            <li>zetrith.prepatcher</li>
            <li>brrainz.harmony</li>
            <li>taranchuk.fastergameloading</li>
            <li>bs.fishery</li>
            <li>ludeon.rimworld</li>
            <li>bs.performance</li>
            <li>ludeon.rimworld.royalty</li>
            <li>ludeon.rimworld.ideology</li>
            <li>ludeon.rimworld.biotech</li>
            <li>redmattis.betterprerequisites</li>
            <li>unlimitedhugs.hugslib</li>
            <li>jecrell.jecstools</li>
            <li>erdelf.humanoidalienraces</li>
            <li>murmur.walllight</li>
            <li>kentington.saveourship2</li>
            <li>avius.locks</li>
            <li>agentblac.makepawnsprisoners</li>
            <li>mehni.misc.modifications</li>
            <li>kura.amodaboutmeat</li>
            <li>hol.meatpatch</li>
            <li>boriselec.artai</li>
            <li>anthitei.athsstyleableframework.style</li>
            <li>anthitei.athsstyledraconic.style</li>
            <li>zal.abmoca</li>
            <li>nitrodev.absolutelynoroof</li>
            <li>redmattis.fastergenesregrowing</li>
            <li>sumghai.replimat</li>
            <li>oskarpotocki.vanillafactionsexpanded.core</li>
            <li>jkn.adobeabode</li>
            <li>oskarpotocki.vanillafactionsexpanded.settlersmodule</li>
            <li>vanillaexpanded.vwec</li>
            <li>vanillaexpanded.vwe</li>
            <li>vanillaexpanded.vwehw</li>
            <li>vanillaexpanded.vwel</li>
            <li>vanillaexpanded.vweq</li>
            <li>vanillaexpanded.vweft</li>
            <li>oskarpotocki.vanillaexpanded.ideologypatches</li>
            <li>oskarpotocki.vanillaexpanded.royaltypatches</li>
            <li>akn.decorations</li>
            <li>whatamidoing.adjacentsettlements</li>
            <li>unlimitedhugs.allowtool</li>
            <li>roolo.almostthere</li>
            <li>spoonshortage.adogsaidanimalprosthetics</li>
            <li>vanillaexpanded.vcooke</li>
            <li>tachyonite.pawnmorpherpublic</li>
            <li>vanillaexpanded.vpsycastse</li>
            <li>sarg.alphaanimals</li>
            <li>sarg.alphabiomes</li>
            <li>vanillaracesexpanded.android</li>
            <li>sarg.alphagenes</li>
            <li>oskarpotocki.vfe.insectoid</li>
            <li>sarg.alphagenesvfei</li>
            <li>oskarpotocki.vfe.mechanoid</li>
            <li>sarg.alphamechs</li>
            <li>vanillaexpanded.vbookse</li>
            <li>vanillaexpanded.vcef</li>
            <li>vanillaexpanded.vmemese</li>
            <li>sarg.alphamemes</li>
            <li>sarg.magicalmenagerie</li>
            <li>thegoofyone.amazonianriver</li>
            <li>explodoboy.snsambitioncosmic</li>
            <li>oskarpotocki.vfe.pirates</li>
            <li>aa.warcaskets.rw</li>
            <li>zal.ancientcrystals</li>
            <li>hh.xrushha.animaanimalscombined</li>
            <li>puremj.mjrimmods.animalresourcelabel</li>
            <li>atk.anthrosonae</li>
            <li>proxyer.desurgeries.desurgeries</li>
            <li>goudaquiche.moharframework</li>
            <li>roo.antyracemod</li>
            <li>mlie.apexrimworldlegends</li>
            <li>sera.apinialienrace</li>
            <li>apitec.plus</li>
            <li>mlie.apothecary</li>
            <li>gguake.apparelbodyresolver</li>
            <li>shinzy.apparello</li>
            <li>neronix17.toolbox</li>
            <li>mlie.arachnerace</li>
            <li>neronix17.archotech.genetics</li>
            <li>edern.archotechweaponry</li>
            <li>fluffy.areaunlocker</li>
            <li>mlie.argoniansofblackmarsh</li>
            <li>4ydra.arsenalofcore</li>
            <li>4ydra.arsenalofreaction</li>
            <li>4ydra.arsenalofrevolution</li>
            <li>audreysstyles.industrial</li>
            <li>onyxae.dragonsdescent</li>
            <li>aurorankingslayer.asoiafdd</li>
            <li>mlie.autotamer</li>
            <li>ut.autodrill</li>
            <li>iexist.biotech.morebandwidth</li>
            <li>meltup.beautifuloutdoors</li>
            <li>nephlite.advexplosions</li>
            <li>co.uk.epicguru.bettertranshumanists</li>
            <li>redmattis.bigsmall.core</li>
            <li>redmattis.bsslimes</li>
            <li>vanillaexpanded.vfecore</li>
            <li>redmattis.bsfurniture</li>
            <li>solaris.bioreactor</li>
            <li>crazan.bioreactorpatch</li>
            <li>kikohi.berf</li>
            <li>m00nl1ght.geologicallandforms</li>
            <li>m00nl1ght.geologicallandforms.biometransitions</li>
            <li>odeum.biomeskit</li>
            <li>regrowth.botr.core</li>
            <li>sihv.rombones</li>
            <li>dismarzero.vgp.vgpvegetablegarden</li>
            <li>dismarzero.vgp.vgpgardendrinks</li>
            <li>oskarpotocki.vanillafactionsexpanded.medievalmodule</li>
            <li>odeum.wmbp</li>
            <li>biomesteam.biomescore</li>
            <li>biomesteam.biomescaverns</li>
            <li>vanillaexpanded.vbrewe</li>
            <li>fluffysminion.itw.caveworldfloraunleashed</li>
            <li>biomesteam.oasis</li>
            <li>biotech.avali</li>
            <li>petre27.biotechbalancedcapacitorgenes</li>
            <li>biotexpans.core</li>
            <li>biotexpans.mammalia</li>
            <li>biotexpans.mythic</li>
            <li>redundant.genevariety</li>
            <li>gege.arachnid</li>
            <li>gege.analyst</li>
            <li>gene.rotfish</li>
            <li>sx99.biotech.bloodcolorgenes</li>
            <li>verniy709.bloodborneweaponremake</li>
            <li>deon.borderlands14</li>
            <li>translucency.braininajar.latest</li>
            <li>mlie.brrandphew</li>
            <li>sariusskelrets.buildablepsyconcausers</li>
            <li>sixdd.butcherrotten</li>
            <li>smashphil.vehicleframework</li>
            <li>cvnmechanoidwarfare</li>
            <li>8z.callforintel</li>
            <li>rimofmadness.callofcthulhu.elderthings</li>
            <li>jelly.caravangear</li>
            <li>mlie.caveworldflora</li>
            <li>mlie.centralizedclimatecontrol</li>
            <li>n7huntsman.ceramics.vef</li>
            <li>void.charactereditor</li>
            <li>dubwise.rimefeller</li>
            <li>vanillaexpanded.vfepower</li>
            <li>vanillaexpanded.vchemfuele</li>
            <li>vex.chemfuelfeller</li>
            <li>mlie.choosebiomecommonality</li>
            <li>owlchemist.cleanpathfinding</li>
            <li>kikohi.coloreddeepresources</li>
            <li>taranchuk.combatmodulescontinued</li>
            <li>mlie.combatreadinesscheck</li>
            <li>comigogames.biomes.greaterswamps</li>
            <li>comigogames.traders.grim</li>
            <li>vanillaexpanded.vfemedical</li>
            <li>vanillaexpanded.vnutriente</li>
            <li>vanillaracesexpanded.sanguophage</li>
            <li>zed.0xff.vnpe.connectedbed</li>
            <li>vanillaexpanded.skills</li>
            <li>alias.degeneralizework</li>
            <li>imranfish.xmlextensions</li>
            <li>gewen.additionaltraits</li>
            <li>monkey5206.carrycapacityfixed</li>
            <li>fuglypump.fallouttraits</li>
            <li>sierra.rt.generaltraits</li>
            <li>kayesh.scenariopawnsandcorpses</li>
            <li>rsev.synergistictraits</li>
            <li>kayesh.corpsechildren</li>
            <li>kayesh.corpsechildrencanlearn</li>
            <li>kayesh.corpsechildrenbodyenhancement</li>
            <li>rimofmadness.callofcthulhucosmichorrors</li>
            <li>dismarzero.vgp.vgpgardengourmet</li>
            <li>mlie.cosmichorrorvgppath</li>
            <li>tigerblut.creaturesofazeroth</li>
            <li>sa.cryoweapons</li>
            <li>com.distman.gastrap</li>
            <li>ik.cryogas</li>
            <li>wemd.expandedfloors</li>
            <li>ogliss.cupro.cuprosstones</li>
            <li>torann.customdeathrandomness</li>
            <li>ashilstraza.races.cute</li>
            <li>daniledman.cyberfauna</li>
            <li>caesarv6.damageindicators</li>
            <li>van.dacrypts</li>
            <li>darkelvar.deroofmining</li>
            <li>mlie.deadcanserve</li>
            <li>deadgoatweapons.velcroboy333</li>
            <li>mlie.differenteggsizes</li>
            <li>vanillaexpanded.vfea</li>
            <li>proxyer.dismantleancientjunk</li>
            <li>kb.prioritizeresearch</li>
            <li>sl4vp0wer.dominantgene</li>
            <li>tikubonn.dontblockdoor</li>
            <li>sarg.rimbees</li>
            <li>spino.megafauna</li>
            <li>spincrus.dinosauria</li>
            <li>vanillaexpanded.vgeneticse</li>
            <li>hol.dragongenetics</li>
            <li>dragonking.dragonsores</li>
            <li>dragonking.dragonsspecialores</li>
            <li>dragonking.dragonsveryspecialores</li>
            <li>eagle0600.dresspatients.1.4</li>
            <li>mlie.drugpolicyfix</li>
            <li>dubwise.dubspaintshop</li>
            <li>dubwise.dubsbreakmod</li>
            <li>dubwise.dubsmintmenus</li>
            <li>dubwise.dubsmintminimap</li>
            <li>dubwise.dubsperformanceanalyzer.steam</li>
            <li>dubwise.rimatomics</li>
            <li>zylle.ducks</li>
            <li>ykara.elstrages.epoe</li>
            <li>sirmashedpotato.escp.trolls</li>
            <li>mlie.electricfencesandfloors</li>
            <li>pebblecat.electricpods</li>
            <li>zylle.elephants</li>
            <li>smartkar.athenaframework</li>
            <li>vanillaexpanded.vpersonaweaponse</li>
            <li>statistno1.personabond</li>
            <li>sirvan.eltexweaponry</li>
            <li>mortstrudel.mortideologyscifai</li>
            <li>erin.storyteller</li>
            <li>vanillaracesexpanded.highmate</li>
            <li>erin.auronyabiotech</li>
            <li>erin.cottagecollection</li>
            <li>erin.ffanimals</li>
            <li>erin.shisune</li>
            <li>erin.valheim.creatures</li>
            <li>hams.eternalyouthtraits</li>
            <li>demonroka.euglenalibrary</li>
            <li>euglenaexpanded.euglenaxenotype</li>
            <li>euglenaexpanded.euglenaimplantor</li>
            <li>euglenaexpanded.slimeprinter</li>
            <li>tests.emg</li>
            <li>statistno1.evolvedorgansredux</li>
            <li>turnovus.submod.extendedbioengineering</li>
            <li>bombadier.extrawallsandfloors</li>
            <li>inglix.fasterbiosculptingpod</li>
            <li>warlocksforge.fishtraps</li>
            <li>hawkwood.faaw</li>
            <li>theeyeofbrows.fluffybreakdowns</li>
            <li>kathanon.followthevein</li>
            <li>forien.naturalizegenome</li>
            <li>kikohi.forsakens</li>
            <li>fort.insectoidarmor</li>
            <li>vanillaexpanded.vfearchitect</li>
            <li>vanillaexpanded.vfesecurity</li>
            <li>aoba.fortress.industrial</li>
            <li>aoba.fortress.industrial.nucleardawn</li>
            <li>aoba.fortress.medieval</li>
            <li>aoba.fortress.medieval.material</li>
            <li>aoba.fortress.neolithic</li>
            <li>mlie.gems</li>
            <li>tnd.geneforge</li>
            <li>tac.genetrader</li>
            <li>dimonsever000.genes.specific</li>
            <li>dimonsever000.genesastartes.specific</li>
            <li>k.glitternet</li>
            <li>albion.goexplore</li>
            <li>regrowth.botr.aspenforest</li>
            <li>regrowth.botr.boilingforest</li>
            <li>vanillaexpanded.vplantse</li>
            <li>vanillaexpanded.vplantsemore</li>
            <li>arquebus.stagzmerfolk</li>
            <li>thumb.goremod</li>
            <li>grimworld.autoguns</li>
            <li>grimworld.melee</li>
            <li>mlie.grubfarm</li>
            <li>arandomkiwi.guardsforme</li>
            <li>pphhyy.gulden</li>
            <li>jesp00.gunspears</li>
            <li>jp.harru</li>
            <li>asgalligator.hlvrmonsters</li>
            <li>halloweenparade.velcroboy333</li>
            <li>smuffle.harvestorganspostmortem</li>
            <li>mlie.harvestwhenbutchering</li>
            <li>syrus.hmschoice</li>
            <li>syrus.heatmap</li>
            <li>oskarpotocki.vfe.vikings</li>
            <li>vanillaexpanded.helixiengas</li>
            <li>cixwow.helixienbrazier</li>
            <li>vanillaexpanded.vfeproduction</li>
            <li>cixwow.helixiengasproduction</li>
            <li>baskerville.hellsingarmsultimate</li>
            <li>lusty.helltakergenes</li>
            <li>nosleep.hemofungus</li>
            <li>vanillaexpanded.vcookestews</li>
            <li>syrchalis.processor.framework</li>
            <li>mallow.hemogencuisine</li>
            <li>zed.0xff.hemogengrinder</li>
            <li>mlie.hightechlaboratoryfacilities</li>
            <li>arquebus.hotseat</li>
            <li>pal5k.huntermechanoid</li>
            <li>blackmarket420.hunterphages</li>
            <li>zylle.hybridanimals</li>
            <li>kathanon.ivfequality</li>
            <li>detvisor.impactweaponry</li>
            <li>vanillaexpanded.vaecaves</li>
            <li>carnagion.improvedinsectoids</li>
            <li>murmur.incidentdisabler</li>
            <li>mlie.callofcthulhuindustrialage</li>
            <li>tyrannicalelmo.industrialarmory</li>
            <li>iexist.industrial.melee.weaponry</li>
            <li>ogliss.thewhitecrayon.quarry</li>
            <li>zal.industrialrevolution</li>
            <li>mlie.cuprosalloys</li>
            <li>trasheddt.industrialisation</li>
            <li>o.inf.reinforce</li>
            <li>notfood.infused</li>
            <li>zaf.injectgene</li>
            <li>nemtek.insects</li>
            <li>sov.alienxenotype</li>
            <li>mlie.ivoryandjadecarving</li>
            <li>caveman.jellywall</li>
            <li>el.kenshifauna</li>
            <li>mlie.knotroot</li>
            <li>kura.extragems</li>
            <li>redmattis.bigsmall</li>
            <li>redmattis.lamiasandothersnakes</li>
            <li>ucp.lavalamps</li>
            <li>ghostdata.livemunitions</li>
            <li>samael.livestocktraders</li>
            <li>learntoread.please</li>
            <li>lizard.patch</li>
            <li>smashphil.loadinginprogress</li>
            <li>lanilor.lootboxes</li>
            <li>carnysenpai.enableoversizedweapons</li>
            <li>el.mow</li>
            <li>aranmaho.makai.psycast</li>
            <li>aranmaho.makai</li>
            <li>oskarpotocki.vanillavehiclesexpanded</li>
            <li>aranmaho.makai.vehicles</li>
            <li>eltwofour.mantodeanrace</li>
            <li>herigony.mapedittools</li>
            <li>uuugggg.mealsonwheels</li>
            <li>lyinlen.mechtheraphosidae</li>
            <li>chairheir.mechaniteplague</li>
            <li>arquebus.morepersonatraits</li>
            <li>imjustjoshin.mechanitepersonatraits</li>
            <li>mlie.mechanoidmasterblaster</li>
            <li>gege.mechanoidmodifications</li>
            <li>bx395.warhiveseries.mechreconhive</li>
            <li>sumghai.medpod</li>
            <li>mlie.medicalsupplements</li>
            <li>notfood.mendandrecycle</li>
            <li>owlchemist.midsaversaver</li>
            <li>daria40k.mightypersonabondforgepatch</li>
            <li>sutsutman.minchothemintchocoslimeharver</li>
            <li>goudaquiche.ltfmindcontrol</li>
            <li>haplo.miscellaneous.core</li>
            <li>haplo.miscellaneous.turretbaseandobjects</li>
            <li>nerdwonder.mixedblock</li>
            <li>kaitorisenkou.modularweapons</li>
            <li>kaitorisenkou.modularweapons.awsaraddon</li>
            <li>commandershrekard.modularweapons.expanded</li>
            <li>kaitorisenkou.modularweapons.gpmg</li>
            <li>kaitorisenkou.modularweapons.militiarifle</li>
            <li>kaitorisenkou.modularweapons.pdwaddon</li>
            <li>kaitorisenkou.modularweapons.policerifle</li>
            <li>mfmfwolf.modularweapons.adcr</li>
            <li>asgalligator.mhrw</li>
            <li>hol.mhrwe</li>
            <li>mooloh.dndmenagerie</li>
            <li>sg.moonjelly</li>
            <li>owlchemist.moonlight</li>
            <li>arquebus.moregenecomplexity</li>
            <li>zed.0xff.vres.morevats</li>
            <li>4loris4.morelinkables</li>
            <li>kenx00x.moremaxmemes</li>
            <li>limetreesnake.systems</li>
            <li>limetreesnake.furnishing</li>
            <li>orion.moremechanoids</li>
            <li>llunak.moreprecepts</li>
            <li>jemlpro.morerealistictraits.specific</li>
            <li>kirby.morereligiousorigins</li>
            <li>dra.morerimefellercompat</li>
            <li>teiwaz.mve</li>
            <li>layken.morethanashesv2</li>
            <li>sunny.glsterilewalls</li>
            <li>pathavoid.kv.rw</li>
            <li>vanillaexpanded.outposts</li>
            <li>sirmashedpotato.morrowrim</li>
            <li>sirmashedpotato.morrowrim.ashswamp</li>
            <li>sirmashedpotato.morrowrim.grazelands</li>
            <li>sirmashedpotato.morrowrim.volcanicashlands</li>
            <li>sirmashedpotato.morrowrim.ashlanderxenotype</li>
            <li>sirmashedpotato.morrowrim.biomespatch</li>
            <li>sirmashedpotato.morrowrim.bloatspore</li>
            <li>sirmashedpotato.morrowrim.bloodmoon</li>
            <li>sirmashedpotato.morrowrim.dunmerstyles</li>
            <li>sirmashedpotato.morrowrim.mashedlampspack1</li>
            <li>sirmashedpotato.morrowrim.glassandebony</li>
            <li>sirmashedpotato.morrowrim.moonsugarandskooma</li>
            <li>pphhyy.escp.spriggan</li>
            <li>vanillaexpanded.vcefaddon</li>
            <li>neronix17.outland.core</li>
            <li>sirmashedpotato.morrowrim.simplebonemold</li>
            <li>sirmashedpotato.morrowrim.bonewalkers</li>
            <li>sirmashedpotato.morrowrim.thesixthhouse</li>
            <li>sirmashedpotato.morrowrim.telvannitechnology</li>
            <li>sirmashedpotato.morrowrim.telvannispiders</li>
            <li>aludisnhg.morrowrimpsycasts</li>
            <li>mlie.neolithicscavenging</li>
            <li>sov.elseudpathf</li>
            <li>vanillaexpanded.vpe.puppeteer</li>
            <li>brkr.nobackstorylockedpsycastpaths</li>
            <li>jdalt.nomorelethaldamagethreshold</li>
            <li>zirc.nonaturalpsyfocusdecrease</li>
            <li>canon.nomechsummonergizmo</li>
            <li>aoba.motorization.engine</li>
            <li>zaryuobj279.mod</li>
            <li>obsidiaexpansion.core</li>
            <li>obsidiaexpansion.xenos.mothoids</li>
            <li>obsidiaexpansion.xenos.tortle</li>
            <li>obsidiaexpansion.xenos.arachnas</li>
            <li>vera.bug</li>
            <li>dianawinters.orassans</li>
            <li>neronix17.outland.eastbornempire</li>
            <li>neronix17.outland.furnitureanddecor</li>
            <li>neronix17.outland.morefloors</li>
            <li>neronix17.outland.motzcoalition</li>
            <li>neronix17.outland.redburnpact</li>
            <li>neronix17.outland.toxicforest</li>
            <li>neronix17.outland.genetics</li>
            <li>neronix17.outland.vathunnobles</li>
            <li>packmulesextended.standard</li>
            <li>packmulesextended.dinosauria</li>
            <li>zylle.parrots</li>
            <li>murmur.pawnnamevariety</li>
            <li>tachyonite.pawnmorpher.insects</li>
            <li>taranchuk.performanceoptimizer</li>
            <li>alleykat.persistentprecepts</li>
            <li>owlchemist.perspectivebuildings</li>
            <li>zal.planetsidepew</li>
            <li>twokay.plushies.specific</li>
            <li>supes.powerlogic.core</li>
            <li>owlchemist.powertab</li>
            <li>spdskatr.projectrimfactory</li>
            <li>arandomkiwi.powerpp</li>
            <li>syrus.preceptfungusexpanded</li>
            <li>ptei.leeh</li>
            <li>thesepeople.ritualattachableoutcomes</li>
            <li>mlie.preceptsandmemes</li>
            <li>mlie.preceptsandmemesritualsmodule</li>
            <li>mlie.presetfilteredzones</li>
            <li>insertkey.prioritize</li>
            <li>mlie.prisonersshouldfearturrets</li>
            <li>spdskatr.projectrimfactory.drones</li>
            <li>com.spdskatr.projectrimfactory.insanity</li>
            <li>arquebus.psyblasters</li>
            <li>vanillaexpanded.ideo.dryads</li>
            <li>overpl.psylinkers</li>
            <li>dninemfive.qualitycooldown</li>
            <li>sirmashedpotato.questingmeme</li>
            <li>mlie.questionableethicsenhanced</li>
            <li>sandy.rpgstyleinventory.avilmask.revamped</li>
            <li>oddball.reloaded</li>
            <li>sargoskar.racetotherim</li>
            <li>lvlvbnh.raisespecialistlimit</li>
            <li>allemazza.rapidaginggenes</li>
            <li>regrowth.botr.desertexpansion</li>
            <li>regrowth.botr.borealforestexpansion</li>
            <li>regrowth.botr.swampexpansion</li>
            <li>regrowth.botr.temperateforestexpansion</li>
            <li>regrowth.botr.tundraexpansion</li>
            <li>mlie.realfactionguest</li>
            <li>woolstrand.realruins</li>
            <li>lucifer.realisticrooms</li>
            <li>bustedbunny.recylethis</li>
            <li>hlx.reinforcedmechanoids2</li>
            <li>mlie.relevantstatsindescription</li>
            <li>gerads.removegradualrelationsdecaypatchy</li>
            <li>neigh.researchpalrepackage</li>
            <li>mrkociak.droppodbaitscanner</li>
            <li>somewhereoutinspace.reusepods.updated</li>
            <li>pal5k.reverseengineeredregionadjusters</li>
            <li>telardo.bettergenegraphicsframework</li>
            <li>fs.reviaracebiotech</li>
            <li>mlie.rimofmadnessarachnophobia</li>
            <li>rimeffect.core</li>
            <li>rimeffect.asarireapers</li>
            <li>vexedtrees980.rimshekbiotech</li>
            <li>cabbage.rimcities</li>
            <li>mlie.rc2.core</li>
            <li>mlie.rc2.mame</li>
            <li>mlie.rc2.apabp</li>
            <li>dismarzero.vgp.rimfortressdwarvenplants</li>
            <li>rim.office</li>
            <li>mlie.rimplas</li>
            <li>pgamesfood.rimsiderecycling</li>
            <li>terrag.dragonage.dragonagemetals</li>
            <li>mlie.rimworldblackplague</li>
            <li>sirmashedpotato.darkdescent</li>
            <li>sargoskar.witcherhunt</li>
            <li>mlie.rimwriter</li>
            <li>sickboywi.theendtimes.theendtimes</li>
            <li>sickboywi.theendtimes.magic</li>
            <li>automatic.rimlaser</li>
            <li>yrtwof.rimpedia</li>
            <li>rimsenal.evp</li>
            <li>rimsenal.federation</li>
            <li>rimsenal.feral</li>
            <li>rimsenal.core</li>
            <li>rimsenal.hair</li>
            <li>rimsenal.security</li>
            <li>rimsenal.storyteller</li>
            <li>rimsenal.sophian</li>
            <li>rimsenal.techist</li>
            <li>rimsenal.urb</li>
            <li>rimsenal.askbarn</li>
            <li>mlie.rimworldspartanfoundry</li>
            <li>mlie.roadsoftherim</li>
            <li>rooboid.minotaur</li>
            <li>odysseylotus.seren</li>
            <li>rooboid.minotaur.expanded</li>
            <li>owlchemist.toggleableoverlays</li>
            <li>owlchemist.giddyup</li>
            <li>rooboid.faun</li>
            <li>vanillaexpanded.vappe</li>
            <li>rooboid.satyr</li>
            <li>rooboid.satyrfaun.expanded</li>
            <li>ghost.rootsofrimworld</li>
            <li>uveren.royalwarcaskets</li>
            <li>mlie.runandhide</li>
            <li>dimonsever000.spaceexpansion.specific</li>
            <li>taranchuk.savecleaner</li>
            <li>owlchemist.scatteredstones</li>
            <li>pal5k.scramblermechanoid</li>
            <li>roolo.searchanddestroy</li>
            <li>deemainiac.securecontainrimworld</li>
            <li>spacemoth.showknowntechprints</li>
            <li>zal.metallicweaves</li>
            <li>solaris.furniturebase</li>
            <li>gomi.simplestairs</li>
            <li>mlie.simplymorebridges</li>
            <li>mlie.simplymoremelee</li>
            <li>mrhydralisk.skilledrefueling</li>
            <li>mrhydralisk.skilledslaughtering</li>
            <li>razar1.skrixrace</li>
            <li>punkyroo.slimerancher</li>
            <li>zylle.slimes</li>
            <li>smoothedstoneisworthless.mod</li>
            <li>pal5k.snowcrawler</li>
            <li>albion.sparklingworlds.full</li>
            <li>jelly.stackstufffirst</li>
            <li>indeed.stackxxl</li>
            <li>roolo.dualwield</li>
            <li>guy762.kotorweapons</li>
            <li>turnovus.biotech.integratedgenes</li>
            <li>sov.sandysandy</li>
            <li>sov.sith</li>
            <li>guy762.starwarsxenotypes</li>
            <li>lumi.swfloor.floors</li>
            <li>scurvyez.bastyon</li>
            <li>mlie.stopquarryingwhenfull</li>
            <li>mlie.stuffmassmatters</li>
            <li>vanillaexpanded.varme</li>
            <li>crazedmonkey23.armormaterials</li>
            <li>flangopink.stuffeddrinks</li>
            <li>mlie.fencesandfloors</li>
            <li>telkir.tmods.morefloors</li>
            <li>fluffy.stuffedfloors</li>
            <li>hol.stuffedpower</li>
            <li>daemon976.stuffedsecurity</li>
            <li>cucumpear.workbenches</li>
            <li>murmur.subsurfaceconduit</li>
            <li>sov.homelander</li>
            <li>superherogenesbase.mod</li>
            <li>rearden.sbs</li>
            <li>metort.synthtkweaps</li>
            <li>allezsoyez.ttfm.tatestinyfurnituremod</li>
            <li>dusty.tauarmory</li>
            <li>void.terraformrimworld</li>
            <li>sa.terrasecurity</li>
            <li>revolus.textilestats</li>
            <li>mortstrudel.corporationfaction</li>
            <li>nimrag.humanhive3</li>
            <li>alexzergling.zerg</li>
            <li>uuugggg.thickarmor</li>
            <li>owlchemist.toggleablereadouts</li>
            <li>mlie.toolmetricsredux</li>
            <li>twd.thevirus</li>
            <li>souperzombie.toxiplas</li>
            <li>joseasoler.tradergen</li>
            <li>flixbox.traderssellbiotechitems</li>
            <li>tradingcontrol.tad.rimworld.core</li>
            <li>joseasoler.tradingoptions</li>
            <li>punkyroo.trainallanimals</li>
            <li>danielcoffey.traitscorpsehandling</li>
            <li>side1iner.traitsplus</li>
            <li>romyashi.treasures</li>
            <li>argon.corelib</li>
            <li>argon.tribalmedicineremake</li>
            <li>error277.tunneler.expanded</li>
            <li>caaz.typhon</li>
            <li>mortstrudel.mortideologyufo</li>
            <li>relaxedotter.undergroundfood</li>
            <li>battiebear.undergrounders.deepfabrics</li>
            <li>schmurda.uninstalldesignator</li>
            <li>ushanka.luciferiumexpansion</li>
            <li>nephlite.orbitaltradecolumn</li>
            <li>seos.vfe.mechanoids.drones</li>
            <li>epicfloor.workercasketrecompiled</li>
            <li>hg.addons.vfemnhn</li>
            <li>regrowth.botr.extinctanimalspack</li>
            <li>vanillaexpanded.vanillaanimalsexpanded</li>
            <li>vanillaexpanded.vaeendandext</li>
            <li>vfme.caravanpacks</li>
            <li>vanillaexpanded.vcookesushi</li>
            <li>vfme.simpletofu</li>
            <li>dismarzero.vgp.vgpgardencanning</li>
            <li>dismarzero.vgp.vgpgardendyes</li>
            <li>dismarzero.vgp.vgpgardendyesexpanded</li>
            <li>dismarzero.vgp.vgpgardenfabricssimplified</li>
            <li>dismarzero.vgp.vgpgardenmedicine</li>
            <li>dismarzero.vgp.vgpgardenresources</li>
            <li>dismarzero.vgp.vgpgardentools</li>
            <li>dismarzero.vgp.vgpmoreveggies</li>
            <li>dismarzero.vgp.vgpsoylentproduction</li>
            <li>dismarzero.vgp.vgpthreesistersplants</li>
            <li>dismarzero.vgp.xtratreesandflowers</li>
            <li>uveren.hemogenextractor</li>
            <li>kahirdragoon.vnpebioreactor</li>
            <li>mlie.npdtiers</li>
            <li>vnpeaddon</li>
            <li>slug.vpecurses1</li>
            <li>redmattis.undead</li>
            <li>vanillaexpanded.vaeroy</li>
            <li>vanillaexpanded.vaewaste</li>
            <li>vanillaexpanded.vaeaccessories</li>
            <li>vanillaexpanded.vanillabackstoriesexpanded</li>
            <li>vanillaexpanded.vbrewecandt</li>
            <li>mlie.vanillachristmasexpanded</li>
            <li>oskarpotocki.vfe.empire</li>
            <li>oskarpotocki.vfe.deserters</li>
            <li>vanillaexpanded.vfeart</li>
            <li>vanillaexpanded.vfefarming</li>
            <li>vanillaexpanded.vfepropsanddecor</li>
            <li>vanillaexpanded.vfespacer</li>
            <li>vanillaexpanded.vgeneticsemorelabstuff</li>
            <li>vanillaexpanded.viehar</li>
            <li>vanillaexpanded.ideo.iconsandsymbols</li>
            <li>vanillaexpanded.ideo.relicsandartifacts</li>
            <li>drilledhead.milkexpanded</li>
            <li>friendcomputer.modularweapons.vanillamodularweapons</li>
            <li>mrhydralisk.vnpedeepvat</li>
            <li>zed.0xff.vnpe.minigrinder</li>
            <li>mrhydralisk.voeadditionaloutposts</li>
            <li>mrhydralisk.voepowergrid</li>
            <li>vanillaexpanded.vplantsemushrooms</li>
            <li>vanillaexpanded.vplantsesucculents</li>
            <li>vanillaexpanded.vpe.hemosage</li>
            <li>vanillaracesexpanded.customicons</li>
            <li>vanillaracesexpanded.genie</li>
            <li>vanillaracesexpanded.hussar</li>
            <li>vanillaracesexpanded.phytokin</li>
            <li>vanillaracesexpanded.saurid</li>
            <li>vanillaracesexpanded.waster</li>
            <li>halituisamaricanous.vswbeam</li>
            <li>halituisamaricanous.vswbounce</li>
            <li>halituisamaricanous.vswebolt</li>
            <li>vse.empressevil</li>
            <li>vse.freyafierce</li>
            <li>vse.igorinvader</li>
            <li>vse.perrypersistent</li>
            <li>vanillaexpanded.vanillatradingexpanded</li>
            <li>vanillaexpanded.vweg</li>
            <li>vanillaexpanded.vwems</li>
            <li>vanillaexpanded.vwenl</li>
            <li>vanillaexpanded.vwetb</li>
            <li>mlie.vanillafriendlytraitexpansion</li>
            <li>mlie.variousspaceshipchunk</li>
            <li>alexprotopopov.vaultsofvagar</li>
            <li>alexprotopopov.vaultsofvagarempl</li>
            <li>wvc.sergkart.biotech.moremechanoidsworkmodes</li>
            <li>wvc.sergkart.core</li>
            <li>wvc.sergkart.races.biotech</li>
            <li>mlie.wallmountedbattery</li>
            <li>crustypeanut.wce2.core</li>
            <li>aoba.warcasket</li>
            <li>kompadt.warhammer.daemonette</li>
            <li>mlie.warhammerfimir</li>
            <li>mlie.warhammerskaven</li>
            <li>mlie.warhammerzhthyhl</li>
            <li>ravvy.dd.void.addon</li>
            <li>co.uk.epicguru.whatsthatmod</li>
            <li>jelly.wildcultivation</li>
            <li>suvi.wc</li>
            <li>carolusclen.dlc.wmbp</li>
            <li>zylle.morevanillabiomes</li>
            <li>carolusclen.dlc.wmbp.mvb</li>
            <li>araylie.betterworldmappollutedtiles</li>
            <li>kenx00x.xenotypeandideologybuttonstitlescreen</li>
            <li>rooandgloomy.yuranracemod</li>
            <li>nmajask.zealtraits</li>
            <li>phonicmas.pollutioneatergene</li>
            <li>seos.m.r.racef</li>
            <li>cubicpsycho.scorchlanders</li>
            <li>limetreesnake.xenotech</li>
            <li>biotechrace.pillux.alleyballey</li>
            <li>alexispopcorn.mime</li>
            <li>ap.slaveholding</li>
            <li>mgatwood.housedecor</li>
            <li>frozensnowfox.encountermapresources</li>
            <li>frozensnowfox.filthvanisheswithrainandtime</li>
            <li>grizzlemethis.tickspersecond.rw</li>
            <li>hb.xenotype.corracall</li>
            <li>hb.xenotype.subbox</li>
            <li>mlie.kkmetalscarabs</li>
            <li>changeskilllevels.kv.rw</li>
            <li>moretraitslots.kv.rw</li>
            <li>consolidatedtraits.lc.rw</li>
            <li>lazyfridaystudio.xenosexpanded</li>
            <li>lc.cookietweaks</li>
            <li>mlie.rfarchipelagos</li>
            <li>mlie.etchedstonewalls</li>
            <li>cp.rimdeed</li>
            <li>ryflamer.misc.drawabead</li>
            <li>ryflamer.rimcraft.animals</li>
            <li>ryflamer.rimcraft.metals</li>
            <li>sy4.vanilla.weapon.pack</li>
            <li>syrchalis.harvestyieldpatch</li>
            <li>syrchalis.metallicbatteries</li>
            <li>syrchalis.setupcamp</li>
            <li>projectsyulipia.orientaldragonmod</li>
            <li>wemd.materialsforcoolers</li>
            <li>wemd.reinforceddoors</li>
            <li>mlie.xndstuffedflaks</li>
            <li>pphhyy.sanguinaryanimals</li>
            <li>devdesigner.blood</li>
            <li>rim.job.world</li>
            <li>muri.carniculus</li>
            <li>shauaputa.rimnudeworld</li>
            <li>c0ffee.rjw.ideologyaddons</li>
            <li>nabber.rimvore2</li>
            <li>nabber.carnivorousplants</li>
            <li>nabber.cumslimes</li>
            <li>euclidean.fantasyraces</li>
            <li>leboeuf.lewdbiotech</li>
            <li>rain.nsfwbackstories</li>
            <li>hpregmod.nephila</li>
            <li>akiya82.pregnancystagegraphics</li>
            <li>euclidean.crests</li>
            <li>rjw.sexperience.cumgenes</li>
            <li>rjw.sexperience</li>
            <li>rjw.sexperience.ideology</li>
            <li>lustlicentia.rjwlabs</li>
            <li>rjw.milk.humanoid</li>
            <li>vegapnk.rjw.genes</li>
            <li>shaba.rjw.more.genes</li>
            <li>asmr.rjw.racesupport</li>
            <li>aflockofbirds.rjw.pawnmorphersupport</li>
            <li>rimworld.ekss.rjwex</li>
            <li>ed86.rjwia</li>
            <li>mamahorseteeth.rimvore2extravores</li>
            <li>c0ffee.rimworld.animations</li>
            <li>sineswiper.xenobionicpatcher</li>
            <li>krkr.rocketman</li>
            <li>catlover.tentacled</li>
            <li>sutsutman.yuranrjwaddon</li>
        </modIds>
        <modSteamIds>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>1149640</li>
            <li>1392840</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>1860686739</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>1149640</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
            <li>0</li>
        </modSteamIds>
        <modNames>
            <li>Prepatcher</li>
            <li>Harmony</li>
            <li>Faster Game Loading</li>
            <li>Fishery - Modding Library</li>
            <li>Core</li>
            <li>Performance Fish</li>
            <li>Royalty</li>
            <li>Ideology</li>
            <li>Biotech</li>
            <li>Big and Small + Prerequisites Framework</li>
            <li>HugsLib</li>
            <li>JecsTools</li>
            <li>Humanoid Alien Races</li>
            <li>Wall Light</li>
            <li>Save Our Ship 2</li>
            <li>Locks</li>
            <li>1.4 - Imprisonment On The Go! (Make Pawns Prisoners Without Beds)</li>
            <li>4M Mehni's Misc Modifications [1.2+]</li>
            <li>[Ku] A Mod About Meat</li>
            <li>A Mod About Meat Patch</li>
            <li>AI art</li>
            <li>ATH's Styleable Framework</li>
            <li>ATH's style Draconic</li>
            <li>Absolutely More Cannons (Continued)</li>
            <li>Absolutely No Roof</li>
            <li>Adjustable Genes Regrowing Time</li>
            <li>Replimat</li>
            <li>Vanilla Expanded Framework</li>
            <li>Adobe Abode</li>
            <li>Vanilla Factions Expanded - Settlers</li>
            <li>Vanilla Weapons Expanded - Coilguns</li>
            <li>Vanilla Weapons Expanded</li>
            <li>Vanilla Weapons Expanded - Heavy Weapons</li>
            <li>Vanilla Weapons Expanded - Laser</li>
            <li>Vanilla Weapons Expanded - Quickdraw</li>
            <li>Vanilla Weapons Expanded - Frontier</li>
            <li>Vanilla Expanded - Ideology Patches</li>
            <li>Vanilla Expanded - Royalty Patches</li>
            <li>Akeron - Decorations</li>
            <li>Allow Adjacent Settlements</li>
            <li>Allow Tool</li>
            <li>Almost There!</li>
            <li>A Dog Said... Animal Prosthetics</li>
            <li>Vanilla Cooking Expanded</li>
            <li>Pawnmorpher</li>
            <li>Vanilla Psycasts Expanded</li>
            <li>Alpha Animals</li>
            <li>Alpha Biomes</li>
            <li>Vanilla Races Expanded - Android</li>
            <li>Alpha Genes</li>
            <li>Vanilla Factions Expanded - Insectoids</li>
            <li>Alpha Genes - Insectoid Mutations</li>
            <li>Vanilla Factions Expanded - Mechanoids</li>
            <li>Alpha Mechs</li>
            <li>Vanilla Books Expanded</li>
            <li>Vanilla Fishing Expanded</li>
            <li>Vanilla Ideology Expanded - Memes and Structures</li>
            <li>Alpha Memes</li>
            <li>Alpha Mythology</li>
            <li>Amazonian River</li>
            <li>Ambition of the Cosmic</li>
            <li>Vanilla Factions Expanded - Pirates</li>
            <li>Ancient Arsenal: Warcaskets</li>
            <li>Ancient Crystals (Continued)</li>
            <li>Anima Animals - Community Pack (temp)[HH]</li>
            <li>Animal Resource Label</li>
            <li>Anthrosonae</li>
            <li>DE Surgeries</li>
            <li>MoHAR framework</li>
            <li>Anty the war ant race</li>
            <li>Apex: Rimworld Legends (Continued)</li>
            <li>Apini Playable Race, Continued!</li>
            <li>Apitecture Plus!</li>
            <li>Apothecary (Continued)</li>
            <li>Apparel BodyType Resolver</li>
            <li>Apparello 2</li>
            <li>Tabula Rasa</li>
            <li>Arachne Race (Continued)</li>
            <li>Archotech Genetics</li>
            <li>Archotech Weaponry</li>
            <li>Area Unlocker</li>
            <li>Argonians of Blackmarsh (Continued)</li>
            <li>Corsenal of Core</li>
            <li>Arsenal of Reaction</li>
            <li>Arsenal of Revolution</li>
            <li>Audrey's Styles: Industrial</li>
            <li>Dragons Descent</li>
            <li>AuroranKingslayer's RimWorld of the Dragon (Addon for Dragon's Descent)</li>
            <li>Auto Tamer (Continued)</li>
            <li>AutoDrillReUpload</li>
            <li>Bandwidth Enhancer</li>
            <li>Beautiful Outdoors</li>
            <li>Better Explosions</li>
            <li>Better Transhumanists</li>
            <li>Big and Small Genes</li>
            <li>Big and Small - Slimes</li>
            <li>Vanilla Furniture Expanded</li>
            <li>Big and Small Furniture</li>
            <li>BioReactor</li>
            <li>BioReactorPatch</li>
            <li>Biome Expansion: Redwood forest</li>
            <li>Geological Landforms</li>
            <li>Biome Transitions</li>
            <li>BiomesKit</li>
            <li>ReGrowth: Core</li>
            <li>Rim of Madness - Bones</li>
            <li>VGP Vegetable Garden</li>
            <li>VGP Garden Drinks</li>
            <li>Vanilla Factions Expanded - Medieval</li>
            <li>World Map Beautification Project</li>
            <li>Biomes! Core</li>
            <li>Biomes! Caverns</li>
            <li>Vanilla Brewing Expanded</li>
            <li>Biomes! Caveworld Flora Unleashed</li>
            <li>Biomes! Oasis</li>
            <li>Biotech - Avali</li>
            <li>Biotech Capacitor Genes - Balanced</li>
            <li>Biotech Expansion - Core</li>
            <li>Biotech Expansion - Mammalia</li>
            <li>Biotech Expansion - Mythic</li>
            <li>Biotech Gene Variety</li>
            <li>Biotech mechanoid: Arachnid</li>
            <li>Biotech research mechanoid - Analyst</li>
            <li>Biotech xenotype expanded - Rotfish</li>
            <li>Blood Color Genes</li>
            <li>Bloodborne Weapon Remake</li>
            <li>Borderlands: The Rim</li>
            <li>Brain In a Jar</li>
            <li>Brrr and Phew (Continued)</li>
            <li>Buildable psychic condition causers</li>
            <li>Butcher Rotten Corpse</li>
            <li>Vehicle Framework</li>
            <li>CVN Mechanoid Naval Warfare</li>
            <li>Call For Intel [1.2-1.4]</li>
            <li>Call of Cthulhu - Elder Things</li>
            <li>Caravan Gear</li>
            <li>CaveworldFlora (Continued)</li>
            <li>Centralized Climate Control (Continued)</li>
            <li>Ceramics VEF</li>
            <li>Character Editor</li>
            <li>Rimefeller</li>
            <li>Vanilla Furniture Expanded - Power</li>
            <li>Vanilla Chemfuel Expanded</li>
            <li>Chemfuelfeller</li>
            <li>Choose Biome Commonality</li>
            <li>Clean Pathfinding 2</li>
            <li>Colored deep resources</li>
            <li>Combat Modules (Continued)</li>
            <li>Combat Readiness Check (Continued)</li>
            <li>Comigo's Greater Swamps</li>
            <li>Comigo's Grim Traders</li>
            <li>Vanilla Furniture Expanded - Medical Module</li>
            <li>Vanilla Nutrient Paste Expanded</li>
            <li>Vanilla Races Expanded - Sanguophage</li>
            <li>Connected Bed</li>
            <li>Vanilla Skills Expanded</li>
            <li>De-generalize Work</li>
            <li>XML Extensions</li>
            <li>Additional Traits (Heroes + Gods Optional)</li>
            <li>Carry Capacity Fixed (Continued)</li>
            <li>Fallout Traits</li>
            <li>RimTraits - General Traits</li>
            <li>Scenario Pawns and Corpses</li>
            <li>Synergistic Traits</li>
            <li>Corpse Children</li>
            <li>Corpse Children Can Learn</li>
            <li>Corpse Children: Ghoulish Body Enhancement</li>
            <li>Call of Cthulhu - Cosmic Horrors</li>
            <li>VGP Garden Gourmet</li>
            <li>Cosmic Horrors VGP Meal Patch</li>
            <li>Creatures of Azeroth</li>
            <li>Cryoweapons</li>
            <li>Gas Traps And Shells</li>
            <li>Cryo Gas</li>
            <li>[WD] Expanded Floors</li>
            <li>Cupro's Stones</li>
            <li>CustomDeathRandomness</li>
            <li>Cutebold Race</li>
            <li>Cyber Fauna 1.4</li>
            <li>Damage Indicators [1.4]</li>
            <li>Dark Ages : Crypts and Tombs</li>
            <li>De-roof mining</li>
            <li>Dead Can Serve (Continued)</li>
            <li>Dead Goat's Weapon Pack(continued)</li>
            <li>Different Egg Sizes</li>
            <li>Vanilla Factions Expanded - Ancients</li>
            <li>Dismantle Ancient Junk</li>
            <li>Do Your F****** Research</li>
            <li>Dominant Gene</li>
            <li>DontBlockDoor</li>
            <li>Alpha Bees</li>
            <li>Megafauna</li>
            <li>Dinosauria</li>
            <li>Vanilla Genetics Expanded</li>
            <li>Dragon Genetics</li>
            <li>Dragon's Ores</li>
            <li>Dragon's Special Ores</li>
            <li>Dragon's Very Special Ores</li>
            <li>Dress Patients (1.4)</li>
            <li>Drug Policy Fix (Continued)</li>
            <li>Dub's Paint Shop</li>
            <li>Dubs Break Mod</li>
            <li>Dubs Mint Menus</li>
            <li>Dubs Mint Minimap</li>
            <li>Dubs Performance Analyzer</li>
            <li>Dubs Rimatomics</li>
            <li>Ducks</li>
            <li>EPOE 1.4 (Expanded Prosthetics and Organ Engineering)</li>
            <li>ESCP - Trolls</li>
            <li>Electric Fences and Floors (Continued)</li>
            <li>Electric Pod Launchers</li>
            <li>Elephants</li>
            <li>Athena Framework</li>
            <li>Vanilla Persona Weapons Expanded</li>
            <li>Persona Bond Forge</li>
            <li>Eltex Weaponry</li>
            <li>Empiricism and Faith - Mort's Ideologies: Memes and Precepts</li>
            <li>Erin Eccentric</li>
            <li>Vanilla Races Expanded - Highmate</li>
            <li>Erin's Auronya</li>
            <li>Erin's Cottage Collection</li>
            <li>Erin's Final Fantasy Animals</li>
            <li>Erin's Shisune</li>
            <li>Erin's Valheim Creatures</li>
            <li>Eternal Youth Traits</li>
            <li>Euglena Framework</li>
            <li>Euglena Expanded - Euglena Xenotype</li>
            <li>Euglena Expanded - Implantor</li>
            <li>Euglena Expanded - Slime Printer</li>
            <li>Every Material Gene</li>
            <li>EvolvedOrgansRedux</li>
            <li>Extended Bioengineering for VFE Insectoids</li>
            <li>Extra Walls and Floors</li>
            <li>Faster Biosculpter Pod</li>
            <li>Fish Traps</li>
            <li>Floors Are (Almost) Worthless</li>
            <li>Fluffy Breakdowns (1.4 Update)</li>
            <li>Follow the Vein</li>
            <li>Forien's Naturalize Genome</li>
            <li>Forsakens</li>
            <li>Fort's Insectoid armor</li>
            <li>Vanilla Furniture Expanded - Architect</li>
            <li>Vanilla Furniture Expanded - Security</li>
            <li>Fortifications - Industrial</li>
            <li>Fortification Industrial -Nuclear Dawn</li>
            <li>Fortifications - Medieval</li>
            <li>Fortifications - Medieval - Material</li>
            <li>Fortifications - Neolithic</li>
            <li>Gems (Continued)</li>
            <li>Gene Forge - Make Genepacks with slurry</li>
            <li>Gene Trader</li>
            <li>Genes+</li>
            <li>Genes Astartes</li>
            <li>GlitterNet</li>
            <li>Go Explore!</li>
            <li>ReGrowth: Aspen</li>
            <li>ReGrowth: Boiling</li>
            <li>Vanilla Plants Expanded</li>
            <li>Vanilla Plants Expanded - More Plants</li>
            <li>Goji's Fantasy Race: Merren</li>
            <li>Gore</li>
            <li>Grimworld: Autoguns</li>
            <li>Grimworld: Melee</li>
            <li>Grub Farm (Continued)</li>
            <li>Guards For Me</li>
            <li>Gulden Mod</li>
            <li>Gun Spears</li>
            <li>HAR Restriction Unlocker</li>
            <li>Half-Life Creatures</li>
            <li>HalloweenParade(continued)</li>
            <li>Harvest Organs Post Mortem</li>
            <li>Harvest When Butchering</li>
            <li>Healer Mech Serum Choice</li>
            <li>Heat Map (Continued)</li>
            <li>Vanilla Factions Expanded - Vikings</li>
            <li>Vanilla Helixien Gas Expanded</li>
            <li>Helixien Gas Brazier</li>
            <li>Vanilla Furniture Expanded - Production</li>
            <li>Helixien Gas Production</li>
            <li>Hellsing ARMS Ultimate</li>
            <li>Helltaker Cosmetic Genes</li>
            <li>Hemofungus</li>
            <li>Vanilla Cooking Expanded - Stews</li>
            <li>[SYR] Processor Framework</li>
            <li>Hemogen Cuisine</li>
            <li>Hemogen Grinder</li>
            <li>High Tech Laboratory Facilities (Continued)</li>
            <li>Hotseat - Dynamic Storyteller Switcher</li>
            <li>Hunter Mechanoid</li>
            <li>Hunterphage Xenotype</li>
            <li>Hybrid Animals</li>
            <li>IVF Equality</li>
            <li>Impact Weaponry</li>
            <li>Vanilla Animals Expanded — Caves</li>
            <li>Improved Insectoids</li>
            <li>Incident Disabler</li>
            <li>Industrial Age - Objects and Furniture (Continued)</li>
            <li>Industrial Armory</li>
            <li>Industrial Melee Weaponry</li>
            <li>Quarry</li>
            <li>Industrial Revolution (Continued)</li>
            <li>Cupro's Alloys (Continued)</li>
            <li>Industrialisation</li>
            <li>Infinite Reinforce</li>
            <li>Infused</li>
            <li>Inject Genes</li>
            <li>Insects!</li>
            <li>Invader genes</li>
            <li>Ivory and Jade Carving (Continued)</li>
            <li>Jelly Wall</li>
            <li>Kenshi Fauna</li>
            <li>Knot Root (Continued)</li>
            <li>Kura's Extra Gems</li>
            <li>Big and Small Races</li>
            <li>Lamias, Sirens, Snakemen, and other Serpents-like beings</li>
            <li>Lava Lamps</li>
            <li>Live Munitions</li>
            <li>Livestock Traders</li>
            <li>Ability to Read</li>
            <li>Lizard's Patches</li>
            <li>Loading In Progress</li>
            <li>Loot Boxes [CONTINUED]</li>
            <li>Enable Oversized Weapons</li>
            <li>Machines of War</li>
            <li>MakaiTech - Psycast</li>
            <li>MakaiTech</li>
            <li>Vanilla Vehicles Expanded</li>
            <li>MakaiTech - Vehicles</li>
            <li>Mantodeans Continued</li>
            <li>Map Edit Tools</li>
            <li>Meals On Wheels</li>
            <li>Mech Theraphosidae</li>
            <li>Mechanite Plague</li>
            <li>More Persona Traits</li>
            <li>Mechanite Persona Traits</li>
            <li>Mechanoid Master Blaster (Continued)</li>
            <li>Mechanoid Modifications</li>
            <li>Mechanoid Recon Hive</li>
            <li>MedPod</li>
            <li>Medical Supplements (Continued)</li>
            <li>MendAndRecycle</li>
            <li>Mid-saver Saver</li>
            <li>Mighty Persona Bond Forge Patch Mod</li>
            <li>Mincho, The Mint Choco Slime ~ HAR ver.</li>
            <li>Mind control</li>
            <li>Miscellaneous 'CORE'</li>
            <li>Misc. TurretBase, Objects</li>
            <li>Mixed Stone Blocks</li>
            <li>ModularWeapons</li>
            <li>ModularWeapons - AWSAR Addon</li>
            <li>ModularWeapons - Expanded</li>
            <li>ModularWeapons - GPMG Addon</li>
            <li>ModularWeapons - Militia Rifle Addon</li>
            <li>ModularWeapons - PDW Addon</li>
            <li>ModularWeapons - Police Rifle Addon</li>
            <li>ModularWeapons Addon - Advanced Charging Rifle</li>
            <li>Monster Hunter RimWorld</li>
            <li>Monster Hunter Rimworld Expansion</li>
            <li>Mooloh's Dnd Menagerie</li>
            <li>Moonjelly Xenotype</li>
            <li>Moonlight</li>
            <li>More Gene Complexity</li>
            <li>More Hemogen Vats</li>
            <li>More Linkables</li>
            <li>More Max Memes</li>
            <li>[LTS]Systems</li>
            <li>[LTS]Furnishing</li>
            <li>More Mechanoids</li>
            <li>More Precepts</li>
            <li>More Realistic Traits</li>
            <li>More Religious Origins</li>
            <li>More Rimefeller Compat</li>
            <li>More Vanilla Mechanoid</li>
            <li>More than Ashes V2</li>
            <li>MoreGloomyWalls 1.4</li>
            <li>[KV] Path Avoid</li>
            <li>Vanilla Outposts Expanded</li>
            <li>MorrowRim</li>
            <li>MorrowRim - Ashlands Swamp</li>
            <li>MorrowRim - Grazelands</li>
            <li>MorrowRim - Volcanic Ashlands</li>
            <li>MorrowRim - Ashlander Xenotype</li>
            <li>MorrowRim - Biomes Patch</li>
            <li>MorrowRim - Bloatspore</li>
            <li>MorrowRim - Bloodmoon</li>
            <li>MorrowRim - Dunmer Styles</li>
            <li>MorrowRim - Mashed's Lamps Pack 1</li>
            <li>MorrowRim - Glass and Ebony</li>
            <li>MorrowRim - Moon Sugar and Skooma</li>
            <li>ESCP - Spriggan</li>
            <li>Vanilla Fishing Expanded - Fishing Treasures AddOn</li>
            <li>Outland - Core</li>
            <li>MorrowRim - Simple Bonemold</li>
            <li>MorrowRim - Bonewalkers</li>
            <li>MorrowRim - The Sixth House</li>
            <li>MorrowRim - Telvanni Technology</li>
            <li>MorrowRim - Telvanni Spiders</li>
            <li>MorrowRim - Vanilla Psycasts Expanded patch</li>
            <li>Neolithic Scavenging (Continued)</li>
            <li>Nephilim Xenotype</li>
            <li>Vanilla Psycasts Expanded - Puppeteer</li>
            <li>No Backstory-Locked Psycast Paths</li>
            <li>No More Lethal Damage Threshold</li>
            <li>No Natural Psyfocus Decrease</li>
            <li>No Summon Mech Threat Gizmo</li>
            <li>Engine Industries</li>
            <li>Object 279 for RimWorld</li>
            <li>Obsidia Expansion</li>
            <li>Obsidia Expansion - Mothoids Xenotype</li>
            <li>Obsidia Expansion - Tortle Xenotype</li>
            <li>Obsidia Expansion - Arachnas Xenotype</li>
            <li>Oops all BUGPARTS</li>
            <li>Orassans</li>
            <li>Outland - Eastborn Empire</li>
            <li>Outland - Furniture &amp; Decor</li>
            <li>Outland - More Floors</li>
            <li>Outland - Motz Coalition</li>
            <li>Outland - Redburn Pact</li>
            <li>Outland - Toxic Forest</li>
            <li>Outland - Genetics</li>
            <li>Outland - Vathun Nobles</li>
            <li>Pack Mules Extended</li>
            <li>Pack Mules Extended - Dinosauria</li>
            <li>Parrots</li>
            <li>Pawn Name Variety</li>
            <li>Pawnmorpher: Insectoids</li>
            <li>Performance Optimizer</li>
            <li>Persistent Precepts</li>
            <li>Perspective: Buildings</li>
            <li>PlanetsidePew (Continued)</li>
            <li>Plushies</li>
            <li>Power Logic</li>
            <li>Power Tab 2</li>
            <li>Project RimFactory Revived</li>
            <li>Power++</li>
            <li>Precept 'Fungus' Expanded</li>
            <li>Precept Trait Enforcer Improved</li>
            <li>Custom Ritual Framework</li>
            <li>Precepts and Memes (Continued)</li>
            <li>Precepts and Memes - Rituals module (Continued)</li>
            <li>Preset Filtered Zones (Continued)</li>
            <li>Prioritize</li>
            <li>Prisoners Should Fear Turrets</li>
            <li>Project RimFactory - Drones</li>
            <li>Project RimFactory - Insanity</li>
            <li>PsyBlasters</li>
            <li>Vanilla Ideology Expanded - Dryads</li>
            <li>Psylinkers</li>
            <li>Quality Cooldown</li>
            <li>Questing Meme</li>
            <li>Questionable Ethics Enhanced (Continued)</li>
            <li>RPG Style Inventory Revamped</li>
            <li>RT's Weapon Pack Reloaded</li>
            <li>Race to the Rim</li>
            <li>Raise specialist limit</li>
            <li>Rapid Aging Genes</li>
            <li>ReGrowth: Arid</li>
            <li>ReGrowth: Boreal</li>
            <li>ReGrowth: Swamp</li>
            <li>ReGrowth: Temperate</li>
            <li>ReGrowth: Tundra</li>
            <li>Real Faction Guest (Continued)</li>
            <li>Real Ruins</li>
            <li>Realistic Rooms Rewritten</li>
            <li>Recycle This</li>
            <li>Reinforced Mechanoid 2</li>
            <li>Relevant Stats In Description</li>
            <li>Remove Gradual Relations Decay - Patchy</li>
            <li>ResearchPal - 1.4 Repackage</li>
            <li>Resource Drop Pod Redirection</li>
            <li>Reuse Pods v1.4</li>
            <li>Reverse Engineered Region Adjusters</li>
            <li>Better Gene Graphics Framework</li>
            <li>Revia Race - biotech</li>
            <li>Rim of Madness - Arachnophobia (Continued)</li>
            <li>Rim-Effect: Core</li>
            <li>Rim-Effect: Asari and Reapers</li>
            <li>Rim-Shek - Biotech</li>
            <li>RimCities</li>
            <li>RimCuisine 2 Core (Continued)</li>
            <li>RimCuisine 2 Meals and Munchies Expansion (Continued)</li>
            <li>RimCuisine 2: All Plants All Biomes Patch (Continued)</li>
            <li>RimFortress: Dwarven Plants</li>
            <li>RimOffice</li>
            <li>RimPlas (Continued)</li>
            <li>RimSide Recycling</li>
            <li>RimThedas: Metals</li>
            <li>RimWorld - Black Plague (Continued)</li>
            <li>RimWorld - The Dark Descent</li>
            <li>RimWorld - Witcher Monster Hunt</li>
            <li>RimWriter - Books, Scrolls, Tablets, and Libraries (Continued)</li>
            <li>Rimhammer - The End Times</li>
            <li>Rimhammer - The End Times - Magic</li>
            <li>Rimlaser</li>
            <li>Rimpedia</li>
            <li>Rimsenal - Augmented Vanilla Pack</li>
            <li>Rimsenal - Federation Faction Pack</li>
            <li>Rimsenal - Feral Faction Pack</li>
            <li>Rimsenal - Core</li>
            <li>Rimsenal - Hair pack</li>
            <li>Rimsenal - Security Pack</li>
            <li>Rimsenal - Storytellers Pack</li>
            <li>Rimsenal Style Pack - Sophian</li>
            <li>Rimsenal Style Pack - Techist</li>
            <li>Rimsenal Style Pack - Urbworld</li>
            <li>Rimsenal Xenotype Pack - Askbarn</li>
            <li>Rimworld: Spartan Foundry (Continued)</li>
            <li>Roads of the Rim (Continued)</li>
            <li>Roo's Minotaur Xenotype</li>
            <li>[Alien/Race] Seren, from Stardust</li>
            <li>Roo's Minotaur Xenotype Expanded</li>
            <li>Toggleable Overlays</li>
            <li>Giddy-Up 2</li>
            <li>Roo's Faun Xenotype</li>
            <li>Vanilla Apparel Expanded</li>
            <li>Roo's Satyr Xenotype</li>
            <li>Roo's Satyr and Faun Xenotypes Expanded</li>
            <li>Roots of Rimworld</li>
            <li>Royal Warcaskets</li>
            <li>Run and Hide (Continued)</li>
            <li>Satellite</li>
            <li>Save Cleaner</li>
            <li>Scattered Stones</li>
            <li>Scrambler Mechanoid</li>
            <li>Search and Destroy</li>
            <li>Secure Contain Rimworld</li>
            <li>Show Known Techprints</li>
            <li>Simple Material Weaves (Continued)</li>
            <li>GloomyFurniture</li>
            <li>SimpleStairs</li>
            <li>Simply More Bridges (Continued)</li>
            <li>Simply More Melee (Continued)</li>
            <li>Skilled Refueling</li>
            <li>Skilled Slaughtering</li>
            <li>Skrix - An Insect-like Race</li>
            <li>Slime Rancher</li>
            <li>Slimes</li>
            <li>Smoothed stone is worthless</li>
            <li>Snow Crawler</li>
            <li>Sparkling Worlds - Full Mod</li>
            <li>Stack Stuff First</li>
            <li>Stack XXL</li>
            <li>Dual Wield</li>
            <li>Star Wars KotOR Weapons and Armor</li>
            <li>Integrated Genes</li>
            <li>Rimwars - Sand People Xenotype</li>
            <li>Rimwars:Pureblood Xenotype</li>
            <li>Star Wars Xenotypes</li>
            <li>StarWars WallsN'Floors</li>
            <li>Steves Animals</li>
            <li>Stop Quarrying When Full (Continued)</li>
            <li>Stuff Mass Matters</li>
            <li>Vanilla Armour Expanded</li>
            <li>Stuffable Armor and Clothes</li>
            <li>Stuffed Drinks</li>
            <li>Fences And Floors (Continued)</li>
            <li>[T] MoreFloors 1.4</li>
            <li>Stuffed Floors</li>
            <li>Stuffed Power</li>
            <li>Stuffed Security</li>
            <li>Stuffed Workbenches</li>
            <li>Subsurface Conduit</li>
            <li>Biotech Gene: Laser-Eyes</li>
            <li>Superhero Genes - Base</li>
            <li>Surgical Body Shaping (SBS)</li>
            <li>Synthetik Weapon Pack</li>
            <li>Tate's Tiny Furniture Mod</li>
            <li>Tau Armory</li>
            <li>Terraform Rimworld</li>
            <li>Terrasecurity</li>
            <li>Textile Stats</li>
            <li>The Corporation - Mort's Factions</li>
            <li>The Human Hive 3</li>
            <li>The Zerg!</li>
            <li>Thick Armor</li>
            <li>Toggleable Readouts</li>
            <li>Toolmetrics Redux (Continued)</li>
            <li>Toxic Waste Disposal</li>
            <li>Toxiplas - Wastepack Metal</li>
            <li>TraderGen</li>
            <li>Traders Sell Biotech Items</li>
            <li>Trading Control</li>
            <li>Trading Options</li>
            <li>Train All Animals</li>
            <li>Traits - Corpse Handling</li>
            <li>Traits Plus</li>
            <li>Treasures</li>
            <li>Argonic Core</li>
            <li>Tribal Medicine 2.0</li>
            <li>Tunneler Expanded</li>
            <li>Typhon</li>
            <li>Ufology Structure + Style - Mort's Ideologies</li>
            <li>Underground Food</li>
            <li>Undergrounders: Deep Fabrics</li>
            <li>Uninstall Designator</li>
            <li>Ushankas Luciferium Expansion</li>
            <li>Utility Columns</li>
            <li>VFE - Mechanoids : Drones</li>
            <li>VFE Pirates unofficial add-on: Workercasket (Recompiled)</li>
            <li>VFEM - No Hopper Necessary</li>
            <li>ReGrowth: Extinct Animals</li>
            <li>Vanilla Animals Expanded</li>
            <li>Vanilla Animals Expanded — Endangered</li>
            <li>VFME - Caravan Packs!</li>
            <li>Vanilla Cooking Expanded - Sushi</li>
            <li>VFME - Simple Tofu!</li>
            <li>VGP Garden Canning</li>
            <li>VGP Garden Dyes</li>
            <li>VGP Garden Dyes Expanded</li>
            <li>VGP Garden Fabrics Simplified</li>
            <li>VGP Garden Medicine</li>
            <li>VGP Garden Resources</li>
            <li>VGP Garden Tools</li>
            <li>VGP More Veggies</li>
            <li>VGP Soylent Production</li>
            <li>VGP Three Sisters Plants</li>
            <li>VGP Xtra Trees and Flowers</li>
            <li>Hemogen Extractor</li>
            <li>VNPE - BioReactor and Hemogen Extractor</li>
            <li>NPDTiers - The Nutrient Paste Expansion Mod (Continued)</li>
            <li>VNPE NPDTiers Addon</li>
            <li>VPE Curses</li>
            <li>Vampires, Demons, and the Undead</li>
            <li>Vanilla Animals Expanded — Royal Animals</li>
            <li>Vanilla Animals Expanded — Waste Animals</li>
            <li>Vanilla Apparel Expanded — Accessories</li>
            <li>Vanilla Backstories Expanded</li>
            <li>Vanilla Brewing Expanded - Coffees and Teas</li>
            <li>Vanilla Christmas Expanded (Continued)</li>
            <li>Vanilla Factions Expanded - Empire</li>
            <li>Vanilla Factions Expanded - Deserters</li>
            <li>Vanilla Furniture Expanded - Art</li>
            <li>Vanilla Furniture Expanded - Farming</li>
            <li>Vanilla Furniture Expanded - Props and Decor</li>
            <li>Vanilla Furniture Expanded - Spacer Module</li>
            <li>Vanilla Genetics Expanded - More Lab Stuff</li>
            <li>Vanilla Ideology Expanded - Hats and Rags</li>
            <li>Vanilla Ideology Expanded - Icons and Symbols</li>
            <li>Vanilla Ideology Expanded - Relics and Artifacts</li>
            <li>Vanilla Milk Expanded</li>
            <li>Vanilla Modular Weapons</li>
            <li>Vanilla Nutrient Paste Expanded: Deep Vat</li>
            <li>Vanilla Nutrient Paste Expanded: MiniGrinder</li>
            <li>Vanilla Outposts Expanded: Additional Outposts</li>
            <li>Vanilla Outposts Expanded: Power Grid</li>
            <li>Vanilla Plants Expanded - Mushrooms</li>
            <li>Vanilla Plants Expanded - Succulents</li>
            <li>Vanilla Psycasts Expanded - Hemosage</li>
            <li>Vanilla Races Expanded - Custom Icons</li>
            <li>Vanilla Races Expanded - Genie</li>
            <li>Vanilla Races Expanded - Hussar</li>
            <li>Vanilla Races Expanded - Phytokin</li>
            <li>Vanilla Races Expanded - Saurid</li>
            <li>Vanilla Races Expanded - Waster</li>
            <li>Vanilla Spacer weapons - Beam Gun</li>
            <li>Vanilla Spacer weapons - Bounce Gun</li>
            <li>Vanilla Spacer weapons - Explosive Bolt</li>
            <li>Vanilla Storytellers Expanded - Empress Evil</li>
            <li>Vanilla Storytellers Expanded - Freya Fierce</li>
            <li>Vanilla Storytellers Expanded - Igor Invader</li>
            <li>Vanilla Storytellers Expanded - Perry Persistent</li>
            <li>Vanilla Trading Expanded</li>
            <li>Vanilla Weapons Expanded - Grenades</li>
            <li>Vanilla Weapons Expanded - Makeshift</li>
            <li>Vanilla Weapons Expanded - Non-Lethal</li>
            <li>Vanilla Weapons Expanded - Tribal</li>
            <li>Vanilla-Friendly Trait Expansion (Continued)</li>
            <li>Various Space Ship Chunk (Continued)</li>
            <li>Vaults of Vagar</li>
            <li>Vaults of Vagar: Emplacements</li>
            <li>WVC - Work Modes</li>
            <li>WVC - Ultra Expansion</li>
            <li>WVC - Xenotypes and Genes</li>
            <li>Wallmounted Battery</li>
            <li>War Crimes Expanded 2 Core</li>
            <li>WarCasket Expanded</li>
            <li>Warhammer: Daemonettes</li>
            <li>Warhammer: Fimir (Continued)</li>
            <li>Warhammer: Skaven (Continued)</li>
            <li>Warhammer: Zhthy'hl (Continued)</li>
            <li>[RWY]Dragon's Descent: Void Dwellers</li>
            <li>What's That Mod</li>
            <li>Wild Cultivation - Continued</li>
            <li>Wisteria Corporation</li>
            <li>World Map Beautification Project - for Alpha Biomes</li>
            <li>More Vanilla Biomes</li>
            <li>World Map Beautification Project - for More Vanilla Biomes</li>
            <li>World Map Polluted Tiles - Improved Visibility</li>
            <li>Xenotype And Ideology Buttons TitleScreen</li>
            <li>Yuran race</li>
            <li>Zeal Traits</li>
            <li>Pollution Eater Gene</li>
            <li>Race - Faifox</li>
            <li>Scorchlanders</li>
            <li>[LTS]Xenotech</li>
            <li>[AB] Xenotype: Pillux</li>
            <li>[AP] Mime Meme</li>
            <li>[AP] Slaveholding</li>
            <li>[ATW] House Decor</li>
            <li>[FSF] Encounter Map Resources</li>
            <li>[FSF] Filth Vanishes With Rain And Time</li>
            <li>[GMT] TicksPerSecond 1.4</li>
            <li>[HB] Corracall Xenotype</li>
            <li>[HB] Subbox Xenotype</li>
            <li>[KK] Metal Scarabs (Continued)</li>
            <li>[KV] Change Skill Levels &amp; Don't Lose Levels</li>
            <li>[KV] More Trait Slots [1.4]</li>
            <li>[LC] Consolidated Traits</li>
            <li>[LFS] Xenos Expanded</li>
            <li>[LYN] Cookie Traits</li>
            <li>[RF] Archipelagos (Continued)</li>
            <li>[RF] Etched Stone Walls (Continued)</li>
            <li>[RH2] Rimdeed® - Pawn Recruitment</li>
            <li>[Ry]Draw a bead</li>
            <li>[Ry]Rimcraft Animals</li>
            <li>[Ry]Rimcraft Metals</li>
            <li>[SY4] Vanilla-Friendly Weapon Pack</li>
            <li>[SYR] Harvest Yield</li>
            <li>[SYR] Metallic Batteries</li>
            <li>[SYR] Set Up Camp</li>
            <li>[Syulipia]OrientalDragonMOD</li>
            <li>[WD] Materials For Coolers</li>
            <li>[WD] Reinforced Doors</li>
            <li>[XND] Stuffed Flaks (Continued)</li>
            <li>pphhyy Sanguinary Animals</li>
            <li>ↁ House Sanguin</li>
            <li>RimJobWorld</li>
            <li>Carniculus</li>
            <li>RimNudeWorld</li>
            <li>C0ffeeRIA</li>
            <li>RimVore-2</li>
            <li>Carnivorous Plants</li>
            <li>CumSlimes</li>
            <li>Fantasy Races</li>
            <li>Lewd Biotech</li>
            <li>NSFW Backstories</li>
            <li>Nephila HPreg Mod (WIP)</li>
            <li>Pregnancy Stage Graphics</li>
            <li>RJW - Crests</li>
            <li>RJW Sexperience Cum addiction Genes</li>
            <li>RJW Sexperience</li>
            <li>RJW Sexperience Ideology</li>
            <li>RimJobWorld - Licentia Labs</li>
            <li>RimJobWorld - Milkable Colonists</li>
            <li>RJW Genes</li>
            <li>RJW More Genes</li>
            <li>RJW Race Support</li>
            <li>RJW Pawnmorpher Support</li>
            <li>RimJobWorld - Extension</li>
            <li>RimJobWorld - Interaction Addon</li>
            <li>RimVore-2 (Overstuffed)</li>
            <li>Rimworld-Animations</li>
            <li>Xenobionic Patcher</li>
            <li>RocketMan - Performance Mod</li>
            <li>Tentacle Love</li>
            <li>Yuran RJW addon</li>
        </modNames>
    </meta>
    <xenotype>
        <name>Halita</name>
        <genes>
            <li>Gigantism</li>
            <li>JotunFrame</li>
            <li>AgelessGeneric</li>
            <li>DeathlessGeneric</li>
            <li>RV2_GoalEnabler_ConvertMilk</li>
            <li>RV2_TypeEnabler_Nipple</li>
            <li>RV2_GoalEnabler_ConvertEggs</li>
            <li>RV2_TypeEnabler_Vaginal</li>
            <li>BugParts_honeypot</li>
            <li>BTEMa_ExcessMilkProduction</li>
            <li>PE_PollutionEater</li>
            <li>AG_InsectRally</li>
            <li>AG_InnateMechlink</li>
            <li>AG_BandwidthIncrease</li>
            <li>AG_BandwidthLoop</li>
            <li>AG_IncreasedCommandRange</li>
            <li>AG_AcidicBlood</li>
            <li>AG_InsectJellyProduction</li>
            <li>WVC_ResurgentCells</li>
            <li>WVC_ResurgentCells_Stomach</li>
            <li>WVC_ResurgentCells_Sleep</li>
            <li>WVC_NaturalUndead</li>
            <li>AlphaGenes_AnimalSumMajor_VFEI_Insectoid_Queen</li>
            <li>Outland_Regeneration</li>
            <li>WVC_MinMaxTemp_Natural</li>
            <li>ToxResist_Total</li>
            <li>BS_AcidResistanceTotal</li>
            <li>Fertile</li>
            <li>AG_FastGestation</li>
            <li>Balanced_Capacity_Boost_Tier_6</li>
            <li>Balanced_Capacity_Boost_Tier_3</li>
            <li>Balanced_Capacity_Boost_Tier_5</li>
            <li>AG_UpperTentacles</li>
            <li>AG_SlugFace</li>
            <li>tests_emgPenumbrite</li>
            <li>OE_Eyes_ArachnaGreen</li>
            <li>Outland_Hands_Tentacle</li>
            <li>AG_HivelingVoice</li>
            <li>AG_BodyTentacles</li>
            <li>rjw_genes_fervent_ovipositor</li>
            <li>HBEightLegged</li>
            <li>rjw_genes_female_only</li>
            <li>rjw_genes_ovipositor_genitalia</li>
            <li>rjw_genes_extra_breasts</li>
            <li>rjw_genes_no_anus</li>
            <li>rjw_genes_big_breasts</li>
            <li>rjw_genes_mechbreeder</li>
            <li>rjw_genes_aphrodisiac_pheromones</li>
            <li>rjw_genes_queen</li>
            <li>rjw_genes_cocoonweaver</li>
            <li>rjw_genes_insectincubator</li>
            <li>rjw_genes_insectbreeder</li>
            <li>Flesh_Insect</li>
        </genes>
        <iconDef>WVC_XenoMecha4c</iconDef>
    </xenotype>
</savedXenotype>