diff --git a/Server/config/everycomp-common.toml b/Server/config/everycomp-common.toml new file mode 100644 index 0000000..86accaa --- /dev/null +++ b/Server/config/everycomp-common.toml @@ -0,0 +1,36 @@ +[general] + # + #How dynamic assets are generated. + #- NEVER: No asset will be generated. Use this if you have an external pack that adds assets for the block, otherwise you'll get missing assets everywhere + #- RUN_ONCE: Assets will be generated once every session. Subsequent reloads of resource/data pack will not regenerate them even if assets might have changed as a consequence + #- CACHED: Generate the assets on first boot and saves them to a cache folder in .minecraft/dynamic-data-pack-cache. If mods or packs change it will regenerate the cache. If not, subsequent reload won't generate anything and just read the cached ones as a normal pack. + #- CACHED_ZIPPED: Generate the assets on first boot and saves them to a cache zip file in .minecraft/dynamic-data-pack-cache. If mods or packs change it will regenerate the cache. If not, subsequent reload won't generate anything and just read the cached ones as a normal pack. + #- ALWAYS: Will always generate the assets & will be stored in memory. No cache is used. Unintuitively, this is often the fastest method as any disk access will be slow. + #Try and see what works best for you. + #Allowed Values: NEVER, RUN_ONCE, CACHED, CACHED_ZIPPED, ALWAYS + server_assets_generation_mode = "ALWAYS" + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs. Game Restart is required for this to take effect. + creative_tab = true + #Allow the item_search or searchBar to be visible. Game Restart is required for this to take effect. + tab_item_search = true + #If set to true, then all of the generated items will not be put into the mod's tab. Game Restart is required for this to take effect. + no_mod_creative_tab = false + #Generate blocktype tags for every block type. This will be applied to all the mods that use the system, not just Every Compat. Can make pack a bit faster if its off. Turn off if you dont need it. Game Restart is required for this to take effect. + generate_blocktype_tags = true + #Sends a packet to verify all dependencies mod versions are the same on connect. DIsable if it causes issues + mod_version_check_packet = true + #Don't touch unless you are told to + debug_packet = false + + [general.tooltips] + #Enabled tooltips showing which mod an EC item is from + mod_origin_enabled = true + #Enabled tooltips showing which block type an EC item is made from + block_type_enabled = true + #Only show on advanced settings + show_on_advanced_tooltips = false + #Enable Every-Compat to base textures off external Resource Packs rather than mod's default textures. + #ATTENTION: There are some Resource Packs that won't work well with Every-Compat, which is why this + #option is off by default. Disable if there are missing textures for blocks. + # + use_external_resource_pack = false diff --git a/Server/config/everycomp-entries.toml b/Server/config/everycomp-entries.toml new file mode 100644 index 0000000..8576d26 --- /dev/null +++ b/Server/config/everycomp-entries.toml @@ -0,0 +1,137 @@ +#Disables certain types. Note that all these configs, like in any other mod, only hide stuff from tabs and disable their recipes +[types] + + [types.crystal_type.biomesoplenty] + rose_quartz = true + + [types.metal_type.cataclysm] + witherite = true + enderite = true + ignitium = true + ancient_metal = true + cursium = true + black_steel = true + + [types.metal_type.create] + zinc = true + brass = true + + [types.metal_type.aquaculture] + neptunium = true + + [types.stone_type.create] + limestone = true + asurine = true + crimsite = true + ochrum = true + veridium = true + scoria = true + scorchia = true + + [types.stone_type.biomesoplenty] + black_sandstone = true + orange_sandstone = true + white_sandstone = true + brimstone = true + + [types.wood_type.cataclysm] + chorus = true + + [types.wood_type.biomesoplenty] + fir = true + pine = true + maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.leaves_type.biomesoplenty] + null = true + origin = true + flowering_oak = true + cypress = true + snowblossom = true + rainbow_birch = true + fir = true + pine = true + red_maple = true + orange_maple = true + yellow_maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + +#Disables specific entries +[entries] + + [entries.metal_type.minecraft] + nugget = true + + [entries.metal_type.create] + table_cloth = true + tile_slab = true + door = true + ornate_window = true + ladder = true + sheet = true + ornate_window_pane = true + scaffolding = true + shingle_slab = true + shingle_stairs = true + tiles = true + shingles = true + tile_stairs = true + casing = true + + [entries.stone_type.create] + small_brick_wall = true + cut_wall = true + small_bricks = true + cut_brick_slab = true + polished_cut_slab = true + small_brick_stairs = true + cut_bricks = true + cut = true + polished_cut = true + small_brick_slab = true + layered = true + polished_cut_stairs = true + cut_brick_wall = true + pillar = true + cut_stairs = true + cut_brick_stairs = true + polished_cut_wall = true + cut_slab = true + + [entries.stone_type.waystones] + waystone = true + + [entries.wood_type.farmersdelight] + cabinet = true + + [entries.wood_type.storagedrawers] + full_drawers_2 = true + half_drawers_1 = true + full_drawers_4 = true + half_drawers_4 = true + trim = true + half_drawers_2 = true + full_drawers_1 = true + + [entries.wood_type.create] + window_pane = true + window = true diff --git a/Server/config/everycomp-hazardous.toml b/Server/config/everycomp-hazardous.toml new file mode 100644 index 0000000..9190c90 --- /dev/null +++ b/Server/config/everycomp-hazardous.toml @@ -0,0 +1,77 @@ +# ═════════════════════════ Attention ═════════════════════════ +# Don't use this if you don't know what you are doing +# REASON: +# This file is a conditional registration. This is harmless in Singleplayer World, +# but harmful in SERVER because you won't able to join. +# Only use for personal play. +# If you are a modpack maker DO NOT use it! +# +# ══════════════════════════ Detail ═══════════════════════════ +# This file allow you to exclude WoodTypes, LeavesType, EntrySet, or a Module +# 1) You can find their names for WoodTypes, LeavesType, or EntrySet in `everycomp-entries.toml` +# 2) Leave a value empty to disable that rule. +# +# Module - is a Supported Mod, just a modId is sufficient. +# EntrySet - is a FurnitureType or DecorativeType that Wood-Good is supporting via the mod. it is either block or item. +# Wood-Mods - Biomes O' Plenty, The Twilight Forest, so on... +# Supported-Mods - The mods that EveryCompat is currently supporting +# +# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm +# +[woodtype] + #Exclude WoodType from all of Modules + # EXAMPLE: blacklist = [ + # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of WoodType containing "fireproof" from Forestry + # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of WoodType from Wood Mod for any Module + # "biomesoplenty:redwood" COMMENT: exclude redwood from Wood Mod for any module + # ] + # + blacklist = [] + +[leavestype] + #Exclude LeavesType from all of Modules + # The example is same as WoodType's + blacklist = [] + +[block] + #Exclude a specific WoodType/LeavesType block + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped/biomesoplenty/checkered_redwood_trapdoor", COMMENT: excluded a checkered_trapdoor from Chipped with Biomes-O'-Plenty's redwood + # "variantvanillablocks/biomesoplenty/fir_chest", COMMENT: excluded a chest from Variant-Vanilla-Blocks with Biomes-O'-Plenty's fir + # ".*/biomesoplenty/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods with just Biomes-O'-Plenty (Wood-Mods) + # "chipped/.*/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Wood-Mods with just chipped (Supported-Mod) + # ".*fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods & Wood-Mods + # ] + # + blacklist = [] + +[entryset] + #Exclude EntrySet from the module for All of WoodType or LeavesType + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module - Wood-Good ONLY + # ] + # NOTE: This excluded one entryset from all WoodTypes/LeavesTypes + # + blacklist = [] + +[module] + #Exclude Module From Wood-Good, Stone-Zone & Gems-Realm + # EXAMPLE: blacklist = [ + # "chipped", + # "variantvanillablocks" + # ] + # + blacklist = [] + +[other] + #Disable all of Supported Mods on EveryCompat's side. This feature is same as Library-Section which do not have any Wood Modules. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + include_all_wood_modules = true + #Blacklist all of EveryCompat's supported blocks that may have similar block to Framed Blocks. + #This will be applied to all mods, EveryCompat, StoneZone, & GemsRealm. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + enable_framed_blocks_blacklist = false diff --git a/Server/config/gemsrealm-common.toml b/Server/config/gemsrealm-common.toml new file mode 100644 index 0000000..ec06214 --- /dev/null +++ b/Server/config/gemsrealm-common.toml @@ -0,0 +1,5 @@ +[general] + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs + creative_tab = true + #Allow the item_search or searchBar to be visible. + tab_item_search = true diff --git a/Server/config/gemsrealm-hazardous.toml b/Server/config/gemsrealm-hazardous.toml new file mode 100644 index 0000000..8467249 --- /dev/null +++ b/Server/config/gemsrealm-hazardous.toml @@ -0,0 +1,55 @@ +# ═════════════════════════ Attention ═════════════════════════ +# Don't use this if you don't know what you are doing +# REASON: +# This file is a conditional registration. This is harmless in Singleplayer World, +# but harmful in SERVER because you won't able to join. +# +# ══════════════════════════ Detail ═══════════════════════════ +# This file allow you to exclude StoneTypes, MudType, EntrySet, or a Module +# 1) You can find their names for StoneTypes, MudType, or EntrySet in `everycomp-entries.toml` +# 2) Leave a value empty to disable that rule. +# +# Module - is a Supported Mod, just a modId is sufficient. +# EntrySet - is a FurnitureType or DecorativeType, it is either Block or Item. +# +# +# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm - if you want to blacklist, then use everycomp-hazardous.toml +# +# ─────────────────────────── Other ─────────────────────────── +# (Abbreviation) RegEx <=> Regular Expression +# +[crystaltype] + #Exclude one or all of Supported-Mod for CrystalType + # EXAMPLE: blacklist = [ + # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of CrystalType containing "fireproof" from Forestry + # "biomesoplenty:.*", COMMENT: .* is a RegEx/Advanced-WildCard, it exclude all of CrystalType from Wood Mod for any Module + # "biomesoplenty:redwood" COMMENT: exclude redwood from Wood Mod for any module + # ] + # + blacklist = [] + +[dusttype] + #Exclude one or all of Supported-Mod for DustType + # The example is same as CrystalType's + blacklist = [] + +[gemtype] + #Exclude one or all of Supported-Mod for GemType + # The example is same as CrystalType's + blacklist = [] + +[metaltype] + #Exclude one or all of Supported-Mod for MetalType + # The example is same as CrystalType's + blacklist = [] + +[entryset] + #Exclude EntrySet from the module for All of CrystalType, DustType, GemType, MetalType + # This will only Exclude one specific or all of Gems-Realm's Supported-Blocks or Supported-Items + # EXAMPLE: blacklist = [ + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is a RegEx/Advanced-WildCard which will exclude all of EntrySets from one Module + # ] + # + blacklist = [] diff --git a/Server/config/stonezone-common.toml b/Server/config/stonezone-common.toml new file mode 100644 index 0000000..ec06214 --- /dev/null +++ b/Server/config/stonezone-common.toml @@ -0,0 +1,5 @@ +[general] + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs + creative_tab = true + #Allow the item_search or searchBar to be visible. + tab_item_search = true diff --git a/Server/config/stonezone-hazardous.toml b/Server/config/stonezone-hazardous.toml new file mode 100644 index 0000000..4bdc965 --- /dev/null +++ b/Server/config/stonezone-hazardous.toml @@ -0,0 +1,41 @@ +# ═════════════════════════ Attention ═════════════════════════ +# Don't use this if you don't know what you are doing +# REASON: +# This file is a conditional registration. This is harmless in Singleplayer World, +# but harmful in SERVER because you won't able to join. +# +# ══════════════════════════ Detail ═══════════════════════════ +# This file allow you to exclude StoneTypes, MudType, EntrySet +# 1) You can find their names for StoneTypes, MudType, or EntrySet in `everycomp-entries.toml` +# 2) Leave a value empty to disable that rule. +# +# Module - is a Supported Mod, just a modId is sufficient. +# EntrySet - is a FurnitureType or DecorativeType that Stone-Zone is supporting via the mod. it is either block or item. +# +# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm - if you want to blacklist, then use everycomp-hazardous.toml +# +[stonetype] + #Exclude StoneType from all of Modules + # EXAMPLE: blacklist = [ + # "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of StoneType containing "fireproof" from Forestry + # "biomesoplenty:.*", COMMENT: .* is an RegEx, it exclude all of StoneType from Wood Mod for any Module + # "biomesoplenty:redwood" COMMENT: exclude redwood from Stone Mod for any module + # ] + # + blacklist = [] + +[mudtype] + #Exclude MudType from all of Modules + # The example is same as StoneType's + blacklist = [] + +[entryset] + #Exclude EntrySet from the module for All of StoneType or MudType + # This is only applied to Stone-Zone. + # EXAMPLE: blacklist = [ + # "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak" + # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" + # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module + # ] + # + blacklist = [] diff --git a/config/alexsmobs-common.toml b/config/alexsmobs-common.toml new file mode 100644 index 0000000..caf7eaa --- /dev/null +++ b/config/alexsmobs-common.toml @@ -0,0 +1,913 @@ +[general] + #Whether all players should get an Animal Dictionary when joining the world for the first time. + giveBookOnStartup = true + #Lava Opacity for the Lava Vision Potion. + # Default: 0.65 + # Range: 0.01 ~ 1.0 + lavaVisionOpacity = 0.65 + #Whether to disable certain aspects of the Lava Vision Potion. Enable if issues with shaders persist. + shadersCompat = false + #Whether bananas should drop from blocks tagged with #alexsmobs:drops_bananas + bananasDropFromLeaves = true + #1 out of this number chance for leaves to drop a banana when broken. Fortune is automatically factored in + # Default: 200 + # Range: > 0 + bananaChance = 200 + #Whether spiders should target fly mobs. + spidersAttackFlies = true + #Whether wolves should target moose mobs. + wolvesAttackMoose = true + #Whether polar bears should target seal mobs. + polarBearsAttackSeals = true + #Whether cats, ocelots and foxes should target jerboa mobs. + catsAndFoxesAttackJerboas = true + #Whether dolphins should target flying fish mobs. + dolphinsAttackFlyingFish = true + #Whether lava can be bottled with a right click of a glass bottle. + lavaBottleEnabled = true + #Whether bone serpents are neutral or hostile. + neutralBoneSerpents = false + #Whether mimicubes spawns should be restricted solely to the end city structure or to whatever biome is specified in their respective biome config. + mimicubeSpawnInEndCity = true + #Whether mimicream can be used to duplicate items. + mimicreamRepair = true + #Blacklist for items that mimicream cannot make a copy of. Ex: "minecraft:stone_sword", "alexsmobs:blood_sprayer" + mimicreamBlacklist = ["alexsmobs:blood_sprayer", "alexsmobs:hemolymph_blaster"] + #Whether wild raccoons steal food from chests. + raccoonStealFromChests = true + #Whether wild crows steal crops from farmland. + crowsStealCrops = true + #Whether fish oil gives players a special levitation effect. + fishOilMeme = true + #Whether soul vulture spawns should be restricted solely to the nether fossil structure or to whatever biome is specified in their respective biome config. + soulVultureSpawnOnFossil = true + #Whether acacia blossoms should drop from blocks tagged with #alexsmobs:drops_acacia_blossoms + acaciaBlossomsDropFromLeaves = true + #1 out of this number chance for leaves to drop an acacia when broken. Fortune is automatically factored in + # Default: 130 + # Range: > 0 + acaciaBlossomChance = 130 + #Whether wandering traders offer items like acacia blossoms, mosquito larva, crocodile egg, etc. + wanderingTraderOffers = true + #0 = no mungus biome transformation. 1 = mungus changes blocks, but not chunk's biome. 2 = mungus transforms blocks and biome of chunk. + # Default: 2 + # Range: 0 ~ 2 + mungusBiomeTransformationType = 2 + #List of all mungus mushrooms, biome transformations and surface blocks. Each is seperated by a |. Add an entry with a block registry name, biome registry name, and block registry name(for the ground). + mungusBiomeMatches = ["minecraft:red_mushroom|minecraft:mushroom_fields|minecraft:mycelium", "minecraft:brown_mushroom|minecraft:mushroom_fields|minecraft:mycelium", "minecraft:crimson_fungus|minecraft:crimson_forest|minecraft:crimson_nylium", "minecraft:warped_fungus|minecraft:warped_forest|minecraft:warped_nylium"] + #Whether guster spawns are limited to when it is raining/thundering. + limitGusterSpawnsToWeather = true + #Whether Crimson Mosquitoes can transform into Warped Moscos if attacking a Mungus or any listed creature. + warpedMoscoTransformation = true + #List of extra(non mungus) mobs that will trigger a crimson mosquito to become a warped mosquito. Ex: "minecraft:mooshroom", "alexsmobs:warped_toad" + warpedMoscoMobTriggers = [""] + #True if straddleboard enchants are enabled. + straddleboardEnchants = true + #Whether emu should target skeletons. + emuTargetSkeletons = true + #Percent chance for emu leggings to dodge projectile attacks. + # Default: 0.45 + # Range: 0.0 ~ 1.0 + emuPantsDodgeChance = 0.45 + #Whether cachalots can destroy wood blocks if angry. + cachalotDestruction = true + #Relative volume of cachalot whales compared to other animals. Note that irl they are the loudest animal. Turn this down if you find their clicks annoying. + # Default: 3.0 + # Range: 0.0 ~ 10.0 + cachalotVolume = 3.0 + #Percent chance for fungus to grow per each leaf a leafcutter ant returns to the colony. + # Default: 0.3 + # Range: 0.0 ~ 1.0 + leafcutterAntFungusGrowChance = 0.3 + #How many feedings of leaves does a leafcutter colony need in order to regain a worker ant, if below half the max members. + # Default: 25 + # Range: 2 ~ 100000 + leafcutterAntRepopulateFeedings = 25 + #Max number of ant entities allowed inside a leafcutter anthill. + # Default: 10 + # Range: 2 ~ 100000 + leafcutterAntColonySize = 10 + #Percent chance for leafcutter ants to break leaves blocks when harvesting. Set to zero so that they can not break any blocks. + # Default: 0.2 + # Range: 0.0 ~ 1.0 + leafcutterAntBreakLeavesChance = 0.2 + #Makes eagles teleport back to their owner if they get stuck during controlled flight. Useful for when playing with the Optifine mod, since this mod is the fault of many issues with the falconry system. + falconryTeleportsBack = false + #Makes Tarantula Hawks fireproof, perfect if you also want these guys to spawn in the nether. + fireproofTarantulaHawk = false + #List of dimensions in which spawning void worms via mysterious worm items is allowed. + voidWormSpawnDimensions = ["minecraft:the_end"] + #All void worm damage is scaled to this. + # Default: 1.0 + # Range: 0.0 ~ 100.0 + voidWormDamageModifier = 1.0 + #Max Health of the void worm boss. + # Default: 160.0 + # Range: 0.0 ~ 1000000.0 + voidWormMaxHealth = 160.0 + #Whether the void worm boss is summonable or not, via the mysterious worm item. + voidWormSummonable = true + #Whether seagulls should steal food out of players' hotbar slots. + seagullStealing = true + #List of items that seagulls cannot take from players. + seagullStealingBlacklist = [] + #Whether the Clinging Potion effect should flip the screen. Warning: may cause nausea. + clingingFlipEffect = false + #Percent chance of getting Pigshoes from Piglin Bartering. Set to zero to disable. + # Default: 0.02500000037252903 + # Range: 0.0 ~ 1.0 + tusklinShoesBarteringChance = 0.02500000037252903 + #The visual zoom of the rainbow pattern on the rainbow glass block. Higher number = bigger pattern. + # Default: 16.0 + # Range: 1.0 ~ 10000.0 + rainbowGlassFidelity = 16.0 + #Whether Rabbits can transform into Bunfungus if fed Mungal spores. + bunfungusTransformation = true + #True if some Alex's Mobs items should spawn in loot chests. + addLootToChests = true + #List of items that cannot be put in a Transmuting Table. + transmutationBlacklist = ["minecraft:beacon"] + #True if transmutation tables should not have the ability to pick up new items to transmute, and only give options from the loot tables. + limitTransmutingToLootTables = false + #True if transmutation tables can explode when broken. + transmutingTableExplodes = true + #The experience, in levels, that each transmutation of a stack takes in the transmuting table. + # Default: 3 + # Range: 0 ~ 100000 + transmutingExperienceCost = 3 + #The step value multiplied by the log of the stack size when transmuting an item, used to determine its weight for appearing in future transmutation possibilities. Higher number = more likely to appear. + # Default: 3.0 + # Range: 1.0 ~ 10000.0 + transmutingWeightAddStep = 3.0 + #The step value that an item looses when selecting it as the transmutation result. Keep this number higher than the one above for balance reasons. Higher number = less likely to appear after transmuting multiple times. + # Default: 4.0 + # Range: 1.0 ~ 10000.0 + transmutingWeightRemoveStep = 4.0 + #True if skreechers can summon a new warden, when applicable. + skreechersSummonWarden = true + #The distance in blocks that will cause an underminer to dissapear when approached by a player. + # Default: 8.0 + # Range: 1.0 ~ 10000.0 + underminerDisappearDistance = 8.0 + +[spawning] + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + grizzlyBearSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + grizzlyBearSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 9 + # Range: 0 ~ 1000 + roadrunnerSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + roadrunnerSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + boneSerpentSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 40 + # Range: > 0 + boneSeprentSpawnRolls = 40 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 40 + # Range: 0 ~ 1000 + gazelleSpawnWeight = 40 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + gazelleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + crocodileSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + crocSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 3 + # Range: 0 ~ 1000 + flySpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + flySpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 19 + # Range: 0 ~ 1000 + hummingbirdSpawnWeight = 19 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + hummingbirdSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 2 + # Range: 0 ~ 1000 + orcaSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 6 + # Range: > 0 + orcaSpawnRolls = 6 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 5 + # Range: 0 ~ 1000 + sunbirdSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 6 + # Range: > 0 + sunbirdSpawnRolls = 6 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 25 + # Range: 0 ~ 1000 + gorillaSpawnWeight = 25 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + gorillaSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + crimsonMosquitoSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + crimsonMosquitoSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 12 + # Range: 0 ~ 1000 + rattlesnakeSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + rattlesnakeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + endergradeSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + endergradeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + hammerheadSharkSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + hammerheadSharkSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 7 + # Range: 0 ~ 1000 + lobsterSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + lobsterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 16 + # Range: 0 ~ 1000 + komodoDragonSpawnWeight = 16 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + komodoDragonSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 28 + # Range: 0 ~ 1000 + capuchinMonkeySpawnWeight = 28 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + capuchinMonkeySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + caveCentipedeSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + caveCentipedeSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + warpedToadSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + warpedToadSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 9 + # Range: 0 ~ 1000 + mooseSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + mooseSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 40 + # Range: 0 ~ 1000 + mimicubeSpawnWeight = 40 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + mimicubeSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + raccoonSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + raccoonSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + blobfishSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + blobfishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + sealSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + sealSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 4 + # Range: 0 ~ 1000 + cockroachSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + cockroachSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + shoebillSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + shoebillSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + elephantSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + elephantSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + soulVultureSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + soulVultureSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 18 + # Range: 0 ~ 1000 + snowLeopardSpawnWeight = 18 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + snowLeopardSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + spectreSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 5 + # Range: > 0 + spectreSpawnRolls = 5 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + crowSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + crowSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + alligatorSnappingTurtleSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + alligatorSnappingTurtleSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 4 + # Range: 0 ~ 1000 + mungusSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + mungusSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + mantisShrimpSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + mantisShrimpSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 35 + # Range: 0 ~ 1000 + gusterSpawnWeight = 35 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + gusterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn. NOTE: By default the warped mosco doesn't spawn in any biomes. + # Default: 1 + # Range: 0 ~ 1000 + warpedMoscoSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1000 + # Range: > 0 + warpedMoscoSpawnRolls = 1000 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 70 + # Range: 0 ~ 1000 + straddlerSpawnWeight = 70 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + straddlerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + stradpoleSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 3 + # Range: > 0 + stradpoleSpawnRolls = 3 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + emuSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + emuSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + platypusSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + platypusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 19 + # Range: 0 ~ 1000 + dropbearSpawnWeight = 19 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + dropbearSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + tasmanianDevilSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + tasmanianDevilSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 25 + # Range: 0 ~ 1000 + kangarooSpawnWeight = 25 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + kangarooSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 2 + # Range: 0 ~ 1000 + cachalotWhaleSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + cachalotWhaleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 4 + # Range: 0 ~ 1000 + enderiophageSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 2 + # Range: > 0 + enderiophageSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + baldEagleSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + baldEagleSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + tigerSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + tigerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 6 + # Range: 0 ~ 1000 + tarantulaHawkSpawnWeight = 6 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + tarantulaHawkSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 0 + # Range: 0 ~ 1000 + voidWormSpawnWeight = 0 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + voidWormSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 11 + # Range: 0 ~ 1000 + frilledSharkSpawnWeight = 11 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + frilledSharkSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 9 + # Range: 0 ~ 1000 + mimicOctopusSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + mimicOctopusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 21 + # Range: 0 ~ 1000 + seagullSpawnWeight = 21 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + seagullSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 20 + # Range: 0 ~ 1000 + froststalkerSpawnWeight = 20 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + froststalkerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 18 + # Range: 0 ~ 1000 + tusklinSpawnWeight = 18 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + tusklinSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + laviathanSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + laviathanSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 9 + # Range: 0 ~ 1000 + cosmawSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + cosmawSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 23 + # Range: 0 ~ 1000 + toucanSpawnWeight = 23 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + toucanSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + manedWolfSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + manedWolfSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 12 + # Range: 0 ~ 1000 + anacondaSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + anacondaSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 7 + # Range: 0 ~ 1000 + anteaterSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + anteaterSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 60 + # Range: 0 ~ 1000 + rockyRollerSpawnWeight = 60 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + rockyRollerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 13 + # Range: 0 ~ 1000 + flutterSpawnWeight = 13 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + flutterSpawnRolls = 0 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 5 + # Range: > 0 + geladaMonkeySpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + geladaMonkeySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 12 + # Range: 0 ~ 1000 + jerboaSpawnWeight = 12 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 2 + # Range: > 0 + jerboaSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 4 + # Range: 0 ~ 1000 + terrapinSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + terrapinSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 5 + # Range: 0 ~ 1000 + combJellySpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + combJellySpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 5 + # Range: 0 ~ 1000 + cosmicCodSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + cosmicCodSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 3 + # Range: 0 ~ 1000 + bunfungusSpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + bunfungusSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 9 + # Range: 0 ~ 1000 + bisonSpawnWeight = 9 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + bisonSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 3 + # Range: 0 ~ 1000 + giantSquidSpawnWeight = 3 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + giantSquidSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn (NOTE: this mob spawns are restricted exclusively to one chunk, see below) + # Default: 23 + # Range: 0 ~ 1000 + devilsHolePupfishSpawnWeight = 23 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning (NOTE: this mob spawns are restricted exclusively to one chunk, see below) + # Default: 0 + # Range: > 0 + devilsHolePupfishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 4 + # Range: 0 ~ 1000 + catfishSpawnWeight = 4 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 2 + # Range: > 0 + catfishSpawnRolls = 2 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + flyingFishSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + flyingFishSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + skelewagSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + skelewagSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + rainFrogSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + rainFrogSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + potooSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + potooSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 28 + # Range: 0 ~ 1000 + mudskipperSpawnWeight = 28 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + mudskipperSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 24 + # Range: 0 ~ 1000 + rhinocerosSpawnWeight = 24 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + rhinocerosSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 15 + # Range: 0 ~ 1000 + sugarGliderSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + sugarGliderSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 30 + # Range: 0 ~ 1000 + farseerSpawnWeight = 30 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + farseerSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 10 + # Range: 0 ~ 1000 + skreecherSpawnWeight = 10 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + skreecherSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 50 + # Range: 0 ~ 1000 + underminerSpawnWeight = 50 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + underminerSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 5 + # Range: 0 ~ 1000 + murmurSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 1 + # Range: > 0 + murmurSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 7 + # Range: 0 ~ 1000 + skunkSpawnWeight = 7 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + skunkSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 14 + # Range: 0 ~ 1000 + bananaSlugSpawnWeight = 14 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + bananaSlugSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 16 + # Range: 0 ~ 1000 + blueJaySpawnWeight = 16 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + blueJaySpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 29 + # Range: 0 ~ 1000 + caimanSpawnWeight = 29 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + caimanSpawnRolls = 0 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + # Default: 8 + # Range: 0 ~ 1000 + triopsSpawnWeight = 8 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + # Default: 0 + # Range: > 0 + triopsSpawnRolls = 0 + +[uniqueSpawning] + #Maximum world y-level that cave centipedes can spawn at + # Default: 0 + # Range: -64 ~ 320 + caveCentipedeSpawnHeight = 0 + #Maximum world y-level that blobfish can spawn at + # Default: 25 + # Range: -64 ~ 320 + blobfishSpawnHeight = 25 + #Whether to enable beached cachalot whales to spawn on beaches during thunder storms. + beachedCachalotWhales = true + #Percent chance increase for each failed attempt to spawn a beached cachalot whale. Higher value = more spawns. + # Default: 5 + # Range: 0 ~ 100 + beachedCachalotWhaleSpawnChance = 5 + #Delay (in ticks) between attempts to spawn beached cachalot whales. Default is a single day. Works like wandering traders. + # Default: 24000 + # Range: > 0 + beachedCachalotWhaleSpawnDelay = 24000 + #Percent chance for leafcutter anthills to spawn as world gen in each chunk. Set to zero to disable spawning. + # Default: 0.004999999888241291 + # Range: 0.0 ~ 1.0 + leafcutterAnthillSpawnChance = 0.004999999888241291 + #Minimum world y-level that gelada monkeys can spawn at + # Default: 0 + # Range: -64 ~ 320 + geladaMonkeySpawnRolls = 0 + #Whether to restrict all pupfish spawns to one chunk (similar to real life) or have them only obey their spawn config. + restrictPupfishSpawns = true + #The maximum distance a pupfish spawn chunk is from world spawn(0, 0) in blocks. + # Default: 2000 + # Range: 2 ~ 1000000000 + pupfishChunkSpawnDistance = 2000 + #Whether to restrict all skelewag spawns to shipwreck structures. + restrictSkelewagSpawns = true + #Whether to restrict all farseer spawns to near the world border. + restrictFarseerSpawns = true + #Whether to restrict all underminer spawns to abandoned mineshafts. + restrictUnderminerSpawns = true + #The maximum distance a farseer can spawn from the world border. + # Default: 100 + # Range: 2 ~ 1000000000 + farseerBorderSpawnDistance = 100 + #Maximum world y-level that murmur can spawn at + # Default: -30 + # Range: -64 ~ 320 + murmurSpawnHeight = -30 + +[dangerZone] + #Its been so long... + superSecretSettings = false + #How many cpu cores some mobs(elephants, leafcutter ants, bison etc) should utilize when pathing. Bigger number = less impact on TPS + # Default: 5 + # Range: 1 ~ 100 + pathfindingThreads = 5 diff --git a/config/alexsmobs/alligator_snapping_turtle_spawns.json b/config/alexsmobs/alligator_snapping_turtle_spawns.json new file mode 100644 index 0000000..e472b51 --- /dev/null +++ b/config/alexsmobs/alligator_snapping_turtle_spawns.json @@ -0,0 +1,42 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/anaconda_spawns.json b/config/alexsmobs/anaconda_spawns.json new file mode 100644 index 0000000..71186ed --- /dev/null +++ b/config/alexsmobs/anaconda_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/anteater_spawns.json b/config/alexsmobs/anteater_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/anteater_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bald_eagle_spawns.json b/config/alexsmobs/bald_eagle_spawns.json new file mode 100644 index 0000000..a60dcb9 --- /dev/null +++ b/config/alexsmobs/bald_eagle_spawns.json @@ -0,0 +1,147 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_coniferous" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:windswept_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:haze_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:jade_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/banana_slug_spawns.json b/config/alexsmobs/banana_slug_spawns.json new file mode 100644 index 0000000..f321995 --- /dev/null +++ b/config/alexsmobs/banana_slug_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_pine_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_spruce_taiga" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dense_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:coniferous_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:fir_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "autumnity:maple_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bison_spawns.json b/config/alexsmobs/bison_spawns.json new file mode 100644 index 0000000..6bcfc97 --- /dev/null +++ b/config/alexsmobs/bison_spawns.json @@ -0,0 +1,96 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_hot_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:meadow" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:field" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:forested_field" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:grassland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:pasture" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:prairie" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/blobfish_spawns.json b/config/alexsmobs/blobfish_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/blobfish_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/blue_jay_spawns.json b/config/alexsmobs/blue_jay_spawns.json new file mode 100644 index 0000000..1ce676d --- /dev/null +++ b/config/alexsmobs/blue_jay_spawns.json @@ -0,0 +1,215 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bone_serpent_spawns.json b/config/alexsmobs/bone_serpent_spawns.json new file mode 100644 index 0000000..d83c70e --- /dev/null +++ b/config/alexsmobs/bone_serpent_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_nether" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/bunfungus_spawns.json b/config/alexsmobs/bunfungus_spawns.json new file mode 100644 index 0000000..d64b7bd --- /dev/null +++ b/config/alexsmobs/bunfungus_spawns.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_mushroom" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cachalot_whale_beached_spawns.json b/config/alexsmobs/cachalot_whale_beached_spawns.json new file mode 100644 index 0000000..088de5d --- /dev/null +++ b/config/alexsmobs/cachalot_whale_beached_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cachalot_whale_spawns.json b/config/alexsmobs/cachalot_whale_spawns.json new file mode 100644 index 0000000..4d87366 --- /dev/null +++ b/config/alexsmobs/cachalot_whale_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_cold_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/caiman_spawns.json b/config/alexsmobs/caiman_spawns.json new file mode 100644 index 0000000..18313e1 --- /dev/null +++ b/config/alexsmobs/caiman_spawns.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/underground_jungle" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/capuchin_monkey_spawns.json b/config/alexsmobs/capuchin_monkey_spawns.json new file mode 100644 index 0000000..08528b2 --- /dev/null +++ b/config/alexsmobs/capuchin_monkey_spawns.json @@ -0,0 +1,65 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/catfish_spawns.json b/config/alexsmobs/catfish_spawns.json new file mode 100644 index 0000000..f8dbe5e --- /dev/null +++ b/config/alexsmobs/catfish_spawns.json @@ -0,0 +1,59 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ice_marsh" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cave_centipede_spawns.json b/config/alexsmobs/cave_centipede_spawns.json new file mode 100644 index 0000000..3c54d1b --- /dev/null +++ b/config/alexsmobs/cave_centipede_spawns.json @@ -0,0 +1,115 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cockroach_spawns.json b/config/alexsmobs/cockroach_spawns.json new file mode 100644 index 0000000..fb63a33 --- /dev/null +++ b/config/alexsmobs/cockroach_spawns.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/comb_jelly_spawns.json b/config/alexsmobs/comb_jelly_spawns.json new file mode 100644 index 0000000..a8a4336 --- /dev/null +++ b/config/alexsmobs/comb_jelly_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_frozen_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cosmaw_spawns.json b/config/alexsmobs/cosmaw_spawns.json new file mode 100644 index 0000000..a2fb00f --- /dev/null +++ b/config/alexsmobs/cosmaw_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:small_end_islands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/cosmic_cod_spawns.json b/config/alexsmobs/cosmic_cod_spawns.json new file mode 100644 index 0000000..0881425 --- /dev/null +++ b/config/alexsmobs/cosmic_cod_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crimson_mosquito_spawns.json b/config/alexsmobs/crimson_mosquito_spawns.json new file mode 100644 index 0000000..31a9de2 --- /dev/null +++ b/config/alexsmobs/crimson_mosquito_spawns.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:crimson_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crimson_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:visceral_heap" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:ash_barrens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:infernal_dunes" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crocodile_spawns.json b/config/alexsmobs/crocodile_spawns.json new file mode 100644 index 0000000..67ef734 --- /dev/null +++ b/config/alexsmobs/crocodile_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tropic_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/crow_spawns.json b/config/alexsmobs/crow_spawns.json new file mode 100644 index 0000000..c52d5e4 --- /dev/null +++ b/config/alexsmobs/crow_spawns.json @@ -0,0 +1,276 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/devils_hole_pupfish_spawns.json b/config/alexsmobs/devils_hole_pupfish_spawns.json new file mode 100644 index 0000000..d45a798 --- /dev/null +++ b/config/alexsmobs/devils_hole_pupfish_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/dropbear_spawns.json b/config/alexsmobs/dropbear_spawns.json new file mode 100644 index 0000000..65494ea --- /dev/null +++ b/config/alexsmobs/dropbear_spawns.json @@ -0,0 +1,23 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:nether_wastes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:crystalline_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/elephant_spawns.json b/config/alexsmobs/elephant_spawns.json new file mode 100644 index 0000000..d3cb024 --- /dev/null +++ b/config/alexsmobs/elephant_spawns.json @@ -0,0 +1,65 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/emu_spawns.json b/config/alexsmobs/emu_spawns.json new file mode 100644 index 0000000..a4c10bf --- /dev/null +++ b/config/alexsmobs/emu_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:lush_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/endergrade_spawns.json b/config/alexsmobs/endergrade_spawns.json new file mode 100644 index 0000000..f806db3 --- /dev/null +++ b/config/alexsmobs/endergrade_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/enderiophage_spawns.json b/config/alexsmobs/enderiophage_spawns.json new file mode 100644 index 0000000..6c273fd --- /dev/null +++ b/config/alexsmobs/enderiophage_spawns.json @@ -0,0 +1,31 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:end_barrens" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:end_highlands" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:small_end_islands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/farseer.json b/config/alexsmobs/farseer.json new file mode 100644 index 0000000..3b5beee --- /dev/null +++ b/config/alexsmobs/farseer.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mushroom_fields" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/flutter_spawns.json b/config/alexsmobs/flutter_spawns.json new file mode 100644 index 0000000..4c3d891 --- /dev/null +++ b/config/alexsmobs/flutter_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lush_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/fly_spawns.json b/config/alexsmobs/fly_spawns.json new file mode 100644 index 0000000..d45a798 --- /dev/null +++ b/config/alexsmobs/fly_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/flying_fish_spawns.json b/config/alexsmobs/flying_fish_spawns.json new file mode 100644 index 0000000..c9d0d57 --- /dev/null +++ b/config/alexsmobs/flying_fish_spawns.json @@ -0,0 +1,36 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_hot_overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_ocean" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_lukewarm_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/frilled_shark_spawns.json b/config/alexsmobs/frilled_shark_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/frilled_shark_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/froststalker_spawns.json b/config/alexsmobs/froststalker_spawns.json new file mode 100644 index 0000000..ab0af45 --- /dev/null +++ b/config/alexsmobs/froststalker_spawns.json @@ -0,0 +1,53 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:ice_spikes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:frozen_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:glacial_chasm" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gazelle_spawns.json b/config/alexsmobs/gazelle_spawns.json new file mode 100644 index 0000000..a7734ba --- /dev/null +++ b/config/alexsmobs/gazelle_spawns.json @@ -0,0 +1,60 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gelada_monkey_spawns.json b/config/alexsmobs/gelada_monkey_spawns.json new file mode 100644 index 0000000..e5c455c --- /dev/null +++ b/config/alexsmobs/gelada_monkey_spawns.json @@ -0,0 +1,56 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/giant_squid_spawns.json b/config/alexsmobs/giant_squid_spawns.json new file mode 100644 index 0000000..3a81409 --- /dev/null +++ b/config/alexsmobs/giant_squid_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/gorilla_spawns.json b/config/alexsmobs/gorilla_spawns.json new file mode 100644 index 0000000..299b548 --- /dev/null +++ b/config/alexsmobs/gorilla_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/grizzly_bear_spawns.json b/config/alexsmobs/grizzly_bear_spawns.json new file mode 100644 index 0000000..1ce676d --- /dev/null +++ b/config/alexsmobs/grizzly_bear_spawns.json @@ -0,0 +1,215 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cloud_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:forested_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lush_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/guster_spawns.json b/config/alexsmobs/guster_spawns.json new file mode 100644 index 0000000..260d269 --- /dev/null +++ b/config/alexsmobs/guster_spawns.json @@ -0,0 +1,61 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ashen_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/hammerhead_shark_spawns.json b/config/alexsmobs/hammerhead_shark_spawns.json new file mode 100644 index 0000000..3420e0e --- /dev/null +++ b/config/alexsmobs/hammerhead_shark_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/hummingbird_spawns.json b/config/alexsmobs/hummingbird_spawns.json new file mode 100644 index 0000000..2e05b9a --- /dev/null +++ b/config/alexsmobs/hummingbird_spawns.json @@ -0,0 +1,165 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:flower_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:sunflower_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:meadow" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/jerboa_spawns.json b/config/alexsmobs/jerboa_spawns.json new file mode 100644 index 0000000..3df9011 --- /dev/null +++ b/config/alexsmobs/jerboa_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/kangaroo_spawns.json b/config/alexsmobs/kangaroo_spawns.json new file mode 100644 index 0000000..a4c10bf --- /dev/null +++ b/config/alexsmobs/kangaroo_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:lush_desert" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/komodo_dragon_spawns.json b/config/alexsmobs/komodo_dragon_spawns.json new file mode 100644 index 0000000..95d024e --- /dev/null +++ b/config/alexsmobs/komodo_dragon_spawns.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_dense_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tropics" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/laviathan_spawns.json b/config/alexsmobs/laviathan_spawns.json new file mode 100644 index 0000000..ff48a93 --- /dev/null +++ b/config/alexsmobs/laviathan_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_nether" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/leafcutter_anthill_spawns.json b/config/alexsmobs/leafcutter_anthill_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/leafcutter_anthill_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/lobster_spawns.json b/config/alexsmobs/lobster_spawns.json new file mode 100644 index 0000000..7fa2c6e --- /dev/null +++ b/config/alexsmobs/lobster_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/maned_wolf_spawns.json b/config/alexsmobs/maned_wolf_spawns.json new file mode 100644 index 0000000..625277a --- /dev/null +++ b/config/alexsmobs/maned_wolf_spawns.json @@ -0,0 +1,58 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mantis_shrimp_spawns.json b/config/alexsmobs/mantis_shrimp_spawns.json new file mode 100644 index 0000000..7c651d7 --- /dev/null +++ b/config/alexsmobs/mantis_shrimp_spawns.json @@ -0,0 +1,23 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mimic_octopus_spawns.json b/config/alexsmobs/mimic_octopus_spawns.json new file mode 100644 index 0000000..83a7145 --- /dev/null +++ b/config/alexsmobs/mimic_octopus_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_warm_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mimicube_spawns.json b/config/alexsmobs/mimicube_spawns.json new file mode 100644 index 0000000..e221022 --- /dev/null +++ b/config/alexsmobs/mimicube_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/moose_spawns.json b/config/alexsmobs/moose_spawns.json new file mode 100644 index 0000000..d6afce4 --- /dev/null +++ b/config/alexsmobs/moose_spawns.json @@ -0,0 +1,122 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_wasteland" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowy_coniferous_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowy_fir_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "snowy_maple_woods" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mudskipper_spawns.json b/config/alexsmobs/mudskipper_spawns.json new file mode 100644 index 0000000..18313e1 --- /dev/null +++ b/config/alexsmobs/mudskipper_spawns.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/underground_jungle" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/mungus_spawns.json b/config/alexsmobs/mungus_spawns.json new file mode 100644 index 0000000..d64b7bd --- /dev/null +++ b/config/alexsmobs/mungus_spawns.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_mushroom" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_rare" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/murmur.json b/config/alexsmobs/murmur.json new file mode 100644 index 0000000..3c54d1b --- /dev/null +++ b/config/alexsmobs/murmur.json @@ -0,0 +1,115 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/orca_spawns.json b/config/alexsmobs/orca_spawns.json new file mode 100644 index 0000000..d174726 --- /dev/null +++ b/config/alexsmobs/orca_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_cold_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/platypus_spawns.json b/config/alexsmobs/platypus_spawns.json new file mode 100644 index 0000000..6197e11 --- /dev/null +++ b/config/alexsmobs/platypus_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/potoo_spawns.json b/config/alexsmobs/potoo_spawns.json new file mode 100644 index 0000000..2879be6 --- /dev/null +++ b/config/alexsmobs/potoo_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:dark_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/raccoon_spawns.json b/config/alexsmobs/raccoon_spawns.json new file mode 100644 index 0000000..5c62518 --- /dev/null +++ b/config/alexsmobs/raccoon_spawns.json @@ -0,0 +1,199 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plains" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:alpine_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cold_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:hot_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shield_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:valley_clearing" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:redwood_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rain_frog_spawns.json b/config/alexsmobs/rain_frog_spawns.json new file mode 100644 index 0000000..3df9011 --- /dev/null +++ b/config/alexsmobs/rain_frog_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rattlesnake_spawns.json b/config/alexsmobs/rattlesnake_spawns.json new file mode 100644 index 0000000..96ab06f --- /dev/null +++ b/config/alexsmobs/rattlesnake_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rhinoceros_spawns.json b/config/alexsmobs/rhinoceros_spawns.json new file mode 100644 index 0000000..a7734ba --- /dev/null +++ b/config/alexsmobs/rhinoceros_spawns.json @@ -0,0 +1,60 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:arid_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:brushland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/roadrunner_spawns.json b/config/alexsmobs/roadrunner_spawns.json new file mode 100644 index 0000000..96ab06f --- /dev/null +++ b/config/alexsmobs/roadrunner_spawns.json @@ -0,0 +1,91 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warped_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_mesa" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/rocky_roller_spawns.json b/config/alexsmobs/rocky_roller_spawns.json new file mode 100644 index 0000000..56531bf --- /dev/null +++ b/config/alexsmobs/rocky_roller_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:dripstone_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/seagull_spawns.json b/config/alexsmobs/seagull_spawns.json new file mode 100644 index 0000000..3941d71 --- /dev/null +++ b/config/alexsmobs/seagull_spawns.json @@ -0,0 +1,72 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:basalt_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:granite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/seal_spawns.json b/config/alexsmobs/seal_spawns.json new file mode 100644 index 0000000..082dab1 --- /dev/null +++ b/config/alexsmobs/seal_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_cold_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:dune_beach" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:stony_shore" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/shoebill_spawns.json b/config/alexsmobs/shoebill_spawns.json new file mode 100644 index 0000000..19ad363 --- /dev/null +++ b/config/alexsmobs/shoebill_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_swamp" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:mangrove_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skelewag_spawns.json b/config/alexsmobs/skelewag_spawns.json new file mode 100644 index 0000000..f553e2b --- /dev/null +++ b/config/alexsmobs/skelewag_spawns.json @@ -0,0 +1,21 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_deep_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skreecher.json b/config/alexsmobs/skreecher.json new file mode 100644 index 0000000..44cf6a4 --- /dev/null +++ b/config/alexsmobs/skreecher.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "alexsmobs:skreechers_can_spawn_wardens" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/skunk_spawns.json b/config/alexsmobs/skunk_spawns.json new file mode 100644 index 0000000..99f81d0 --- /dev/null +++ b/config/alexsmobs/skunk_spawns.json @@ -0,0 +1,108 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/snow_leopard_spawns.json b/config/alexsmobs/snow_leopard_spawns.json new file mode 100644 index 0000000..be98b18 --- /dev/null +++ b/config/alexsmobs/snow_leopard_spawns.json @@ -0,0 +1,98 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_snowy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:snowy_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:jagged_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:frozen_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:glacial_chasm" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_maple_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:emerald_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:scarlet_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/soul_vulture_spawns.json b/config/alexsmobs/soul_vulture_spawns.json new file mode 100644 index 0000000..e2d9657 --- /dev/null +++ b/config/alexsmobs/soul_vulture_spawns.json @@ -0,0 +1,30 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:soul_sand_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:warped_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:weeping_valley" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/spectre_spawns.json b/config/alexsmobs/spectre_spawns.json new file mode 100644 index 0000000..f806db3 --- /dev/null +++ b/config/alexsmobs/spectre_spawns.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_end" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:the_end" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/straddler_spawns.json b/config/alexsmobs/straddler_spawns.json new file mode 100644 index 0000000..3810c64 --- /dev/null +++ b/config/alexsmobs/straddler_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:basalt_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:withered_abyss" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:volcanic_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:withered_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/stradpole_spawns.json b/config/alexsmobs/stradpole_spawns.json new file mode 100644 index 0000000..3810c64 --- /dev/null +++ b/config/alexsmobs/stradpole_spawns.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:no_default_monsters" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:basalt_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:withered_abyss" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:volcanic_deltas" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:withered_forest" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/sugar_glider_spawns.json b/config/alexsmobs/sugar_glider_spawns.json new file mode 100644 index 0000000..0c36a53 --- /dev/null +++ b/config/alexsmobs/sugar_glider_spawns.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:birch_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:old_growth_birch_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/sunbird_spawns.json b/config/alexsmobs/sunbird_spawns.json new file mode 100644 index 0000000..181ee55 --- /dev/null +++ b/config/alexsmobs/sunbird_spawns.json @@ -0,0 +1,212 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:snowy_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:frozen_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:jagged_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:emerald_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:painted_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:scarlet_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:stony_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:volcanic_crater" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:volcanic_peaks" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_autumn" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_winter" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yellowstone" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:yosemite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:bryce_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:haze_mountain" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:windswept_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:basalt_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:granite_cliffs" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:white_cliffs" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tarantula_hawk_spawns.json b/config/alexsmobs/tarantula_hawk_spawns.json new file mode 100644 index 0000000..3df9011 --- /dev/null +++ b/config/alexsmobs/tarantula_hawk_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tasmanian_devil_spawns.json b/config/alexsmobs/tasmanian_devil_spawns.json new file mode 100644 index 0000000..14ab0be --- /dev/null +++ b/config/alexsmobs/tasmanian_devil_spawns.json @@ -0,0 +1,101 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:sparse_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:birch_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:blooming_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:lavender_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:moonlight_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:temperate_highlands" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/terrapin_spawns.json b/config/alexsmobs/terrapin_spawns.json new file mode 100644 index 0000000..6197e11 --- /dev/null +++ b/config/alexsmobs/terrapin_spawns.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_river" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_cold_overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:tundra_bog" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:warm_river" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tiger_spawns.json b/config/alexsmobs/tiger_spawns.json new file mode 100644 index 0000000..7ed2e68 --- /dev/null +++ b/config/alexsmobs/tiger_spawns.json @@ -0,0 +1,67 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:bamboo_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:cherry_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_grove" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sakura_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_spring" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/toucan_spawns.json b/config/alexsmobs/toucan_spawns.json new file mode 100644 index 0000000..0b0aceb --- /dev/null +++ b/config/alexsmobs/toucan_spawns.json @@ -0,0 +1,63 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:bamboo_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:amethyst_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:jungle_mountains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:tropical_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands_summer" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/triops_spawns.json b/config/alexsmobs/triops_spawns.json new file mode 100644 index 0000000..3df9011 --- /dev/null +++ b/config/alexsmobs/triops_spawns.json @@ -0,0 +1,68 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_dry_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_hot_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:sandstone_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:red_oasis" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/tusklin_spawns.json b/config/alexsmobs/tusklin_spawns.json new file mode 100644 index 0000000..b37b41b --- /dev/null +++ b/config/alexsmobs/tusklin_spawns.json @@ -0,0 +1,49 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:ice_spikes" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "c:is_plains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:snowy_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:gravel_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "biomesoplenty:snowblossom_grove" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/underminer.json b/config/alexsmobs/underminer.json new file mode 100644 index 0000000..fb63a33 --- /dev/null +++ b/config/alexsmobs/underminer.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "c:is_mushroom" + }, + { + "type": "REGISTRY_NAME", + "negate": true, + "value": "minecraft:deep_dark" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/andesite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/desert_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/diorite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/granite_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/ice_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/infested_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/thermal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/crystal_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/frostfire_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/mantle_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/deep_caves" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:cave/tuff_caves" + } + ] + ] +} \ No newline at end of file diff --git a/config/alexsmobs/void_worm_spawns.json b/config/alexsmobs/void_worm_spawns.json new file mode 100644 index 0000000..333b7b9 --- /dev/null +++ b/config/alexsmobs/void_worm_spawns.json @@ -0,0 +1,3 @@ +{ + "biomes": [] +} \ No newline at end of file diff --git a/config/alexsmobs/warped_mosco_spawns.json b/config/alexsmobs/warped_mosco_spawns.json new file mode 100644 index 0000000..333b7b9 --- /dev/null +++ b/config/alexsmobs/warped_mosco_spawns.json @@ -0,0 +1,3 @@ +{ + "biomes": [] +} \ No newline at end of file diff --git a/config/alexsmobs/warped_toad_spawns.json b/config/alexsmobs/warped_toad_spawns.json new file mode 100644 index 0000000..19fc787 --- /dev/null +++ b/config/alexsmobs/warped_toad_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warped_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crimson_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:warped_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:inverted_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "incendium:quartz_flats" + } + ] + ] +} \ No newline at end of file diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json new file mode 100644 index 0000000..dfc7782 --- /dev/null +++ b/config/ambientsounds-client.json @@ -0,0 +1,228 @@ +{ + "general": { + "engines": 0, + "volume": 1, + "useSoundMasterSource": false, + "scanStepAmount": 100, + "playSoundWithOffset": true + }, + "dimensions": { + "abyssalcraft": 1, + "betweenlands": 1, + "cave": 1, + "end": 1, + "galacticraft": 1, + "galacticraft.planets": 1, + "midnight": 1, + "nether": 1, + "surface": 1, + "twilightforest": 1, + "void": 1 + }, + "regions": { + "abyssalcraft_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "end_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "galacticraft_planets_wind": { + "overall": 1, + "wind.light-wind": 1 + }, + "nether_suspense": { + "overall": 1, + "nether": 1 + }, + "twilightforest_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "void_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "beach": { + "overall": 1, + "beach": 1, + "seagull": 1, + "seagull-long": 1 + }, + "cave_ambience": { + "overall": 1, + "cave": 1, + "cave-water": 1, + "cave-deep": 1, + "cave-large": 1 + }, + "cave_deep-dark": { + "overall": 1, + "deep-dark": 1, + "water-droplets": 1 + }, + "cave": { + "overall": 1 + }, + "cave_lush": { + "overall": 1, + "cave-lush": 1, + "frog": 1 + }, + "cold_artic": { + "overall": 1, + "heavy-wind": 1 + }, + "cold": { + "overall": 1, + "wind.light-wind": 1 + }, + "desert": { + "overall": 1, + "cicadas-desert": 1, + "wind.light-wind": 1 + }, + "forest_cold": { + "overall": 1, + "crow": 1 + }, + "forest": { + "overall": 1, + "bird-ambience": 1, + "owl": 1 + }, + "forest_roofed": { + "overall": 1, + "bird-ambience-spooky": 1 + }, + "grass": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "highland": { + "overall": 1, + "heavy-wind": 1, + "wind-in-leaves": 1 + }, + "jungle": { + "overall": 1, + "cricket-jungle": 1, + "cricket-jungle-night": 1, + "bird-ambience-jungle": 1, + "bird-ambience-jungle-night": 1 + }, + "mesa": { + "overall": 1, + "wind-mesa": 1 + }, + "mushroom_fields": { + "overall": 1, + "cicadas-mushroom-fields": 1, + "special-mushroom-fields": 1 + }, + "ocean": { + "overall": 1, + "ocean": 1, + "wind.light-wind": 1 + }, + "ocean_deep": { + "overall": 1, + "whale": 1 + }, + "pale-garden": { + "overall": 1, + "pale-garden-ambience": 1, + "owl": 1 + }, + "plains": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "rain": { + "overall": 1, + "rain": 1 + }, + "savanna": { + "overall": 1, + "cricket": 1, + "cicadas": 1, + "cicadas-desert": 1, + "cricket-warm-night": 1, + "wolf": 1, + "long-wolf": 1, + "bird-warm": 1 + }, + "sky": { + "overall": 1, + "wind.light-wind": 1 + }, + "space": { + "overall": 1 + }, + "storm_away": { + "overall": 1, + "storm-away": 1, + "howling-wind": 1 + }, + "storm_close": { + "overall": 1, + "storm-close": 1, + "wind": 1 + }, + "surface": { + "overall": 1 + }, + "swamp": { + "overall": 1, + "cricket-swamp": 1, + "cricket-warm-night": 1, + "frog": 1, + "mouring_dove": 1 + }, + "taiga": { + "overall": 1, + "bird-ambience-huge": 1 + }, + "underwater": { + "overall": 1, + "underwater": 1, + "underwater-deep": 1 + }, + "underworld": { + "overall": 1, + "underworld": 1 + }, + "warden": { + "overall": 1, + "warden": 1 + } + }, + "categories": { + "animal": { + "animal": 1, + "bird": { + "bird": 1, + "bird_day": 1, + "bird_night": 1 + }, + "cicadas": 1, + "cricket": { + "cricket": 1, + "cricket_day": 1, + "cricket_night": 1 + } + }, + "cave": 1, + "suspense": 1, + "weather": 1, + "wind": 1 + }, + "fade-volume": 0.005, + "fade-pitch": 0.005, + "silent-dimensions": [] +} \ No newline at end of file diff --git a/config/citadel-common.toml b/config/citadel-common.toml new file mode 100644 index 0000000..32aa809 --- /dev/null +++ b/config/citadel-common.toml @@ -0,0 +1,11 @@ +[general] + #True if citadel tracks entity properties(freezing, stone mobs, etc) on server. Turn this to false to solve some server lag, may break some stuff. + "Track Entities" = true + #True to skip warnings about using datapacks. + "Skip Datapack Warnings" = true + #Multiplies the count of entities spawned by this number. 0 = no entites added on chunk gen, 2 = twice as many entities added on chunk gen. Useful for many mods that add a lot of creatures, namely animals, to the spawn lists. + # Default: 1.0 + # Range: 0.0 ~ 100000.0 + chunkGenSpawnModifier = 1.0 + #True to if april fools content can display on april fools. + "April Fools Content" = true diff --git a/config/creativecore-client.json b/config/creativecore-client.json new file mode 100644 index 0000000..4aa593f --- /dev/null +++ b/config/creativecore-client.json @@ -0,0 +1,3 @@ +{ + "maxGuiScale": 10 +} \ No newline at end of file diff --git a/config/dynamictrees-common.toml b/config/dynamictrees-common.toml new file mode 100644 index 0000000..2e8430a --- /dev/null +++ b/config/dynamictrees-common.toml @@ -0,0 +1,21 @@ +[vanilla] + replaceVanillaSaplings = false + replaceNyliumFungi = true + cancelVanillaVillageTrees = true + # Default: 400 + # Range: 0 ~ 4096 + maxFallingTreeLeavesParticles = 400 + +[misc] + generateDirtBucketRecipes = true + generateMegaSeedRecipe = true + biocharBrewingBase = "minecraft:thick" + +[integration] + preferredSeasonMod = "*" + enableSeasonalSeedDropFactor = true + enableSeasonalGrowthFactor = true + enableSeasonalFruitProductionFactor = true + # Default: 2.5 + # Range: 0.0 ~ 4.0 + wetSeasonOffset = 2.5 diff --git a/config/dynamictreesplus-common.toml b/config/dynamictreesplus-common.toml new file mode 100644 index 0000000..6633310 --- /dev/null +++ b/config/dynamictreesplus-common.toml @@ -0,0 +1,6 @@ +#Mushroom Settings +[mushroom] + #Only relevant if 'replaceVanillaSapling' to be set to TRUE in Dynamic Trees common config. If enabled mushrooms will be replaced by their dynamic counterparts as soon as they are placed. + replaceMushroomSaplingOnPlacement = false + #Only relevant if 'replaceVanillaSapling' to be set to TRUE in Dynamic Trees common config. If enabled mushrooms will be replaced by their dynamic counterparts when they grow into a giant mushroom. + replaceMushroomSaplingOnGrowth = true diff --git a/config/everycomp-entries-1.toml.bak b/config/everycomp-entries-1.toml.bak new file mode 100644 index 0000000..8850083 --- /dev/null +++ b/config/everycomp-entries-1.toml.bak @@ -0,0 +1,311 @@ +#Disables certain types. Note that all these configs, like in any other mod, only hide stuff from tabs and disable their recipes +[types] + + [types.crystal_type.biomesoplenty] + rose_quartz = true + + [types.metal_type.cataclysm] + witherite = true + enderite = true + ignitium = true + ancient_metal = true + cursium = true + black_steel = true + + [types.metal_type.create] + zinc = true + brass = true + + [types.metal_type.aquaculture] + neptunium = true + + [types.stone_type.create] + limestone = true + asurine = true + crimsite = true + ochrum = true + veridium = true + scoria = true + scorchia = true + + [types.stone_type.biomesoplenty] + black_sandstone = true + orange_sandstone = true + white_sandstone = true + brimstone = true + + [types.stone_type.natures_spirit] + white_kaolin = true + light_gray_kaolin = true + gray_kaolin = true + black_kaolin = true + brown_kaolin = true + red_kaolin = true + orange_kaolin = true + yellow_kaolin = true + lime_kaolin = true + green_kaolin = true + cyan_kaolin = true + light_blue_kaolin = true + blue_kaolin = true + purple_kaolin = true + magenta_kaolin = true + pink_kaolin = true + pink_sandstone = true + white_chalk = true + light_gray_chalk = true + gray_chalk = true + black_chalk = true + brown_chalk = true + red_chalk = true + orange_chalk = true + yellow_chalk = true + lime_chalk = true + green_chalk = true + cyan_chalk = true + light_blue_chalk = true + blue_chalk = true + purple_chalk = true + magenta_chalk = true + pink_chalk = true + travertine = true + chert = true + kaolin = true + + [types.wood_type.cataclysm] + chorus = true + + [types.wood_type.biomesoplenty] + fir = true + pine = true + maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.wood_type.natures_spirit] + redwood = true + sugi = true + wisteria = true + fir = true + willow = true + aspen = true + maple = true + cypress = true + olive = true + joshua = true + ghaf = true + palo_verde = true + coconut = true + cedar = true + larch = true + mahogany = true + saxaul = true + + [types.leaves_type.biomesoplenty] + null = true + origin = true + flowering_oak = true + cypress = true + snowblossom = true + rainbow_birch = true + fir = true + pine = true + red_maple = true + orange_maple = true + yellow_maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.leaves_type.natures_spirit] + frosty_redwood = true + redwood = true + sugi = true + wisteria = true + white_wisteria = true + part_white_wisteria = true + blue_wisteria = true + part_blue_wisteria = true + pink_wisteria = true + part_pink_wisteria = true + purple_wisteria = true + part_purple_wisteria = true + frosty_fir = true + fir = true + willow = true + aspen = true + yellow_aspen = true + red_maple = true + orange_maple = true + yellow_maple = true + cypress = true + olive = true + joshua = true + ghaf = true + palo_verde = true + coconut = true + cedar = true + larch = true + mahogany = true + saxaul = true + + [types.leaves_type.dynamictrees] + spruce = true + oak_undergrowth = true + oak = true + mangrove = true + jungle_undergrowth = true + jungle = true + flowering_azalea = true + dark_oak = true + cherry = true + birch = true + azalea = true + acacia = true + + [types.leaves_type.dtnatures_spirit] + yellow_maple = true + wisteria = true + willow = true + white_wisteria = true + sugi = true + saxaul = true + red_maple = true + redwood = true + purple_wisteria = true + pink_wisteria = true + part_white_wisteria = true + part_purple_wisteria = true + part_pink_wisteria = true + part_blue_wisteria = true + palo_verde = true + orange_maple = true + olive = true + mahogany = true + larch = true + joshua = true + ghaf = true + frosty_redwood = true + frosty_fir = true + fir = true + cypress = true + coconut = true + cedar = true + blue_wisteria = true + aspen = true + + [types.leaves_type.dtbop] + yellow_maple = true + willow = true + umbran = true + spruce_undergrowth = true + spruce_twiglet = true + spruce_poplar = true + sparse_oak = true + sparse_acacia = true + snowblossom_twiglet = true + snowblossom = true + red_maple = true + redwood = true + rainbow_birch = true + poplar = true + pine = true + palm = true + orange_maple = true + oak_twiglet = true + mega_dark_oak = true + maple_twiglet = true + mangrove_twiglet = true + mahogany = true + magic_poplar = true + jungle_twiglet = true + jacaranda = true + hellbark_bush = true + hellbark = true + flowering_oak_undergrowth = true + flowering_oak = true + fir = true + dying = true + dark_poplar = true + dark_oak_twiglet = true + cypress_willow = true + cherry_twiglet = true + aspen = true + acacia_undergrowth = true + acacia_twiglet = true + +#Disables specific entries +[entries] + + [entries.metal_type.minecraft] + nugget = true + + [entries.metal_type.create] + table_cloth = true + tile_slab = true + door = true + ornate_window = true + ladder = true + sheet = true + ornate_window_pane = true + scaffolding = true + shingle_slab = true + shingle_stairs = true + tiles = true + shingles = true + tile_stairs = true + casing = true + + [entries.stone_type.create] + small_brick_wall = true + cut_wall = true + small_bricks = true + cut_brick_slab = true + polished_cut_slab = true + small_brick_stairs = true + cut_bricks = true + cut = true + polished_cut = true + small_brick_slab = true + layered = true + polished_cut_stairs = true + cut_brick_wall = true + pillar = true + cut_stairs = true + cut_brick_stairs = true + polished_cut_wall = true + cut_slab = true + + [entries.stone_type.waystones] + waystone = true + + [entries.wood_type.farmersdelight] + cabinet = true + + [entries.wood_type.storagedrawers] + full_drawers_2 = true + half_drawers_1 = true + full_drawers_4 = true + half_drawers_4 = true + trim = true + half_drawers_2 = true + full_drawers_1 = true + + [entries.wood_type.create] + window_pane = true + window = true diff --git a/config/everycomp-entries-2.toml.bak b/config/everycomp-entries-2.toml.bak new file mode 100644 index 0000000..8576d26 --- /dev/null +++ b/config/everycomp-entries-2.toml.bak @@ -0,0 +1,137 @@ +#Disables certain types. Note that all these configs, like in any other mod, only hide stuff from tabs and disable their recipes +[types] + + [types.crystal_type.biomesoplenty] + rose_quartz = true + + [types.metal_type.cataclysm] + witherite = true + enderite = true + ignitium = true + ancient_metal = true + cursium = true + black_steel = true + + [types.metal_type.create] + zinc = true + brass = true + + [types.metal_type.aquaculture] + neptunium = true + + [types.stone_type.create] + limestone = true + asurine = true + crimsite = true + ochrum = true + veridium = true + scoria = true + scorchia = true + + [types.stone_type.biomesoplenty] + black_sandstone = true + orange_sandstone = true + white_sandstone = true + brimstone = true + + [types.wood_type.cataclysm] + chorus = true + + [types.wood_type.biomesoplenty] + fir = true + pine = true + maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + + [types.leaves_type.biomesoplenty] + null = true + origin = true + flowering_oak = true + cypress = true + snowblossom = true + rainbow_birch = true + fir = true + pine = true + red_maple = true + orange_maple = true + yellow_maple = true + redwood = true + mahogany = true + jacaranda = true + palm = true + willow = true + dead = true + magic = true + umbran = true + hellbark = true + empyreal = true + +#Disables specific entries +[entries] + + [entries.metal_type.minecraft] + nugget = true + + [entries.metal_type.create] + table_cloth = true + tile_slab = true + door = true + ornate_window = true + ladder = true + sheet = true + ornate_window_pane = true + scaffolding = true + shingle_slab = true + shingle_stairs = true + tiles = true + shingles = true + tile_stairs = true + casing = true + + [entries.stone_type.create] + small_brick_wall = true + cut_wall = true + small_bricks = true + cut_brick_slab = true + polished_cut_slab = true + small_brick_stairs = true + cut_bricks = true + cut = true + polished_cut = true + small_brick_slab = true + layered = true + polished_cut_stairs = true + cut_brick_wall = true + pillar = true + cut_stairs = true + cut_brick_stairs = true + polished_cut_wall = true + cut_slab = true + + [entries.stone_type.waystones] + waystone = true + + [entries.wood_type.farmersdelight] + cabinet = true + + [entries.wood_type.storagedrawers] + full_drawers_2 = true + half_drawers_1 = true + full_drawers_4 = true + half_drawers_4 = true + trim = true + half_drawers_2 = true + full_drawers_1 = true + + [entries.wood_type.create] + window_pane = true + window = true diff --git a/config/everycomp-entries.toml b/config/everycomp-entries.toml index 8576d26..57ed2a9 100644 --- a/config/everycomp-entries.toml +++ b/config/everycomp-entries.toml @@ -34,6 +34,52 @@ white_sandstone = true brimstone = true + [types.stone_type.natures_spirit] + white_kaolin = true + light_gray_kaolin = true + gray_kaolin = true + black_kaolin = true + brown_kaolin = true + red_kaolin = true + orange_kaolin = true + yellow_kaolin = true + lime_kaolin = true + green_kaolin = true + cyan_kaolin = true + light_blue_kaolin = true + blue_kaolin = true + purple_kaolin = true + magenta_kaolin = true + pink_kaolin = true + pink_sandstone = true + white_chalk = true + light_gray_chalk = true + gray_chalk = true + black_chalk = true + brown_chalk = true + red_chalk = true + orange_chalk = true + yellow_chalk = true + lime_chalk = true + green_chalk = true + cyan_chalk = true + light_blue_chalk = true + blue_chalk = true + purple_chalk = true + magenta_chalk = true + pink_chalk = true + travertine = true + chert = true + kaolin = true + + [types.stone_type.quark] + soul_sandstone = true + limestone = true + jasper = true + shale = true + myalite = true + permafrost = true + [types.wood_type.cataclysm] chorus = true @@ -52,6 +98,30 @@ hellbark = true empyreal = true + [types.wood_type.natures_spirit] + redwood = true + sugi = true + wisteria = true + fir = true + willow = true + aspen = true + maple = true + cypress = true + olive = true + joshua = true + ghaf = true + palo_verde = true + coconut = true + cedar = true + larch = true + mahogany = true + saxaul = true + + [types.wood_type.quark] + azalea = true + ancient = true + blossom = true + [types.leaves_type.biomesoplenty] null = true origin = true @@ -75,6 +145,131 @@ hellbark = true empyreal = true + [types.leaves_type.natures_spirit] + frosty_redwood = true + redwood = true + sugi = true + wisteria = true + white_wisteria = true + part_white_wisteria = true + blue_wisteria = true + part_blue_wisteria = true + pink_wisteria = true + part_pink_wisteria = true + purple_wisteria = true + part_purple_wisteria = true + frosty_fir = true + fir = true + willow = true + aspen = true + yellow_aspen = true + red_maple = true + orange_maple = true + yellow_maple = true + cypress = true + olive = true + joshua = true + ghaf = true + palo_verde = true + coconut = true + cedar = true + larch = true + mahogany = true + saxaul = true + + [types.leaves_type.dynamictrees] + spruce = true + oak_undergrowth = true + oak = true + mangrove = true + jungle_undergrowth = true + jungle = true + flowering_azalea = true + dark_oak = true + cherry = true + birch = true + azalea = true + acacia = true + + [types.leaves_type.dtnatures_spirit] + yellow_maple = true + wisteria = true + willow = true + white_wisteria = true + sugi = true + saxaul = true + red_maple = true + redwood = true + purple_wisteria = true + pink_wisteria = true + part_white_wisteria = true + part_purple_wisteria = true + part_pink_wisteria = true + part_blue_wisteria = true + palo_verde = true + orange_maple = true + olive = true + mahogany = true + larch = true + joshua = true + ghaf = true + frosty_redwood = true + frosty_fir = true + fir = true + cypress = true + coconut = true + cedar = true + blue_wisteria = true + aspen = true + + [types.leaves_type.dtbop] + yellow_maple = true + willow = true + umbran = true + spruce_undergrowth = true + spruce_twiglet = true + spruce_poplar = true + sparse_oak = true + sparse_acacia = true + snowblossom_twiglet = true + snowblossom = true + red_maple = true + redwood = true + rainbow_birch = true + poplar = true + pine = true + palm = true + orange_maple = true + oak_twiglet = true + mega_dark_oak = true + maple_twiglet = true + mangrove_twiglet = true + mahogany = true + magic_poplar = true + jungle_twiglet = true + jacaranda = true + hellbark_bush = true + hellbark = true + flowering_oak_undergrowth = true + flowering_oak = true + fir = true + dying = true + dark_poplar = true + dark_oak_twiglet = true + cypress_willow = true + cherry_twiglet = true + aspen = true + acacia_undergrowth = true + acacia_twiglet = true + + [types.leaves_type.quark] + ancient = true + blue_blossom = true + lavender_blossom = true + orange_blossom = true + yellow_blossom = true + red_blossom = true + #Disables specific entries [entries] @@ -120,6 +315,11 @@ [entries.stone_type.waystones] waystone = true + [entries.stone_type.quark] + polished_vertical_slab = true + pillar = true + vertical_slab = true + [entries.wood_type.farmersdelight] cabinet = true @@ -135,3 +335,23 @@ [entries.wood_type.create] window_pane = true window = true + + [entries.wood_type.quark] + vertical_planks = true + post = true + trapped_chest = true + bookshelf = true + chest = true + stripped_post = true + ladder = true + hollow_log = true + vertical_slab = true + + [entries.mud_type.quark] + carved_bricks = true + pillar = true + brick_lattice = true + + [entries.leaves_type.quark] + hedge = true + leaf_carpet = true diff --git a/config/fzzy_config/keybinds.toml b/config/fzzy_config/keybinds.toml new file mode 100644 index 0000000..f7de10a --- /dev/null +++ b/config/fzzy_config/keybinds.toml @@ -0,0 +1,236 @@ +# Don't change this! Version used to track needed updates. +version = 1 + +# Scrolls up a 'page' in the Config GUI + +[pageUp] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "page.up" + +# Scrolls down a 'page' in the Config GUI + +[pageDown] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "page.down" + +# Scrolls to the top of the Config GUI + +[home] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "home" + +# Scrolls to the bottom of the Config GUI + +[end] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "end" + +# Copies the currently hovered or focused config setting + +[copy] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "c" + +# Pastes the last-copied setting into a compatible new setting + +[paste] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "v" + +# Not currently used by Fzzy Config - cuts the selected information to a copy buffer + +[cut] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "x" + +# Saves changes made to the current Config and sends updates to the server + +[save] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "s" + +# Undos changes made from newest to oldest change + +[undo] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "z" + +# Opens the context menu for the currently hovered or selected element + +[contextMouse] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "mouse" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "mouse.right" + +# Backs out to the previous config screen + +[back] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "backspace" + +# Opens the 'Go-To' menu (Not used to focus the search bar) + +[search] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "e" + +# Opens the GUI info menu + +[info] +ctrl = "default" +shift = "default" +alt = "default" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f1" + +# Fully exits all open config GUIs (and saves them as applicable) + +[fullExit] +ctrl = "false" +shift = "true" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "escape" + +# Focuses the Config GUI search bar + +[[find]] +ctrl = "true" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f" + +[[find]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f3" + +# Opens the context menu for the currently hovered or selected element + +[[contextKeyboard]] +ctrl = "false" +shift = "true" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "f10" + +[[contextKeyboard]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "menu" + +# Not currently used by Fzzy Config - A universal 'Enter' keybind + +[[act]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "enter" + +[[act]] +ctrl = "false" +shift = "false" +alt = "false" +# 'keyboard' or 'mouse' +type = "keyboard" +# String representation of the key, or the integer keycode +# Convert minecraft names: 'key.keyboard.pause' -> 'pause' or 'key.mouse.right' -> 'mouse.right'. +key = "keypad.enter" \ No newline at end of file diff --git a/config/idas-neoforge-1_21.toml b/config/idas-neoforge-1_21.toml new file mode 100644 index 0000000..9ab6760 --- /dev/null +++ b/config/idas-neoforge-1_21.toml @@ -0,0 +1,16 @@ + ########################################################################################################### + ## General settings. + ########################################################################################################### + [IDAS.General] + # Whether or not the vanilla Desert Pyramid should be disabled. + # Default: true + # + "Disable Vanilla Desert Pyramid" = true + # Whether or not Ice and Fire structures should be disabled. + # Default: true + # + "Disable Ice and Fire Structures" = true + # Whether or not mining fatigue is applied to players in the Labyrinth if it has not yet been cleared. + # Default: true + # + "Apply Mining Fatigue" = true diff --git a/config/integrated_villages-neoforge-1_21.toml b/config/integrated_villages-neoforge-1_21.toml new file mode 100644 index 0000000..89ef54d --- /dev/null +++ b/config/integrated_villages-neoforge-1_21.toml @@ -0,0 +1,12 @@ + ########################################################################################################### + ## General settings. + ########################################################################################################### + ["Integrated Villages".General] + # Whether or not vanilla villages should be disabled. + # Default: true + # + "Disable Vanilla Villages" = true + # Whether or not create contraptions such as windmills will be activated on world generation. Turning this to false could prevent some lag. + # Default: true + # + "Activate Create Contraptions" = true diff --git a/config/jade/plugins.json b/config/jade/plugins.json index 4bd17e6..531d735 100644 --- a/config/jade/plugins.json +++ b/config/jade/plugins.json @@ -62,6 +62,13 @@ "supplementaries": { "hat_stand": true }, + "dynamictrees": { + "rooty_water": true, + "pod": true, + "fruit": true, + "rooty": true, + "branch": true + }, "jade": { "coordinates.rel": false, "registry_name.special": false, diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json index db95a93..8a77ed6 100644 --- a/config/jade/sort-order.json +++ b/config/jade/sort-order.json @@ -1,5 +1,10 @@ { "balm:jade": null, + "dynamictrees:branch": null, + "dynamictrees:fruit": null, + "dynamictrees:pod": null, + "dynamictrees:rooty": null, + "dynamictrees:rooty_water": null, "jade:block_face": null, "jade:block_properties": null, "jade:block_states": null, diff --git a/config/natures_spirit-common.toml b/config/natures_spirit-common.toml new file mode 100644 index 0000000..520aaca --- /dev/null +++ b/config/natures_spirit-common.toml @@ -0,0 +1,88 @@ +[region] + # Default: 4 + # Range: > 0 + terra_ferax_weight = 4 + # Default: 4 + # Range: > 0 + terra_solaris_weight = 4 + # Default: 4 + # Range: > 0 + terra_flava_weight = 4 + # Default: 4 + # Range: > 0 + terra_laeta_weight = 4 + # Default: 4 + # Range: > 0 + terra_mater_weight = 4 + +[misc] + calcite_generator = true + deepslate_generator = true + creative_tab = true + sugi_and_stratified_pillars = true + +[datapack] + vanilla_trees_toggle = false + birch_forest_toggle = true + flower_forest_toggle = true + jungle_toggle = true + swamp_toggle = true + desert_toggle = true + badlands_toggle = true + mountain_biomes_toggle = true + savanna_toggle = true + dark_forest_toggle = true + windswept_hills_toggle = true + +[biome] + has_sugi_forest = true + has_windswept_sugi_forest = true + has_blooming_sugi_forest = true + has_lavender_fields = true + has_marsh = true + has_bamboo_wetlands = true + has_wisteria_forest = true + has_redwood_forest = true + has_snowy_redwood_forest = true + has_aspen_forest = true + has_maple_woodlands = true + has_golden_wilds = true + has_marigold_meadows = true + has_fir_forest = true + has_snowy_fir_forest = true + has_cypress_fields = true + has_cedar_thicket = true + has_carnation_fields = true + has_stratified_desert = true + has_blooming_dunes = true + has_lively_dunes = true + has_drylands = true + has_wooded_drylands = true + has_xeric_plains = true + has_white_cliffs = true + has_prairie = true + has_oak_savanna = true + has_heather_fields = true + has_tundra = true + has_alpine_clearings = true + has_alpine_highlands = true + has_coniferous_covert = true + has_boreal_taiga = true + has_tropical_shores = true + has_tropical_woods = true + has_sparse_tropical_woods = true + has_tropical_basin = true + has_arid_savanna = true + has_scorched_dunes = true + has_flowering_shrubland = true + has_shrubland = true + has_arid_highlands = true + has_shrubby_highlands = true + has_woody_highlands = true + has_red_peaks = true + has_dusty_slopes = true + has_snowcapped_red_peaks = true + has_sleeted_slopes = true + has_blooming_highlands = true + has_chaparral = true + has_floral_ridges = true diff --git a/config/quark-common-1.toml.bak b/config/quark-common-1.toml.bak new file mode 100644 index 0000000..2bddd67 --- /dev/null +++ b/config/quark-common-1.toml.bak @@ -0,0 +1,7 @@ +[tweaks] + "Double Door Opening" = false + + [tweaks.double_door_opening] + "Enable Doors" = false + "Enable Fence Gates" = false + "Ignore Anti Overlap" = false diff --git a/config/quark-common.toml b/config/quark-common.toml new file mode 100644 index 0000000..69a701b --- /dev/null +++ b/config/quark-common.toml @@ -0,0 +1,1907 @@ +[tweaks] + "Double Door Opening" = false + "Armed Armor Stands" = true + "Automatic Recipe Unlock" = true + "Better Elytra Rocket" = true + "Campfires Boost Elytra" = true + "Compasses Work Everywhere" = true + "Coral On Cactus" = true + "Diamond Repair" = true + "Dragon Scales" = true + "Dyeable Item Frames" = true + Emotes = true + "Enhanced Ladders" = true + "Glass Shard" = true + "Gold Tools Have Fortune" = true + "Grab Chickens" = true + "Hoe Harvesting" = true + "Horses Swim" = true + "Improved Sponges" = true + "Lock Rotation" = true + "Magma Keeps Concrete Powder" = true + "Map Washing" = true + "More Banner Layers" = true + "More Note Block Sounds" = true + "More Villagers" = true + "No Durability On Cosmetics" = true + "Pat The Dogs" = true + "Petals On Water" = true + "Pig Litters" = true + "Poison Potato Usage" = true + "Reacharound Placing" = true + "Renewable Spore Blossoms" = true + "Replace Scaffolding" = true + "Safer Creatures" = true + "Shulker Packing" = true + "Simple Harvest" = true + "Slabs To Blocks" = true + "Slimes To Magma Cubes" = true + "Snow Golem Player Heads" = true + "Utility Recipes" = true + "Vexes Die With Their Masters" = true + "Villagers Follow Emeralds" = true + "Zombie Villagers On Normal" = true + + [tweaks.double_door_opening] + "Enable Doors" = false + "Enable Fence Gates" = false + #This feature disables itself if any of the following mods are loaded: + # - utilitix + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.automatic_recipe_unlock] + #A list of recipe names that should NOT be added in by default + "Ignored Recipes" = [] + "Force Limited Crafting" = false + "Disable Recipe Book" = false + #If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join. + "Filter Recipe Advancements" = true + #This feature disables itself if any of the following mods are loaded: + # - nerb + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.campfires_boost_elytra] + "Boost Strength" = 0.5 + "Max Speed" = 1.0 + + [tweaks.compasses_work_everywhere] + "Enable Compass Nerf" = true + "Enable Clock Nerf" = true + "Enable Nether" = true + "Enable End" = true + + [tweaks.diamond_repair] + #List of changes to apply to repair items, format is "=" as seen in the defualt. + #Multiple repair items can be applied for the same base item, and as long as at least one is provided, any vanilla option will be removed. + #To use multiple items, comma separate them (e.g. "minecraft:diamond_sword=minecraft:diamond,minecraft:emerald")If you want the vanilla option back, you must add it again manually. + "Repair Item Changes" = ["minecraft:netherite_sword=minecraft:diamond", "minecraft:netherite_pickaxe=minecraft:diamond", "minecraft:netherite_axe=minecraft:diamond", "minecraft:netherite_shovel=minecraft:diamond", "minecraft:netherite_hoe=minecraft:diamond", "minecraft:netherite_helmet=minecraft:diamond", "minecraft:netherite_chestplate=minecraft:diamond", "minecraft:netherite_leggings=minecraft:diamond", "minecraft:netherite_boots=minecraft:diamond"] + "Unrepairable Items" = [] + "Enable Jei Hints" = true + + [tweaks.emotes] + #The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it. + "Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"] + #The list of Custom Emotes to be loaded. + #Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ + "Custom Emotes" = [] + #Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly. + #DO NOT ship enabled this in a modpack, please. + "Custom Emote Debug" = false + "Button Shift X" = 0 + "Button Shift Y" = 0 + + [tweaks.enhanced_ladders] + #Allowed values: (,0] + "Fall Speed" = -0.2 + "Allow Freestanding" = true + "Allow Dropping Down" = true + "Allow Sliding" = true + "Allow Inventory Sneak" = true + + [tweaks.gold_tools_have_fortune] + #Allowed values: [0,) + "Fortune Level" = 2 + #Allowed values: [0,4] + "Harvest Level" = 2 + "Display Baked Enchantments In Tooltip" = true + "Italic Tooltip" = true + #Enchantments other than Gold's Fortune/Looting to bake into items. Format is "item+enchant@level", such as "minecraft:stick+minecraft:sharpness@10". + "Item Enchantments" = [] + + [tweaks.grab_chickens] + "Needs No Helmet" = true + #Set to 0 to disable + "Slowness Level" = 1 + #Negative numbers moves the chicken down, positive up + #Allowed values: [-1,1] + "Chicken Offset" = 0.0 + + [tweaks.hoe_harvesting] + #Allowed values: [1,5] + "Regular Hoe Radius" = 2 + #Allowed values: [1,5] + "High Tier Hoe Radius" = 3 + + [tweaks.improved_sponges] + #The maximum number of water tiles that a sponge can soak up. Vanilla default is 64. + #Allowed values: [64,) + "Maximum Water Drain" = 256 + #The maximum number of water tiles that a sponge can 'crawl along' for draining. Vanilla default is 6. + #Allowed values: [6,) + "Maximum Crawl Distance" = 10 + "Enable Placing On Water" = true + + [tweaks.lock_rotation] + #When true, lock rotation indicator in the same style as crosshair + "Render Like Cross Hair" = true + + [tweaks.map_washing] + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.more_banner_layers] + #Allowed values: [1,16] + "Layer Limit" = 16 + + [tweaks.more_note_block_sounds] + "Enable Amethyst Sound" = true + + [tweaks.more_villagers] + "Ocean Villager" = true + "Beach Villager" = true + + [tweaks.no_durability_on_cosmetics] + #Allow applying cosmetic items such as color runes with no anvil durability usage? Cosmetic items are defined in the quark:cosmetic_anvil_items tag + "Allow Cosmetic Items" = true + + [tweaks.pat_the_dogs] + #How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable + "Dogs Want Love" = -1 + #Whether you can pet all mobs + "Pet All Mobs" = false + #If `petAllMobs` is set, these mobs still can't be pet + "Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"] + #Even if `petAllMobs` is not set, these mobs can be pet + "Pettable Allowlist" = [] + + [tweaks.pig_litters] + #Allowed values: [1,) + "Min Pig Litter Size" = 2 + #Allowed values: [1,) + "Max Pig Litter Size" = 3 + "Pigs Eat Golden Carrots" = true + #Allowed values: [0,) + "Min Golden Carrot Boost" = 0 + #Allowed values: [0,) + "Max Golden Carrot Boost" = 2 + + [tweaks.poison_potato_usage] + Chance = 0.1 + "Poison Effect" = true + + [tweaks.reacharound_placing] + #Allowed values: [0,1] + Leniency = 0.5 + Whitelist = [] + Blacklist = [] + + [tweaks.renewable_spore_blossoms] + "Bone Meal Chance" = 0.2 + + [tweaks.replace_scaffolding] + #How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects. + "Max Bounces" = 1 + + [tweaks.safer_creatures] + #How many blocks should be subtracted from the rabbit fall height when calculating fall damage. 5 is the same value as vanilla frogs + "Height Reduction" = 5.0 + "Enable Slime Fall Damage Removal" = true + + [tweaks.simple_harvest] + #Can players harvest crops with empty hand clicks? + "Empty Hand Harvest" = true + #Does harvesting crops with a hoe cost durability? + "Harvesting Costs Durability" = false + #Should Quark look for(nonvanilla) crops, and handle them? + "Do Harvesting Search" = true + #Should villagers use simple harvest instead of breaking crops? + "Villagers Use Simple Harvest" = true + #Which crops can be harvested? + #Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]" + "Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"] + #Which blocks should right click harvesting simulate a click on instead of breaking? + #This is for blocks like sweet berry bushes, which have right click harvesting built in. + "Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"] + + [tweaks.utility_recipes] + #Can other stone-like materials be used for crafting stone tools? + "Better Stone Tool Crafting" = true + #Can a dispenser be crafted by adding a bow to a dropper? + "Enable Dispenser" = true + #Can a repeater be crafted with the pattern for a redstone torch? + "Enable Repeater" = true + #Can you craft a minecart around blocks which can be placed inside? + "Enable Minecarts" = true + #Can you craft a boat around a chest to directly make a chest boat? + "Enable Chest Boats" = true + #Can you craft four chests at once using logs? + "Logs To Chests" = true + #Can Coral be crafted into dye? + "Coral To Dye" = true + #Can cookies, paper, and bread be crafted in a 2x2 crafting table? + "Bent Recipes" = true + #Can Rotten Flesh and Poisonous Potatoes be composted? + "Compostable Toxins" = true + #Does Dragon Breath return a bottle when used as a reagent or material? + "Effective Dragon Breath" = true + #Can torches be used as fuel in furnaces? + "Torches Burn" = true + #Can bones be smelted down to bone meal? + "Bone Meal Utility" = true + #Can Charcoal be crafted into Black Dye? + "Charcoal To Black Dye" = true + #Can two Logs be used instead of a Chest to make a Hopper? + "Easy Hopper" = true + #Can two Logs be used to craft 16 sticks? + "Easy Sticks" = true + #Can raw ore blocks be smelted, taking 9x the time a normal item? + "Smelt Raw Ore Blocks" = true + +[general] + "Enable 'q' Button" = true + "'q' Button on the Right" = false + "Disable Q Menu Effects" = false + #How many advancements deep you can see in the advancement screen. Vanilla is 2. + #Allowed values: (0,) + "Advancement Visibility Depth" = 2 + #Blocks that Quark should treat as Shulker Boxes. + "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] + #Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box? + "Interpret Shulker Box Like Blocks" = true + #Set to true if you need to find the class name for a screen that's causing problems + "Print Screen Classnames" = false + #A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. + "Allowed Screens" = [] + #If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this. + "Use Screen List Blacklist" = false + #Set to false to disable the popup message telling you that you can config quark in the q menu + "Enable Onboarding" = true + #The amount of slots the chest button system should seek when trying to figure out if a container should be eligible for them. + "Chest Button Slot Target" = 27 + #Set this to false to not show the Quark Programmer Art resource pack in the resource pack selection screen + "Generate Programmer Art" = true + #Set this to false to prevent Quark from ever disabling any vanilla data files. This will break certain modules, so only do this if you know what you're doing! + "Quark V D O" = true + + [general.chest_button_offsets] + "Player X" = 0 + "Player Y" = 0 + "Top X" = 0 + "Top Y" = 0 + "Middle X" = 0 + "Middle Y" = 0 + +[categories] + automation = true + building = true + management = true + tools = true + tweaks = true + world = true + mobs = true + client = true + experimental = true + oddities = true + +[automation] + "Chains Connect Blocks" = true + Chute = true + "Dispensers Place Blocks" = true + "Ender Watcher" = true + "Feeding Trough" = true + Gravisand = true + "Iron Rod" = true + "Metal Buttons" = true + "Obsidian Plate" = true + "Pistons Move Tile Entities" = true + "Redstone Randomizer" = true + + [automation.dispensers_place_blocks] + Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"] + #Set to false to refrain from registering any behaviors for blocks that have optional dispense behaviors already set. + #An optional behavior is one that will defer to the generic dispense item behavior if its condition fails. + #e.g. the Shulker Box behavior is optional, because it'll throw out the item if it fails, whereas TNT is not optional. + #If true, it'll attempt to use the previous behavior before trying to place the block in the world. + #Requires a game restart to re-apply. + "Wrap Existing Behaviors" = true + + [automation.feeding_trough] + #How long, in game ticks, between animals being able to eat from the trough + #Allowed values: [1,) + Cooldown = 30 + #The maximum amount of animals allowed around the trough's range for an animal to enter love mode + "Max Animals" = 32 + #The chance (between 0 and 1) for an animal to enter love mode when eating from the trough + #Allowed values: (0,1] + "Love Chance" = 0.333333333 + Range = 10.0 + #Chance that an animal decides to look for a trough. Closer it is to 1 the more performance it will take. Decreasing will make animals take longer to find one + "Look Chance" = 0.015 + + [automation.iron_rod] + "Use Pre End Recipe" = false + + [automation.metal_buttons] + "Enable Iron" = true + "Enable Gold" = true + + [automation.pistons_move_tile_entities] + "Enable Chests Moving Together" = true + "Render Blacklist" = ["psi:programmer", "botania:starfield"] + "Movement Blacklist" = ["minecraft:spawner", "minecraft:trial_spawner", "minecraft:vault", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "#minecraft:ceiling_hanging_signs", "#c:chests/trapped", "endergetic:bolloom_bud"] + "Namespace Movement Blacklist" = [] + "Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"] + +[building] + "Celebratory Lamps" = true + "Compressed Blocks" = true + "Duskbound Blocks" = true + "Framed Glass" = true + "Glass Item Frame" = true + "Gold Bars" = true + Grate = true + Hedges = true + "Hollow Logs" = true + "Industrial Palette" = true + "Japanese Palette" = true + "Leaf Carpet" = true + Midori = true + "More Brick Types" = true + "More Mud Blocks" = true + "More Potted Plants" = true + "Nether Brick Fence Gate" = true + "Rainbow Lamps" = true + "Raw Metal Bricks" = true + Rope = true + "Shear Vines" = true + Shingles = true + "Soul Sandstone" = true + Stools = true + "Sturdy Stone" = true + Thatch = true + "Variant Bookshelves" = true + "Variant Chests" = true + "Variant Furnaces" = true + "Variant Ladders" = true + "Vertical Planks" = true + "Vertical Slabs" = true + "Wooden Posts" = true + "More Stone Variants" = true + + [building.celebratory_lamps] + "Light Level" = 15 + + [building.compressed_blocks] + "Charcoal Block and Blaze Lantern Stay On Fire Forever" = true + #Allowed values: [0,) + "Charcoal Block Fuel Time" = 16000 + #Allowed values: [0,) + "Blaze Lantern Fuel Time" = 24000 + #Allowed values: [0,) + "Stick Block Fuel Time" = 900 + "Enable Charcoal Block" = true + "Enable Sugar Cane Block" = true + "Enable Cactus Block" = true + "Enable Chorus Fruit Block" = true + "Enable Stick Block" = true + "Enable Apple Crate" = true + "Enable Golden Apple Crate" = true + "Enable Potato Crate" = true + "Enable Carrot Crate" = true + "Enable Golden Carrot Crate" = true + "Enable Beetroot Crate" = true + "Enable Cocoa Bean Sack" = true + "Enable Nether Wart Sack" = true + "Enable Gunpowder Sack" = true + "Enable Berry Sack" = true + "Enable Glow Berry Sack" = true + "Enable Blaze Lantern" = true + "Enable Bonded Leather" = true + "Enable Bonded Rabbit Hide" = true + + [building.glass_item_frame] + "Glass Item Frames Update Maps" = true + #Set to true for faster map updates. Default is every 3s + "Glass Item Frames Update Maps Every Tick" = false + #The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0 + "Item Render Scale" = 1.5 + + [building.gold_bars] + "Generate In Nether Fortress" = true + + [building.hollow_logs] + "Enable Auto Crawl" = true + + [building.industrial_palette] + "Enable Iron Plates" = true + "Enable Iron Ladder" = true + + [building.japanese_palette] + "Enable Paper Blocks" = true + "Enable Bamboo Mats" = true + + [building.leaf_carpet] + #This feature disables itself if any of the following mods are loaded: + # - immersive_weathering + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.more_brick_types] + #This also comes with a utility recipe for Red Nether Bricks + "Enable Blue Nether Bricks" = true + #This also includes Red Sandstone Bricks and Soul Sandstone Bricks + "Enable Sandstone Bricks" = true + #This also includes Mossy Cobblestone Bricks + "Enable Cobblestone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Blackstone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Dirt Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Netherrack Bricks" = true + + [building.rainbow_lamps] + "Light Level" = 15 + #Whether Rainbow Lamps should be made from and themed on Corundum if that module is enabled. + "Use Corundum" = true + + [building.rope] + #Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled. + #Note that ropes will still use the same blacklist. + "Force Enable Move Tile Entities" = false + "Enable Dispenser Behavior" = true + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.thatch] + #Allowed values: [0,1] + "Fall Damage Multiplier" = 0.5 + #This feature disables itself if any of the following mods are loaded: + # - environmental + # - goated + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_bookshelves] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - carved_wood + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_chests] + "Enable Reverting Wooden Chests" = true + "Replace Worldgen Chests" = true + #Chests to put in structures. It's preferred to use worldgen tags for this. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block. + "Structure Chests" = [] + #This feature disables itself if any of the following mods are loaded: + # - carved_wood + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_ladders] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - carved_wood + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.vertical_slabs] + #Should Walls and Panes attempt to connect to the side of Vertical Slabs? + "Allow Side Connections" = true + + [building.more_stone_variants] + "Enable Bricks" = true + "Enable Chiseled Bricks" = true + "Enable Pillar" = true + +[management] + "Automatic Tool Restock" = true + "Easy Transferring" = true + "Expanded Item Interactions" = true + "Hotbar Changer" = true + "Inventory Sorting" = true + "Item Sharing" = true + "Quick Armor Swapping" = true + + [management.automatic_tool_restock] + #Enchantments deemed important enough to have special priority when finding a replacement + "Important Enchantments" = ["minecraft:silk_touch", "minecraft:fortune", "minecraft:infinity", "minecraft:luck_of_the_sea", "minecraft:looting"] + #Enable replacing your tools with tools of the same type but not the same item + "Enable Loose Matching" = true + #Enable comparing enchantments to find a replacement + "Enable Enchant Matching" = true + #Allow pulling items from one hotbar slot to another + "Check Hotbar" = false + "Unstackables Only" = false + #Any items you place in this list will be ignored by the restock feature + "Ignored Items" = ["botania:exchange_rod", "botania:dirt_rod", "botania:skydirt_rod", "botania:cobble_rod"] + #This feature disables itself if any of the following mods are loaded: + # - inventorytweaks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [management.easy_transferring] + "Enable Shift Lock" = true + + [management.expanded_item_interactions] + "Enable Armor Interaction" = true + "Enable Shulker Box Interaction" = true + "Enable Lava Interaction" = true + "Allow Opening Shulker Boxes" = true + "Allow Rotating Bundles" = true + + [management.hotbar_changer] + "Animation Time" = 7.0 + + [management.inventory_sorting] + "Enable Player Inventory" = true + "Enable Player Inventory In Chests" = true + "Enable Chests" = true + #Play a click when sorting inventories using keybindings + "Satisfying Click" = true + + [management.item_sharing] + #In ticks. + #Allowed values: [0,) + Cooldown = 100 + "Render Items In Chat" = true + + [management.quick_armor_swapping] + "Swap Off Hand" = true + +[tools] + Abacus = true + "Ambient Discs" = true + "Ancient Tomes" = true + "Beacon Redirection" = true + "Bottled Cloud" = true + "Color Runes" = true + "Endermosh Music Disc" = true + "Parrot Eggs" = true + "Pathfinder Maps" = true + Pickarang = true + "Seed Pouch" = true + "Skull Pikes" = true + "Slime In A Bucket" = true + "Torch Arrow" = true + Trowel = true + + [tools.abacus.highlight_color] + A = 0.4 + R = 0.0 + G = 0.0 + B = 0.0 + + [tools.ambient_discs] + "Drop On Spider Kill" = true + Volume = 3.0 + + [tools.ancient_tomes] + #Format is lootTable,weight. i.e. "minecraft:chests/stronghold_library,30" + "Loot Tables" = ["minecraft:chests/stronghold_library,20", "minecraft:chests/simple_dungeon,20", "minecraft:chests/bastion_treasure,25", "minecraft:chests/woodland_mansion,15", "minecraft:chests/nether_bridge,0", "minecraft:chests/underwater_ruin_big,0", "minecraft:chests/underwater_ruin_small,0", "minecraft:chests/ancient_city,4", "quark:misc/monster_box,5"] + "Item Quality" = 2 + "Normal Upgrade Cost" = 10 + "Limit Break Upgrade Extra Cost" = 20 + "Max Limit Break Levels" = 1 + "Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping_edge", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing", "minecraft:density", "minecraft:breach", "minecraft:wind_burst"] + "Overleveled Books Glow Rainbow" = true + #When enabled, Efficiency VI Diamond and Netherite pickaxes can instamine Deepslate when under Haste 2 + "Deepslate Tweak" = true + "Deepslate Tweak Needs Haste2" = true + #Master Librarians will offer to exchange Ancient Tomes, provided you give them a max-level Enchanted Book of the Tome's enchantment too. + "Librarians Exchange Ancient Tomes" = true + #Applying a tome will also randomly curse your item + "Curse Gear" = false + #Allows combining tomes with normal books + "Combine With Books" = true + #Whether a sanity check is performed on the valid enchantments. If this is turned off, enchantments such as Silk Touch will be allowed to generate Ancient Tomes, if explicitly added to the Valid Enchantments. + "Sanity Check" = true + + [tools.beacon_redirection] + "Horizontal Move Limit" = 64 + "Allow Tinted Glass Transparency" = true + + [tools.bottled_cloud] + "Cloud Level Bottom" = 191 + "Cloud Level Top" = 196 + + [tools.color_runes] + "Dungeon Weight" = 10 + "Nether Fortress Weight" = 8 + "Jungle Temple Weight" = 8 + "Desert Temple Weight" = 8 + "Item Quality" = 0 + + [tools.endermosh_music_disc] + "Play Endermosh During Enderdragon Fight" = false + "Add To End City Loot" = true + "Loot Weight" = 5 + "Loot Quality" = 1 + + [tools.parrot_eggs] + #The chance feeding a parrot will produce an egg + Chance = 0.05 + #How long it takes to create an egg + "Egg Time" = 12000 + "Enable Special Awesome Parrot" = true + + [tools.pathfinder_maps] + #In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes. + #Each custom map must be on its own line. + #The format for a custom map is as follows: + #,,,,, + #With the following descriptions: + # - being the biome's ID NAME. You can find vanilla names here - https://minecraft.wiki/w/Biome#Biome_IDs + # - being the Cartographer villager level required for the map to be unlockable + # - being the cheapest (in Emeralds) the map can be + # - being the most expensive (in Emeralds) the map can be + # - being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/ + #Here's an example of a map to locate Ice Mountains: + #minecraft:ice_mountains,2,8,14,FF7FE4FF + Customs = [] + #Set to false to make it so the default quark Pathfinder Map Built-In don't get added, and only the custom ones do + "Apply Default Trades" = true + #How many steps in the search should the Pathfinder's Quill do per tick? The higher this value, the faster it'll find a result, but the higher chance it'll lag the game while doing so + "Pathfinders Quill Speed" = 32 + #Experimental. Determines if quills should be multithreaded instead. Will ignore quill speed. This could drastically improve performance as it execute the logic off the main thread ideally causing no lag at all + "Multi Threaded" = true + #Allows retrying after a pathfinder quill fails to find a biome nearby. Turn off if you think its op + "Allow Retrying" = true + "Search Radius" = 6400 + "Xp From Trade" = 5 + "Add To Cartographer" = true + "Add To Wandering Trader Forced" = true + "Add To Wandering Trader Generic" = false + "Add To Wandering Trader Rare" = false + "Draw Hud" = true + "Hud On Top" = false + + [tools.pickarang] + "Enable Flamerang" = true + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + + [tools.pickarang.pickarang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 3 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 800 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 2 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.pickarang.flamerang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 4 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 1040 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 3 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.seed_pouch] + "Max Items" = 640 + "Show All Variants In Creative" = true + "Shift Range" = 3 + #Allow putting bone meal into the Seed Pouch (or anything else in the tag 'quark:seed_pouch_fertilizers') + "Allow Fertilizer" = true + "Fertilizer Shift Range" = 3 + + [tools.skull_pikes] + "Pike Range" = 5.0 + + [tools.torch_arrow] + "Extinguish On Miss" = false + + [tools.trowel] + #Amount of blocks placed is this value + 1. + #Set to 0 to make the Trowel unbreakable + #Allowed values: [0,) + "Trowel Max Durability" = 0 + +[world] + "Ancient Wood" = true + "Azalea Wood" = true + "Big Stone Clusters" = true + "Blossom Trees" = true + "Cherry Grove Water Petals" = true + "Chorus Vegetation" = true + Corundum = true + "Fairy Rings" = true + "Fallen Logs" = true + "Glimmering Weald" = true + "Monster Box" = true + "Nether Obsidian Spikes" = true + "New Stone Types" = true + "No More Lava Pockets" = true + Permafrost = true + "Spiral Spires" = true + + [world.ancient_wood] + "Ancient Fruit Gives Exp" = true + #Allowed values: [1,) + "Ancient Fruit Exp Value" = 10 + #Set to a value other than 0 to enable Ancient City loot chest generation (8 recommended if you do) + #Allowed values: [0,) + "Ancient City Loot Weight" = 0 + #Allowed values: [0,) + "Ancient City Loot Quality" = 1 + #Set to 0 to disable sniffer sniffing. The vanilla loot table has every entry at weight 1, so without editing it, it's impossible to make the sapling more rare + #Allowed values: [0,) + "Sniffing Loot Weight" = 1 + #Allowed values: [0,) + "Sniffing Loot Quality" = 0 + + [world.azalea_wood] + #This feature disables itself if any of the following mods are loaded: + # - caverns_and_chasms + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [world.big_stone_clusters] + #Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension, + #do "block|dimension", as we do for netherrack and end stone by default. + "Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:limestone", "quark:jasper", "quark:slate"] + + [world.big_stone_clusters.calcite] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.calcite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.calcite.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.calcite.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.limestone] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.limestone.biomes.tags] + "Biome Tags" = ["c:is_swamp", "minecraft:is_ocean"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.limestone.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.jasper] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.jasper.biomes.tags] + "Biome Tags" = ["minecraft:is_badlands", "c:is_sandy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.jasper.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.shale] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.shale.biomes.tags] + "Biome Tags" = ["c:is_snowy", "c:is_cold"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.shale.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.myalite] + "Generate In Air" = true + Enabled = true + #Allowed values: [0,) + Rarity = 100 + "Min Y Level" = 58 + "Max Y Level" = 62 + #Allowed values: [0,) + "Horizontal Size" = 20 + #Allowed values: [0,) + "Vertical Size" = 40 + #Allowed values: [0,) + "Horizontal Variation" = 6 + #Allowed values: [0,) + "Vertical Variation" = 10 + + [world.big_stone_clusters.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.myalite.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.myalite.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + + [world.blossom_trees] + "Drop Leaf Particles" = true + + [world.blossom_trees.blue] + Rarity = 200 + + [world.blossom_trees.blue.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.blue.biome_config.tags] + "Biome Tags" = ["c:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.blue.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.lavender] + Rarity = 100 + + [world.blossom_trees.lavender.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.lavender.biome_config.tags] + "Biome Tags" = ["c:is_swamp"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.lavender.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.orange] + Rarity = 100 + + [world.blossom_trees.orange.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.orange.biome_config.tags] + "Biome Tags" = ["minecraft:is_savanna"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.orange.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.yellow] + Rarity = 200 + + [world.blossom_trees.yellow.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.yellow.biome_config.tags] + "Biome Tags" = ["c:is_plains"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.yellow.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.red] + Rarity = 30 + + [world.blossom_trees.red.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.red.biome_config.tags] + "Biome Tags" = ["minecraft:is_badlands"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.red.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.cherry_grove_water_petals] + #The chance for a Cherry Grove chunk to attempt to spawn petals on top of water (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.5 + #Should a chunk have water petals, how many would the generator try to place + "Tries Per Chunk" = 1 + #The 'size' of groups of petals + Size = 3 + #Groups of petals may be +/- this size on each axis, set to 0 to disable variation + "Size Variation" = 1 + #Edges of groups will have this chance to be 'jagged', that is, gain or lose a petal. Only applies when useCarpet is false + "Edge Variation" = 0.25 + #If true, Cherry Leaf Carpet from Leaf Carpet Module (from Building category) will be used instead of Pink Petals, assuming it is enabled; if false, requires Petals On Water Module (from Tweaks category) to be enabled + "Use Carpet" = false + #This feature disables itself if any of the following mods are loaded: + # - hanaikada + # - pinkpetalcarpet + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.cherry_grove_water_petals.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.cherry_grove_water_petals.biomes.biomes] + Biomes = ["minecraft:cherry_grove"] + "Is Blacklist" = false + + [world.cherry_grove_water_petals.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.chorus_vegetation] + Rarity = 150 + Radius = 7 + "Chunk Attempts" = 120 + "Highlands Chance" = 1.0 + "Midlands Chance" = 0.2 + "Other End Biomes Chance" = 0.0 + "Passive Teleport Chance" = 0.2 + "Endermite Spawn Chance" = 0.01 + "Teleport Duplication Chance" = 0.01 + + [world.corundum] + #Allowed values: [0,1] + "Crystal Chance" = 0.16 + #Allowed values: [0,1] + "Crystal Cluster Chance" = 0.2 + #Allowed values: [0,1] + "Crystal Cluster On Sides Chance" = 0.6 + #Allowed values: [0,1] + "Double Crystal Chance" = 0.2 + #The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth. + "Cave Crystal Growth Chance" = 5 + "Crystals Craft Runes" = true + "Enable Collateral Movement" = true + + [world.corundum.generation_settings] + #Allowed values: [0,) + Rarity = 400 + "Min Y Level" = 0 + "Max Y Level" = 64 + #Allowed values: [0,) + "Horizontal Size" = 36 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 8 + #Allowed values: [0,) + "Vertical Variation" = 6 + + [world.corundum.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.corundum.generation_settings.biomes.tags] + "Biome Tags" = ["minecraft:is_ocean"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.corundum.generation_settings.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.fairy_rings] + "Forest Chance" = 0.00625 + "Plains Chance" = 0.0025 + Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"] + + [world.fairy_rings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.fallen_logs] + #Percentage of fallen logs spawning as hollow. Requires Hollow Logs Module to be enabled + "Hollow Chance" = 0.7 + Rarity = 5 + #Chance for logs to spawn on water + "On Water Chance" = 0.1 + "Sparse Biome Rarity" = 12 + #Tags that define which biomes can have which wood types. These are all biome tags under the Quark namespace + "Biome Tags" = ["has_fallen_acacia=minecraft:acacia_log", "has_fallen_birch=minecraft:birch_log", "has_fallen_cherry=minecraft:cherry_log", "has_fallen_dark_oak=minecraft:dark_oak_log", "has_fallen_jungle=minecraft:jungle_log", "has_fallen_mangrove=minecraft:mangrove_log", "has_fallen_oak=minecraft:oak_log", "has_fallen_spruce=minecraft:spruce_log"] + + [world.fallen_logs.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.monster_box] + #The chance for the monster box generator to try and place one in a chunk. 0 is 0%, 1 is 100% + #This can be higher than 100% if you want multiple per chunk. + "Chance Per Chunk" = 0.2 + "Min Y" = -50 + "Max Y" = 0 + "Min Mob Count" = 5 + "Max Mob Count" = 8 + "Enable Extra Loot Table" = true + "Activation Range" = 2.5 + #How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces. + "Search Range" = 15 + + [world.monster_box.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.nether_obsidian_spikes] + #The chance for a chunk to contain spikes (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.1 + #The chance for a spike to be big (1 is 100%, 0 is 0%) + "Big Spike Chance" = 0.03 + #Should a chunk have spikes, how many would the generator try to place + "Tries Per Chunk" = 4 + "Big Spike Spawners" = true + + [world.nether_obsidian_spikes.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_nether"] + + [world.new_stone_types] + "Enable Limestone" = true + "Enable Jasper" = true + "Enable Shale" = true + "Enable Myalite" = true + "Add New Stones To Mason Trades" = true + + [world.new_stone_types.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.limestone.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.limestone.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.jasper.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.jasper.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.shale.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.shale.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.new_stone_types.myalite.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.myalite.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.permafrost.generation_settings] + #Allowed values: [0,) + Rarity = 2 + "Min Y Level" = 105 + "Max Y Level" = 140 + #Allowed values: [0,) + "Horizontal Size" = 72 + #Allowed values: [0,) + "Vertical Size" = 15 + #Allowed values: [0,) + "Horizontal Variation" = 22 + #Allowed values: [0,) + "Vertical Variation" = 4 + + [world.permafrost.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.permafrost.generation_settings.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.permafrost.generation_settings.biomes.biomes] + Biomes = ["minecraft:frozen_peaks"] + "Is Blacklist" = false + + [world.spiral_spires] + Rarity = 200 + Radius = 15 + "Enable Myalite Viaducts" = true + #Allowed values: [2,1,024] + "Myalite Conduit Distance" = 24 + "Renewable Myalite" = true + + [world.spiral_spires.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.spiral_spires.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.spiral_spires.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + +[mobs] + Crabs = true + Forgotten = true + Foxhound = true + Shiba = true + Stonelings = true + Toretoise = true + Wraith = true + + [mobs.crabs] + "Enable Brewing" = true + #Whether Resilience should be required for 'How Did We Get Here?' and (if brewing is enabled) 'A Furious Cocktail'. + #Keep this on when brewing is disabled if your pack adds an alternative source for the effect. + "Resilience Required For All Effects" = true + "Add Crab Leg To Fisherman Trades" = true + + [mobs.crabs.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.crabs.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_beach"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.crabs.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.forgotten] + #This is the probability of a Skeleton that spawns under the height threshold being replaced with a Forgotten. + "Forgotten Spawn Rate" = 0.05 + "Max Height For Spawn" = 0 + + [mobs.foxhound] + #The chance coal will tame a foxhound + "Tame Chance" = 0.05 + "Foxhounds Speed Up Furnaces" = true + + [mobs.foxhound.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 30 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 2 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.spawn_config.biomes.biomes] + Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"] + "Is Blacklist" = false + + [mobs.foxhound.lesser_spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 2 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + + [mobs.shiba] + "Ignore Areas With Skylight" = false + + [mobs.shiba.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 40 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.shiba.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.shiba.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.stonelings] + "Max Y Level" = 0 + "Enable Diamond Heart" = true + #When enabled, stonelings are much more aggressive in checking for players + "Cautious Stonelings" = false + "Tamable Stonelings" = true + #Disabled if if Pathfinder Maps are disabled. + "Weald Pathfinder Maps" = true + + [mobs.stonelings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.stonelings.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 80 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.stonelings.spawn_config.biomes.tags] + "Biome Tags" = ["c:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.stonelings.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.toretoise] + "Max Y Level" = 0 + #The number of ticks from mining a tortoise until feeding it could cause it to regrow. + "Cooldown Ticks" = 1200 + #The items that can be fed to toretoises to make them regrow ores. + Foods = ["minecraft:glow_berries"] + "Allow Toretoise To Regrow" = true + #Feeding a toretoise after cooldown will regrow them with a one-in-this-number chance. Set to 1 to always regrow, higher = lower chance. + "Regrow Chance" = 3 + + [mobs.toretoise.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.toretoise.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 120 + #Allowed values: [1,) + "Min Group Size" = 2 + #Allowed values: [1,) + "Max Group Size" = 4 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.toretoise.spawn_config.biomes.tags] + "Biome Tags" = ["c:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.toretoise.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.wraith] + #List of sound sets to use with wraiths. + #Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise) + "Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.enderman.ambient|entity.enderman.hurt|entity.enderman.death", "entity.zombified_piglin.ambient|entity.zombified_piglin.hurt|entity.zombified_piglin.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "minecraft:entity.frog.ambient|minecraft:entity.frog.hurt|minecraft:entity.frog.death"] + + [mobs.wraith.spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.wraith.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.wraith.spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + +[client] + "Auto Walk Keybind" = true + "Back Button Keybind" = true + "Buckets Show Inhabitants" = true + Camera = true + "Chest Searching" = true + "Elytra Indicator" = true + "Greener Grass" = true + "Improved Tooltips" = true + "Long Range Pick Block" = true + "Microcrafting Helper" = true + "Soul Candles" = true + "Usage Ticker" = true + "Uses For Curses" = true + "Variant Animal Textures" = true + "Wool Shuts Up Minecarts" = true + + [client.auto_walk_keybind] + "Draw Hud" = true + "Hud Height" = 10 + + [client.buckets_show_inhabitants] + "Show Axolotls" = true + "Show Crabs" = true + "Show Tropical Fish" = true + "Show Shiny Slime" = true + + [client.camera] + #Date format that will be displayed in screenshots. Must be a valid one (i.e. MM/dd/yyyy) + "Date Format" = "MM/dd/yyyy" + + [client.chest_searching.overlay_color] + A = 0.67 + R = 0.0 + G = 0.0 + B = 0.0 + + [client.greener_grass] + "Affect Leaves" = true + "Affect Water" = false + "Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:short_grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass", "grassslabs:grass_carpet", "grassslabs:grass_slab", "grassslabs:grass_stairs"] + "Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine", "valhelsia_structures:hanging_vines"] + + [client.greener_grass.color_matrix] + R = [0.89, 0.0, 0.0] + G = [0.0, 1.11, 0.0] + B = [0.0, 0.0, 0.89] + + [client.greener_grass.water_matrix] + R = [0.86, 0.0, 0.0] + G = [0.0, 1.0, 0.22] + B = [0.0, 0.0, 1.22] + + [client.improved_tooltips] + "Attribute Tooltips" = true + "Food Tooltips" = true + "Shulker Tooltips" = true + "Map Tooltips" = true + "Enchanting Tooltips" = true + "Fuel Time Tooltips" = true + "Shulker Box Use Colors" = true + "Shulker Box Require Shift" = false + "Map Require Shift" = false + #The value of each shank of food. + #Tweak this when using mods like Hardcore Hunger which change that value. + "Food Divisor" = 2 + "Show Saturation" = true + "Food Compression Threshold" = 4 + "Fuel Time Divisor" = 200 + #Should item attributes be colored relative to your current equipped item? + #e.g. if wearing an Iron Helmet, the armor value in a Diamond Helmet will show as green, and vice versa would be red. + #If set to false, item attributes will show in white or red if they're negative values. + "Show Upgrade Status" = true + "Animate Up Down Arrows" = true + "Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:mace", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "minecraft:shield", "quark:pickarang", "supplementaries:slingshot", "supplementaries:bubble_blower", "farmersdelight:diamond_knife", "the_bumblezone:stinger_spear", "the_bumblezone:crystal_cannon", "the_bumblezone:honey_crystal_shield", "the_bumblezone:honey_bee_leggings_2"] + #A list of additional stacks to display on each enchantment + #The format is as follows: + #enchant_id=item1,item2,item3... + #So to display a carrot on a stick on a mending book, for example, you use: + #minecraft:mending=minecraft:carrot_on_a_stick + "Enchanting Additional Stacks" = [] + + [client.usage_ticker] + #Switch the armor display to the off hand side and the hand display to the main hand side + Invert = false + "Shift Left" = 0 + "Shift Right" = 0 + "Enable Main Hand" = true + "Enable Off Hand" = true + "Enable Armor" = true + + [client.uses_for_curses] + "Vanish Pumpkin Overlay" = true + "Bind Armor Stands With Player Heads" = true + + [client.variant_animal_textures] + "Enable Cow" = true + "Enable Pig" = true + "Enable Chicken" = true + "Enable Allay" = true + "Enable Shiny Rabbit" = true + "Enable Shiny Llama" = true + "Enable Shiny Dolphin" = true + "Enable Shiny Slime" = true + "Enable Shiny Armadillo" = true + "Enable Shiny Frog" = true + "Enable L G B T Bees" = true + "Every Bee Is L G B T" = false + #The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable. + "Shiny Animal Chance" = 2048 + #If a shiny animal should emit occasional sparkles. + "Shiny Sparkles" = true + +[experimental] + "Adjustable Chat" = false + "Climate Control Remover" = false + "Game Nerfs" = false + "Narrator Readout" = false + "Overlay Shader" = false + "Spawner Replacer" = false + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + "Variant Selector" = false + "Villager Rerolling Rework" = false + + [experimental.adjustable_chat] + "Horizontal Shift" = 0 + "Vertical Shift" = 0 + + [experimental.climate_control_remover] + #Disables the temperature comparison when choosing biomes to generate. + "Disable Temperature" = false + #Disables the humidity comparison when choosing biomes to generate. + "Disable Humidity" = false + #Disables the 'continentalness' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make oceans act a lot more like rivers. + "Disable Continentalness" = false + #Disables the 'erosion' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably create very extreme height differences, and will make the End more chaotic. + "Disable Erosion" = false + #Disables the 'depth' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make cave biomes appear at unusual heights. + "Disable Depth" = false + #Disables the 'weirdness' comparison when choosing biomes to generate. + #WARNING: Enabling this will... well, probably make things weird. + "Disable Weirdness" = false + #Disables the 'offset' parameter when choosing biomes to generate. + #WARNING: Enabling this will make rarer nether biomes more common. + "Disable Offset" = false + + [experimental.game_nerfs] + #Makes Mending act like the Unmending mod + #https://www.curseforge.com/minecraft/mc-mods/unmending + "Nerf Mending" = true + #Makes Mending II still work even if mending is nerfed. + #If you want Mending II, disable the sanity check on Ancient Tomes and add minecraft:mending to the tomes. + "No Nerf for Mending II" = false + #Makes Iron Golems not drop Iron Ingots + "Disable Iron Farms" = true + #Makes Boats not glide on ice + "Disable Ice Roads" = true + #Makes Sheep not drop Wool when killed + "Disable Wool Drops" = true + #Disables mob griefing for only specific entities + "Enable Selective Mob Griefing" = true + #Force Elytra to only work in specific dimensions + "Enable Dimension Locked Elytra" = true + #Makes falling blocks not able to be duped via dimension crossing + "Disable Falling Block Dupe" = true + #Fixes several piston physics exploits, most notably including TNT duping + "Disable Piston Physics Exploits" = true + #Fixes mushroom growth being able to replace blocks + "Disable Mushroom Block Removal" = true + #Makes tripwire hooks unable to be duplicated + "Disable Tripwire Hook Dupe" = true + #Makes villages spawn less often when close to spawn + "Village Spawn Nerf" = false + #Distance at which villages will spawn as normal. Effect scales linearly from world spawn + "Village Spawn Nerf Distance" = 7000 + "Non Griefing Entities" = ["minecraft:creeper", "minecraft:enderman"] + "Elytra Allowed Dimensions" = ["minecraft:the_end"] + + [experimental.overlay_shader] + #Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic). + #Some useful shaders include 'desaturate', 'oversaturate', 'bumpy' + #Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia' + Shader = "none" + + [experimental.spawner_replacer] + #Mobs to be replaced with other mobs. + #Format is: "mob1,mob2", i.e. "minecraft:spider,minecraft:skeleton" + "Replace Mobs" = [] + + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + [experimental.variant_selector] + #Set this to true to automatically convert any dropped variant items into their originals. Do this ONLY if you intend to take control of every recipe via a data pack or equivalent, as this will introduce dupes otherwise. + "Convert Variant Items" = false + #Enable the hammer, allowing variants to be swapped between eachother, including the original block. Do this ONLY under the same circumstances as Convert Variant Items. + "Enable Hammer" = false + "Show Tooltip" = true + "Align Hud To Hotbar" = false + "Show Simple Hud" = false + "Show Hud" = true + "Enable Green Tint" = true + "Override Held Item Render" = true + "Hud Offset X" = 0 + "Hud Offset Y" = 0 + #When true, selector arrow will render in same style as crosshair + "Render Like Cross Hair" = true + #Uses smaller arrow icon for variant selector overlay + "Smaller Arrow" = false + + [experimental.variant_selector.variants] + #The list of all variant types available for players to use. Values are treated as suffixes to block IDs for scanning. + #Prefix any variant type with ! to make it show up for Manual Variants but not be automatically scanned for. (e.g. '!polish') + "Variant Types" = ["slab", "stairs", "wall", "fence", "fence_gate", "vertical_slab"] + #By default, only a mod's namespace is scanned for variants for its items (e.g. if coolmod adds coolmod:fun_block, it'll search only for coolmod:fun_block_stairs). + # Mods in this list are also scanned for variants if none are found in itself (e.g. if quark is in the list and coolmod:fun_block_stairs doesn't exist, it'll try to look for quark:fun_block_stairs next) + "Tested Mods" = ["quark", "everycomp", "v_slab_compat"] + "Print Variant Map To Log" = false + #Format is 'alias=original' in each value (e.g. 'wall=fence' means that a failed search for, minecraft:cobblestone_fence will try cobblestone_wall next) + Aliases = ["carpet=slab", "pane=fence"] + #Ends of block IDs to try and remove when looking for variants. (e.g. minecraft:oak_planks goes into minecraft:oak_stairs, so we have to include '_planks' in this list for it to find them or else it'll only look for minecraft:oak_planks_stairs) + "Strip Candidates" = ["_planks", "_wool", "_block", "s"] + #Add manual variant overrides here, the format is 'type,block,output' (e.g. polish,minecraft:stone_bricks,minecraft:chiseled_stone_bricks). The type must be listed in Variant Types + "Manual Variants" = [] + # A list of block IDs and mappings to be excluded from variant selection. + #To exclude a block from being turned into other blocks, just include the block ID (e.g. minecraft:cobblestone). + #To exclude a block from having other blocks turned into it, suffix it with = (e.g. =minecraft:cobblestone_stairs) + #To exclude a specific block->variant combination, put = between the two (e.g. minecraft:cobblestone=minecraft:cobblestone_stairs) + Blacklist = ["minecraft:snow", "minecraft:bamboo", "minecraft:bamboo_block"] + + [experimental.villager_rerolling_rework] + #If enabled, the first two trades a villager generates for a profession will always be the same for a given villager. + #This prevents repeatedly placing down a job site block to reroll the villager's trades. + "Seed Initial Villager Trades" = true + #Set to 0 to disable the chance to reroll trades when restocking. + #It's possible for a trade to not restock even when the chance is 1. This happens when the rerolled trade is one the villager already has. + #This chance only guarantees a reroll will be attempted. + #Allowed values: [0,1] + "Chance To Reroll When Restocking" = 0.25 + #Set to 0 to disable the chance to reroll trades when restocking. Set to -1 to allow unlimited rerolling. + #Trades earlier in the list will restock first. + "Maximum Restocks Per Day" = 3 + #If enabled, villagers will reroll when they restock, rather than when they begin work for the day. + #If disabled, players can prevent rerolling by ensuring the villager isn't out of stock on their last restock of the day. + "Reroll On Any Restock" = false + #If enabled, villagers will be able to reroll any trade that has been used AT ALL since the last restock. + "Reroll Even If Not Out Of Stock" = false + +[oddities] + Backpack = true + Crate = true + Magnets = true + "Matrix Enchanting" = true + Pipes = true + "Tiny Potato" = true + "Totem Of Holding" = true + + [oddities.backpack] + #Set this to true to allow the backpacks to be unequipped even with items in them + "Super Op Mode" = false + "Enable Ravager Hide" = true + "Items In Backpack Tick" = true + "Base Ravager Hide Drop" = 1 + "Extra Chance Per Looting" = 0.5 + "Allow Armor Stand Unloading" = true + + [oddities.crate] + "Max Items" = 640 + + [oddities.magnets] + #Any items you place in this list will be derived so that any block made of it will become magnetizable + "Magnetic Derivation List" = ["minecraft:iron_ingot", "minecraft:copper_ingot", "minecraft:exposed_copper", "minecraft:weathered_copper", "minecraft:oxidized_copper", "minecraft:raw_iron", "minecraft:raw_copper", "minecraft:iron_ore", "minecraft:deepslate_iron_ore", "minecraft:copper_ore", "minecraft:deepslate_copper_ore", "quark:gravisand"] + #Block/Item IDs to force-allow magnetism on, regardless of their crafting recipe + "Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil", "minecraft:iron_horse_armor", "minecraft:chainmail_helmet", "minecraft:chainmail_boots", "minecraft:chainmail_leggings", "minecraft:chainmail_chestplate", "#minecraft:cauldrons"] + #Block/Item IDs to force-disable magnetism on, regardless of their crafting recipe + "Magnetic Blacklist" = ["minecraft:tripwire_hook", "minecraft:map", "#minecraft:all_hanging_signs", "#minecraft:hanging_signs"] + "Use Pre End Recipe" = false + #When true magnets will never push something that pistons cant push. Disable to have further control. This allows iron rods to break obsidian for example + "Use Piston Logic" = true + #Allows magnets to push and pull entities in the 'affected_by_magnets' tag (edit it with datapack). Turning off can reduce lag + "Affect Entities" = true + #Allows magnets to push and pull entities having magnetic armor. Requires 'magnetic_entities' config ON + "Affects Armor" = true + #Determines how fast entities are pulled by magnets. Still follows the inverse square law + "Entities Pull Force" = 0.18000000715255737 + #Stonecutters pulled by magnets will silk touch the blocks they cut. + "Stone Cutter Silk Touch" = true + #The maximum hardness of a block that a stonecutter pushed by magnets can cut through. + "Stone Cutter Max Hardness" = 3.0 + + [oddities.matrix_enchanting] + #The maximum enchanting power the matrix enchanter can accept + "Max Bookshelves" = 15 + #Should this be X, the price of a piece increase by 1 every X pieces you generate + "Piece Price Scale" = 9 + #The higher this is, the better enchantments you'll get on books + "Book Enchantability" = 12 + #How many pieces you can generate without any bookshelves + "Base Max Piece Count" = 3 + #How many pieces you can generate without any bookshelves (for Books) + "Base Max Piece Count Book" = 1 + #At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor + "Min Level Cutoff" = 8 + #How many pieces a single Lapis can generate + "Charge Per Lapis" = 4 + #How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff) + "Min Level Scale Factor" = 1.2 + #How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used + "Min Level Scale Factor Book" = 2.0 + #How much to multiply the frequency of pieces where at least one of the same type has been generated + "Dupe Multiplier" = 1.4 + #How much to multiply the frequency of pieces where incompatible pieces have been generated + "Incompatible Multiplier" = 0.0 + #Set to false to disable the ability to create Enchanted Books + "Allow Books" = true + #Set this to true to allow treasure enchantments to be rolled as pieces + "Allow Treasures" = false + #Set this to true to allow undiscoverable enchantments to be rolled as pieces + "Allow Undiscoverable Enchantments" = false + #Any treasure enchantment IDs here will be able to appear in books in matrix enchanting + "Treasure Whitelist" = [] + #Any undiscoverable enchantment IDs here will be able to appear in matrix enchanting + "Undiscoverable Whitelist" = [] + #Set to false to disable the tooltip for items with pending enchantments + "Show Tooltip" = true + #By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour. + "Normalize Rarity" = true + #Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Underwater Enchanting" = true + #Matrix Enchanting can be done with short (<= 3px blocks) instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Short Block Enchanting" = true + #Candles with soul sand below them or below the bookshelves dampen enchantments instead of influence them. + "Soul Candles Invert" = true + #A list of enchantment IDs you don't want the enchantment table to be able to create + "Disallowed Enchantments" = [] + #An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors. + #A minus sign before an enchantment will make the influence decrease the probability of that enchantment. + "Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"] + #An array of influences that other blocks should apply. + #Format is: "blockstate;strength;color;enchantments", i.e. "minecraft:sea_pickle[pickles=1,waterlogged=false];1;#008000;minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide" (etc) or "minecraft:anvil[facing=north];#808080;-minecraft:thorns,minecraft:unbreaking" (etc) + "States To Influences" = [] + #Set to false to disable the ability to influence enchantment outcomes with candles + "Allow Influencing" = true + #The max amount of candles that can influence a single enchantment + "Influence Max" = 4 + #How much each candle influences an enchantment. This works as a multiplier to its weight + "Influence Power" = 0.125 + #If you set this to false, the vanilla Enchanting Table will no longer automatically convert to the Matrix Enchanting table. You'll have to add a recipe for the Matrix Enchanting Table to make use of this. + "Automatically Convert" = true + + [oddities.pipes] + #How long it takes for an item to cross a pipe. Bigger = slower. + "Pipe Speed" = 5 + #Set to 0 if you don't want pipes to have a max amount of items + "Max Pipe Items" = 16 + #When items eject or are absorbed by pipes, should they make sounds? + "Do Pipes Whoosh" = true + "Enable Encased Pipes" = true + "Render Pipe Items" = true + "Emit Vibrations" = true + + [oddities.tiny_potato] + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + #This feature disables itself if any of the following mods are loaded: + # - botania + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [oddities.totem_of_holding] + #Set this to false to remove the behaviour where totems destroy themselves if the player dies again. + "Dark Souls Mode" = true + #Totem will always spawn if the player killer is themselves. + "Spawn Totem on PVP Kill" = false + #Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped + "Destroy Lost Items" = false + #Set this to false to only allow the owner of a totem to collect its items rather than any player + "Allow Anyone To Collect" = true diff --git a/config/simplycataclysm-startup.toml b/config/simplycataclysm-startup.toml new file mode 100644 index 0000000..cd04b46 --- /dev/null +++ b/config/simplycataclysm-startup.toml @@ -0,0 +1,165 @@ +# SPARTAN CATACLYSM CONFIG +# +["Material Modifiers"] + # Attack Damage Modifier for Ancient Metal weapons. Requires restart. + # Default: 3 + # Range: -10000 ~ 10000 + ancientMetalDamageModifier = 3 + # Attack Speed Modifier for Ancient Metal weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + ancientMetalSpeedModifier = 0 + # Attack Damage Modifier for Black Steel weapons. Requires restart. + # Default: 3 + # Range: -10000 ~ 10000 + blackSteelDamageModifier = 3 + # Attack Speed Modifier for Black Steel weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + blackSteelSpeedModifier = 0 + # Attack Damage Modifier for Cursium weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + cursiumDamageModifier = 0 + # Attack Speed Modifier for Cursium weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + cursiumSpeedModifier = 0 + # Attack Damage Modifier for Ignitium weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + ignitiumDamageModifier = 0 + # Attack Speed Modifier for Ignitium weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + ignitiumSpeedModifier = 0 + # Attack Damage Modifier for Witherite weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + witheriteDamageModifier = 0 + # Attack Speed Modifier for Witherite weapons. Requires restart. + # Default: 0 + # Range: -10000 ~ 10000 + witheriteSpeedModifier = 0 + +["Accursed Rage Options"] + # Chance on hit for Cursium weapons to stack the Accursed Rage effect on the user. Set to 0 to disable. + # Default: 0.5 + # Range: 0.0 ~ 1.0 + accursedRageChance = 0.5 + # Additional damage attackers do with Cursium weapons per level of Accursed Rage. + # Default: 1.0 + # Range: 0.0 ~ 1.7976931348623157E308 + accursedRageExtraDamage = 1.0 + # Duration (ticks) of the Accursed Rage effect granted by Cursium weapons. + # Default: 110 + # Range: > 0 + accursedRageDuration = 110 + # Maximum amplifier the Accursed Rage effect can reach using Cursium weapons. + # Default: 4 + # Range: > 0 + accursedRageMaxAmplifier = 4 + +["Blazing Brand Options"] + # Chance on hit for Ignitium weapons to stack the Blazing Brand effect onto attacked entities. Set to 0 to disable. + # Default: 0.75 + # Range: 0.0 ~ 1.0 + blazingBrandChance = 0.75 + # Chance on hit for Ignitium weapons to grant lifesteal to the user. Blazing Brand trait must have hit successfully - for example, if blazingBrandChance is 0 then lifesteal will never be given. Set to 0 to disable. + # Default: 1.0 + # Range: 0.0 ~ 1.0 + blazingBrandLifestealChance = 1.0 + # Lifesteal multiplier for Ignitium weapons. Lifesteal amount depends on attack speed, so rate should correlates with DPS. Set to 0 to disable lifesteal. + # Default: 1.25 + # Range: 0.0 ~ 1.7976931348623157E308 + lifestealMultiplier = 1.25 + # Duration (ticks) of the Blazing Brand effect inflicted by Ignitium weapons. Default is identical to Ignis' abilities. + # Default: 240 + # Range: > 0 + blazingBrandDuration = 240 + # Maximum amplifier the Blazing Brand effect can reach using Ignitium weapons. Default is identical to Ignis' abilities. + # Default: 4 + # Range: > 0 + blazingBrandMaxAmplifier = 4 + # Multiplier (per amplifier) that entities afflicted with Brazing Brand will have its Armor attribute reduced by. Default is identical to Ignis' abilities. Requires restart. + # Default: 0.2 + # Range: 0.0 ~ 1.0 + blazingBrandArmorMultiplier = 0.2 + # Multiplier (per amplifier) that entities afflicted with Brazing Brand will have its Armor Toughness attribute reduced by. Default is identical to Ignis' abilities. Requires restart. + # Default: 0.2 + # Range: 0.0 ~ 1.0 + blazingBrandArmorToughnessMultiplier = 0.2 + +["Mecha Pulse Options"] + # Chance on hit for Witherite weapons to stack the Pulse Charge effect on the user. Set to 0 to disable. + # Default: 0.75 + # Range: 0.0 ~ 1.0 + mechaPulseChargeChance = 0.75 + # Duration (ticks) of the Pulse Charge effect granted by Witherite weapons. + # Default: 140 + # Range: > 0 + mechaPulseEffectDuration = 140 + # Amplifier of the Pulse Charge effect at which a shockwave is released, stunning the target. + # Default: 9 + # Range: > 0 + mechaPulseStunThreshold = 9 + # Duration (ticks) of the Pulse Cooldown effect inflicted upon Witherite weapons releasing a shockwave. Pulse Charge cannot accumulate while this effect is active. + # Default: 800 + # Range: > 0 + mechaPulseCooldown = 800 + # Stun duration (ticks) inflicted by Witherite weapons when a shockwave is released. + # Default: 200 + # Range: > 0 + mechaPulseStunDuration = 200 + # Additional damage a shockwave does when released. + # Default: 4.0 + # Range: 0.0 ~ 1.7976931348623157E308 + mechaPulseStunDamage = 4.0 + +["Mecha Smite Options"] + # Chance on hit for Witherite weapons to set the target on fire and apply Wither. Set to 0 to disable. + # Default: 1.0 + # Range: 0.0 ~ 1.0 + mechaSmiteHarmfulEffectsChance = 1.0 + # Duration (seconds) of the Fire applied by Witherite weapons. Set to 0 to disable. + # Default: 5 + # Range: > 0 + mechaSmiteFireDuration = 5 + # Duration (ticks) of the Wither effect applied to the target by Witherite weapons. Set to 0 to disable. + # Default: 100 + # Range: > 0 + mechaSmiteWitherDuration = 100 + # Amplifier of the Wither effect applied to the target by Witherite weapons. + # Default: 1 + # Range: > 0 + mechaSmiteWitherAmplifier = 1 + # Chance on hit for Witherite weapons apply regeneration to the user when under health threshold. Set to 0 to disable. + # Default: 0.5 + # Range: 0.0 ~ 1.7976931348623157E308 + mechaSmiteRegenChance = 0.5 + # Whether Witherite weapons should apply Regeneration to the user at a certain health percentage (true), or at a defined health amount (false). + mechaSmiteRegenUsesPercentage = true + # If mechaSmiteRegenUsesPercentage is true, Witherite weapons will apply Regeneration to the user when under this percentage of health. Set to 0 to disable. + # Default: 0.5 + # Range: 0.0 ~ 1.7976931348623157E308 + mechaSmiteRegenPercentage = 0.5 + # If mechaSmiteRegenUsesPercentage is false, Witherite weapons will apply Regeneration to the user when under this amount of health. Set to 0 to disable. + # Default: 10 + # Range: > 0 + mechaSmiteRegenThreshold = 10 + # Duration (ticks) of the Regeneration effect applied to the user by Witherite weapons. + # Default: 100 + # Range: > 0 + mechaSmiteRegenDuration = 100 + # Amplifier of the Regeneration effect applied to the user by Witherite weapons. + # Default: 1 + # Range: > 0 + mechaSmiteRegenAmplifier = 1 + +["Miscellaneous Options"] + # Enable/Disable Ignitium, Cursium, and Witherite weapons making custom sounds when attacking. + customWeaponSounds = true + # Pitch variation from 1.0 for custom weapon attack sounds. For example: Set to 0.1, pitch will be random between 0.9 and 1.1. Set to 0.0 for no variation. + # Default: 0.1 + # Range: 0.0 ~ 1.0 + customWeaponSoundsPitchVariation = 0.1 diff --git a/config/simplyswords/gem_powers.toml b/config/simplyswords/gem_powers.toml new file mode 100644 index 0000000..88d29c1 --- /dev/null +++ b/config/simplyswords/gem_powers.toml @@ -0,0 +1,71 @@ +# Don't change this! Version used to track needed updates. +version = 0 +disabledPowers = [ ] + +[activeDefence] +frequency = 20 +radius = 5.0 + +[floating] +chance = 15 +duration = 50 + +[freeze] +chance = 15 +duration = 120 + +[frostWard] +frequency = 20 +radius = 5.0 +duration = 60 + +[imbued] +chance = 15 + +[momentum] +cooldown = 140 + +[shielding] +chance = 15 +duration = 120 + +[slow] +chance = 50 +duration = 50 + +[stoneskin] +chance = 15 +duration = 60 + +[swiftness] +chance = 15 +duration = 300 + +[trailblaze] +chance = 15 +duration = 120 + +[unstable] +frequency = 140 +duration = 140 + +[weaken] +chance = 15 +duration = 120 + +[wildfire] +chance = 10 +duration = 180 +radius = 10.0 + +[zephyr] +chance = 15 +duration = 180 + +[simplySkills] +preciseChance = 30 +mightyChance = 30 +stealthyChance = 30 +renewedChance = 30 +leapingChance = 65 +spellshieldChance = 15 \ No newline at end of file diff --git a/config/simplyswords/general.toml b/config/simplyswords/general.toml new file mode 100644 index 0000000..08f389c --- /dev/null +++ b/config/simplyswords/general.toml @@ -0,0 +1,12 @@ +# Don't change this! Version used to track needed updates. +version = 0 +enableWeaponImpactSounds = true +weaponImpactSoundsVolume = 0.3 +enableWeaponFootfalls = true +enablePassiveParticles = true +enableUniqueGemSockets = true +enableTooltipInfoButtons = true +tooltipInfoButtonsRequireInventoryScreen = true +containedRemnantTransformFrequency = 18000 +compatGobberEndWeaponsUnbreakable = true +compatEnableSpellPowerScaling = true \ No newline at end of file diff --git a/config/simplyswords/status_effects.toml b/config/simplyswords/status_effects.toml new file mode 100644 index 0000000..e6a491c --- /dev/null +++ b/config/simplyswords/status_effects.toml @@ -0,0 +1,3 @@ +# Don't change this! Version used to track needed updates. +version = 0 +echoDamage = 2 \ No newline at end of file diff --git a/config/simplyswords/unique_effects.toml b/config/simplyswords/unique_effects.toml new file mode 100644 index 0000000..50dea75 --- /dev/null +++ b/config/simplyswords/unique_effects.toml @@ -0,0 +1,265 @@ +# Don't change this! Version used to track needed updates. +version = 0 +abilityAbsorptionCap = 20.0 + +[harbinger] +chance = 15 +cooldown = 700 +damage = 3.0 +spellScaling = 1.2 + +[arcanethyst] +chance = 25 +cooldown = 220 +damage = 1.0 +duration = 120 +radius = 6 +spellScaling = 1.4 + +[caelestis] +chance = 5 +cooldown = 420 +damageMax = 300.0 +damageModifier = 1.0 +duration = 100 + +[bramblethorn] +chance = 45 + +[brimstone_claymore] +chance = 15 + +[stars_edge] +cooldown = 120 +duration = 120 +damageModifier = 0.4 +lifestealModifier = 0.1 +stacks = 6 + +[emberblade] +chance = 30 +duration = 150 + +[flamewind] +cooldown = 980 +damage = 5.0 +spellScaling = 0.4 +detonationDamage = 15.0 +maxHaste = 10 +spreadCap = 6 + +[enigma] +enigmaCooldown = 800 +enigmaChaseRadius = 16.0 +enigmaDecayRate = 2 + +[whisperwind] +chance = 15 +cooldown = 175 +maxStacks = 99 +radius = 3 +dashVelocity = 3.0 + +[twisted_blade] +chance = 75 +duration = 100 +maxStacks = 15 +strengthTier = 2 + +[wickpiercer] +damage = 1.0 +duration = 80 + +[frostfall] +chance = 25 +cooldown = 3 +damage = 11.0 +pulseDamage = 11.0 +duration = 80 +radius = 8.0 +spellScaling = 1.4 + +[livyatan] +returnDamage = 8.0 +damage = 8.0 +duration = 100 +radius = 0.5 +spellScaling = 1.7 + +[hiveheart] +cooldown = 60 +damage = 1.1 +duration = 450 + +[magiblade] +cooldown = 35 +damageModifier = 0.7 +repelChance = 55 +repelRadius = 4.0 +sonicDistance = 16.0 + +[magispear] +cooldown = 20 +damageModifier = 2.0 +radius = 4.0 +magicChance = 35 +magicModifier = 2.0 + +[magiscythe] +cooldown = 980 +damage = 3.0 +duration = 400 +radius = 4.0 +repairChance = 0.25 +spellScaling = 0.5 + +[molten_edge] +chance = 15 +cooldown = 320 +duration = 100 +knockbackStrength = 5.0 +radius = 5.0 + +[icewhisper] +cooldown = 600 +damage = 1.0 +duration = 200 +radius = 4 +spellScaling = 0.9 + +[toxic_longsword] +chance = 55 + +[ribboncleaver] +cooldown = 40 +damageBonusPercent = 0.95 +resilienceAmplifier = 1 + +[sunfire] +chance = 15 +cooldown = 700 +damage = 3.0 +spellScaling = 1.1 +spellScalingHeal = 1.3 + +[shadowsting] +chance = 25 +cooldown = 200 +damageMulti = 0.8 +radius = 4 +blindDuration = 60 + +[stormbringer] +cooldown = 90 +damage = 12.0 +spellScaling = 2.3 +blockDuration = 35 +parryDuration = 10 + +[emberlash] +cooldown = 80 +heal = 15.0 +maxStacks = 5 +spellScaling = 0.4 + +[lichblade] +absorptionCap = 8 +cooldown = 700 +damage = 6.0 +duration = 200 +heal = 0.5 +radius = 3 +range = 22.0 +spellScaling = 1.6 + +[soulkeeper] +chance = 75 +duration = 250 +radius = 5.0 + +[soulrender] +chance = 85 +duration = 500 +maxStacks = 8 +radius = 10.0 +healMulti = 0.5 +damageMulti = 3.0 +spellScaling = 0.4 + +[soulpyre] +pulseCount = 10 +radius = 12.0 +damage = 11.0 +heal = 1 +cooldown = 400 + +[soulstealer] +chance = 25 +duration = 400 +radius = 30.0 +spellScaling = 2.6 +blindDuration = 200 +invisDuration = 120 + +[mjolnir] +chance = 15 +cooldown = 700 +duration = 200 +frequency = 10 +radius = 10 + +[storms_edge] +chance = 15 +cooldown = 100 + +[thunderbrand] +chance = 15 +cooldown = 250 +damage = 3.0 +radius = 2 +spellScaling = 1.7 + +[hearthflame] +chance = 25 +cooldown = 300 +damage = 3.0 +radius = 3 +spellScaling = 1.4 + +[tempest] +duration = 1200 +maxSize = 30 +maxStacks = 10 +spellScaling = 0.3 + +[watcher] +watcherChance = 5 +watcherRadius = 8.0 +watcherRestoreAmount = 0.5 +omenAbsorptionCap = 20.0 +omenChance = 5 +omenInstantKillThreshold = 0.25 + +[waxweaver] +cooldown = 1200 +maxStacks = 3 + +[wraithfang] +hasteAmplifier = 1 +duration = 80 + +[chompolotl] +cooldown = 60 +damage = 1.0 +duration = 500 +breedChance = 0.0266 +dolphinsGrace = true + +[dreadtide] +damageModifier = 1.0 +duration = 250 +corruptionFrequency = 60 +corruptionPerTick = 1.0 +corruptionDuration = 1200 +corruptionMax = 100.0 +startingTickFrequency = 12 \ No newline at end of file diff --git a/config/simplyswords/weapon_attributes.toml b/config/simplyswords/weapon_attributes.toml new file mode 100644 index 0000000..7f6536a --- /dev/null +++ b/config/simplyswords/weapon_attributes.toml @@ -0,0 +1,156 @@ +# Don't change this! Version used to track needed updates. +version = 0 + +[typeDamageModifier] +chakram_damageModifier = -1.0 +claymore_damageModifier = 2.0 +cutlass_damageModifier = 0.0 +glaive_damageModifier = 0.0 +greataxe_damageModifier = 3.0 +greathammer_damageModifier = 4.0 +halberd_damageModifier = 3.0 +katana_damageModifier = 0.0 +longsword_damageModifier = 0.0 +rapier_damageModifier = -1.0 +sai_damageModifier = -3.0 +scythe_damageModifier = 1.0 +spear_damageModifier = 0.0 +twinblade_damageModifier = 0.0 +warglaive_damageModifier = 0.0 + +[materialDamageModifier] +iron_damageModifier = 3.0 +gold_damageModifier = 3.0 +diamond_damageModifier = 3.0 +netherite_damageModifier = 3.0 +runic_damageModifier = 3.0 +adamantite_damageModifier = 3.0 +aquarium_damageModifier = 3.0 +banglum_damageModifier = 3.0 +bronze_damageModifier = 3.0 +carmot_damageModifier = 3.0 +celestium_damageModifier = 3.0 +copper_damageModifier = 3.0 +durasteel_damageModifier = 3.0 +kyber_damageModifier = 3.0 +metallurgium_damageModifier = 3.0 +mythril_damageModifier = 3.0 +orichalcum_damageModifier = 3.0 +osmium_damageModifier = 3.0 +palladium_damageModifier = 3.0 +prometheum_damageModifier = 3.0 +quadrillum_damageModifier = 3.0 +runite_damageModifier = 3.0 +starPlatinum_damageModifier = 3.0 +steel_damageModifier = 3.0 +stormyx_damageModifier = 3.0 +gobber_damageModifier = 1.0 +gobberNether_damageModifier = 3.0 +gobberEnd_damageModifier = 6.0 + +[typeAttackSpeed] +chakram_attackSpeed = -3.0 +claymore_attackSpeed = -2.8 +cutlass_attackSpeed = -2.0 +glaive_attackSpeed = -2.6 +greataxe_attackSpeed = -3.1 +greathammer_attackSpeed = -3.2 +halberd_attackSpeed = -2.8 +katana_attackSpeed = -2.0 +longsword_attackSpeed = -2.4 +rapier_attackSpeed = -1.8 +sai_attackSpeed = -1.5 +scythe_attackSpeed = -2.7 +spear_attackSpeed = -2.7 +twinblade_attackSpeed = -2.0 +warglaive_attackSpeed = -2.2 + +[uniqueDamageModifier] +arcanethyst_damageModifier = 7.0 +bramblethorn_damageModifier = 3.0 +brimstone_damageModifier = 6.0 +caelestis_damageModifier = 6.0 +emberblade_damageModifier = 3.0 +emberlash_damageModifier = 0.0 +enigma_damageModifier = 7.0 +flamewind_damageModifier = 3.0 +frostfall_damageModifier = 5.0 +harbinger_damageModifier = 3.0 +hearthflame_damageModifier = 8.0 +hiveheart_damageModifier = 7.0 +icewhisper_damageModifier = 7.0 +lichblade_damageModifier = 7.0 +livyatan_damageModifier = 4.0 +longswordofplague_damageModifier = 3.0 +magiblade_damageModifier = 3.0 +magiscythe_damageModifier = 4.0 +magispear_damageModifier = 4.0 +mjolnir_damageModifier = 3.0 +moltenedge_damageModifier = 4.0 +ribboncleaver_damageModifier = 7.0 +shadowsting_damageModifier = -2.0 +soulkeeper_damageModifier = 8.0 +soulpyre_damageModifier = 7.0 +soulrender_damageModifier = 3.0 +soulstealer_damageModifier = 0.0 +starsedge_damageModifier = 3.0 +stormsedge_damageModifier = 3.0 +stormbringer_damageModifier = 3.0 +sunfire_damageModifier = 3.0 +swordonastick_damageModifier = 5.0 +tempest_damageModifier = 0.0 +thewatcher_damageModifier = 6.0 +thunderbrand_damageModifier = 7.0 +twistedblade_damageModifier = 4.0 +watchingwarglaive_damageModifier = 3.0 +waxweaver_damageModifier = 6.0 +whisperwind_damageModifier = 3.0 +wickpiercer_damageModifier = 4.0 +wraithfang_damageModifier = 1.0 +chompolotl_damageModifier = 0.0 +dreadtide_damageModifier = 3.0 + +[uniqueAttackSpeed] +arcanethyst_attackSpeed = -2.7 +bramblethorn_attackSpeed = -1.8 +brimstone_attackSpeed = -2.8 +caelestis_attackSpeed = -2.9 +emberblade_attackSpeed = -2.4 +emberlash_attackSpeed = -1.5 +enigma_attackSpeed = -3.2 +flamewind_attackSpeed = -2.6 +frostfall_attackSpeed = -2.5 +harbinger_attackSpeed = -2.4 +hearthflame_attackSpeed = -3.2 +hiveheart_attackSpeed = -3.0 +icewhisper_attackSpeed = -2.7 +lichblade_attackSpeed = -3.1 +livyatan_attackSpeed = -2.1 +longswordofplague_attackSpeed = -2.4 +mjolnir_attackSpeed = -3.0 +magiblade_attackSpeed = -2.0 +magiscythe_attackSpeed = -2.4 +magispear_attackSpeed = -2.5 +moltenedge_attackSpeed = -2.1 +ribboncleaver_attackSpeed = -3.2 +shadowsting_attackSpeed = -1.7 +soulkeeper_attackSpeed = -2.9 +soulpyre_attackSpeed = -3.0 +soulrender_attackSpeed = -2.4 +soulstealer_attackSpeed = -1.5 +starsedge_attackSpeed = -2.0 +stormsedge_attackSpeed = -2.0 +stormbringer_attackSpeed = -2.4 +sunfire_attackSpeed = -2.4 +swordonastick_attackSpeed = -2.6 +tempest_attackSpeed = -2.5 +thewatcher_attackSpeed = -2.8 +thunderbrand_attackSpeed = -2.7 +twistedblade_attackSpeed = -2.6 +watchingwarglaive_attackSpeed = -2.2 +waxweaver_attackSpeed = -2.9 +whisperwind_attackSpeed = -2.0 +wickpiercer_attackSpeed = -2.1 +wraithfang_attackSpeed = -2.0 +chompolotl_attackSpeed = -2.5 +dreadtide_attackSpeed = -2.0 \ No newline at end of file diff --git a/config/simplytooltips/config.toml b/config/simplytooltips/config.toml new file mode 100644 index 0000000..e951c52 --- /dev/null +++ b/config/simplytooltips/config.toml @@ -0,0 +1,18 @@ +# Don't change this! Version used to track needed updates. +version = 0 +enableTooltipRendering = true + +[general] +scrollableTooltip = true +tooltipTabs = true +applyTooltipsToVanillaItems = false +applyTooltipsToModItems = false + +[layout] +padding = 10 +lineSpacing = 1 +maxTextWidth = 160 +maxBodyHeight = 160 + +[animation] +animationResetDelayMs = 180 \ No newline at end of file diff --git a/config/sound_physics_remastered/allowed_sounds.properties b/config/sound_physics_remastered/allowed_sounds.properties index 0305279..804622f 100644 --- a/config/sound_physics_remastered/allowed_sounds.properties +++ b/config/sound_physics_remastered/allowed_sounds.properties @@ -1,6 +1,222 @@ # Allowed sounds # Set to 'false' to disable sound physics for that sound +alexsmobs\:alligator_snapping_turtle_hurt=true +alexsmobs\:alligator_snapping_turtle_idle=true +alexsmobs\:anaconda_attack=true +alexsmobs\:anaconda_hurt=true +alexsmobs\:anaconda_slither=true +alexsmobs\:anteater_hurt=true +alexsmobs\:april_fools_music_box=true +alexsmobs\:april_fools_power_outage=true +alexsmobs\:april_fools_scream=true +alexsmobs\:bald_eagle_hurt=true +alexsmobs\:bald_eagle_idle=true +alexsmobs\:banana_slug_hurt=true +alexsmobs\:banana_slug_slime_expand=true +alexsmobs\:bear_dust=true +alexsmobs\:bison_hurt=true +alexsmobs\:bison_idle=true +alexsmobs\:blue_jay_hurt=true +alexsmobs\:blue_jay_idle=true +alexsmobs\:blue_jay_song=true +alexsmobs\:bone_serpent_hurt=true +alexsmobs\:bone_serpent_idle=true +alexsmobs\:bunfungus_attack=true +alexsmobs\:bunfungus_hurt=true +alexsmobs\:bunfungus_idle=true +alexsmobs\:bunfungus_jump=true +alexsmobs\:cachalot_whale_click=true +alexsmobs\:cachalot_whale_hurt=true +alexsmobs\:cachalot_whale_idle=true +alexsmobs\:caiman_hurt=true +alexsmobs\:caiman_idle=true +alexsmobs\:caiman_splash=true +alexsmobs\:capuchin_monkey_hurt=true +alexsmobs\:capuchin_monkey_idle=true +alexsmobs\:centipede_attack=true +alexsmobs\:centipede_hurt=true +alexsmobs\:centipede_walk=true +alexsmobs\:cockroach_hurt=true +alexsmobs\:comb_jelly_hurt=true +alexsmobs\:cosmaw_hurt=true +alexsmobs\:cosmaw_idle=true +alexsmobs\:cosmic_cod_hurt=true +alexsmobs\:crocodile_baby=true +alexsmobs\:crocodile_bite=true +alexsmobs\:crocodile_hurt=true +alexsmobs\:crocodile_idle=true +alexsmobs\:crow_hurt=true +alexsmobs\:crow_idle=true +alexsmobs\:devils_hole_pupfish_hurt=true +alexsmobs\:dropbear_hurt=true +alexsmobs\:dropbear_idle=true +alexsmobs\:elephant_die=true +alexsmobs\:elephant_hurt=true +alexsmobs\:elephant_idle=true +alexsmobs\:elephant_trumpet=true +alexsmobs\:elephant_walk=true +alexsmobs\:emu_hurt=true +alexsmobs\:emu_idle=true +alexsmobs\:end_pirate_door=true +alexsmobs\:endergrade_hurt=true +alexsmobs\:endergrade_idle=true +alexsmobs\:enderiophage_hurt=true +alexsmobs\:enderiophage_squish=true +alexsmobs\:enderiophage_walk=true +alexsmobs\:farseer_beam=true +alexsmobs\:farseer_emerge=true +alexsmobs\:farseer_hurt=true +alexsmobs\:farseer_idle=true +alexsmobs\:flutter_flap=true +alexsmobs\:flutter_hurt=true +alexsmobs\:flutter_idle=true +alexsmobs\:flutter_no=true +alexsmobs\:flutter_yes=true +alexsmobs\:fly_hurt=true +alexsmobs\:fly_idle=true +alexsmobs\:froststalker_hurt=true +alexsmobs\:froststalker_idle=true +alexsmobs\:gazelle_hurt=true +alexsmobs\:gelada_monkey_hurt=true +alexsmobs\:gelada_monkey_idle=true +alexsmobs\:giant_squid_games=true +alexsmobs\:giant_squid_hurt=true +alexsmobs\:giant_squid_tentacle=true +alexsmobs\:gorilla_hurt=true +alexsmobs\:gorilla_idle=true +alexsmobs\:grizzly_bear_die=true +alexsmobs\:grizzly_bear_hurt=true +alexsmobs\:grizzly_bear_idle=true +alexsmobs\:guster_hurt=true +alexsmobs\:guster_idle=true +alexsmobs\:hummingbird_hurt=true +alexsmobs\:hummingbird_idle=true +alexsmobs\:hummingbird_loop=true +alexsmobs\:jerboa_hurt=true +alexsmobs\:jerboa_idle=true +alexsmobs\:kangaroo_hurt=true +alexsmobs\:kangaroo_idle=true +alexsmobs\:komodo_dragon_hurt=true +alexsmobs\:komodo_dragon_idle=true +alexsmobs\:la_cucaracha=true +alexsmobs\:laviathan_hurt=true +alexsmobs\:laviathan_idle=true +alexsmobs\:leafcutter_ant_hurt=true +alexsmobs\:leafcutter_ant_queen_hurt=true +alexsmobs\:lobster_attack=true +alexsmobs\:lobster_hurt=true +alexsmobs\:maned_wolf_hurt=true +alexsmobs\:maned_wolf_idle=true +alexsmobs\:mantis_shrimp_hurt=true +alexsmobs\:mantis_shrimp_snap=true +alexsmobs\:maraca=true +alexsmobs\:mimic_octopus_hurt=true +alexsmobs\:mimic_octopus_idle=true +alexsmobs\:mimicube_hurt=true +alexsmobs\:mimicube_jump=true +alexsmobs\:moose_hurt=true +alexsmobs\:moose_idle=true +alexsmobs\:moose_jostle=true +alexsmobs\:mosquito_capsid_convert=true +alexsmobs\:mosquito_die=true +alexsmobs\:mosquito_hurt=true +alexsmobs\:mosquito_loop=true +alexsmobs\:mudskipper_hurt=true +alexsmobs\:mudskipper_spit=true +alexsmobs\:mudskipper_walk=true +alexsmobs\:mungus_hurt=true +alexsmobs\:mungus_idle=true +alexsmobs\:mungus_laser_end=true +alexsmobs\:mungus_laser_grow=true +alexsmobs\:mungus_laser_loop=true +alexsmobs\:murmur_anger=true +alexsmobs\:murmur_attack=true +alexsmobs\:murmur_hurt=true +alexsmobs\:murmur_idle=true +alexsmobs\:murmur_neck=true +alexsmobs\:music_disc_daze=true +alexsmobs\:music_disc_thime=true +alexsmobs\:music_wormboss=true +alexsmobs\:orca_die=true +alexsmobs\:orca_hurt=true +alexsmobs\:orca_idle=true +alexsmobs\:platypus_hurt=true +alexsmobs\:platypus_idle=true +alexsmobs\:potoo_call=true +alexsmobs\:potoo_hurt=true +alexsmobs\:raccoon_hurt=true +alexsmobs\:raccoon_idle=true +alexsmobs\:rain_frog_hurt=true +alexsmobs\:rain_frog_idle=true +alexsmobs\:rattlesnake_attack=true +alexsmobs\:rattlesnake_hurt=true +alexsmobs\:rattlesnake_loop=true +alexsmobs\:rhinoceros_hurt=true +alexsmobs\:rhinoceros_idle=true +alexsmobs\:roadrunner_hurt=true +alexsmobs\:roadrunner_idle=true +alexsmobs\:roadrunner_meep=true +alexsmobs\:rocky_roller_earthquake=true +alexsmobs\:rocky_roller_hurt=true +alexsmobs\:rocky_roller_idle=true +alexsmobs\:sculk_boomer=true +alexsmobs\:sculk_boomer_fart=true +alexsmobs\:seagull_hurt=true +alexsmobs\:seagull_idle=true +alexsmobs\:seal_hurt=true +alexsmobs\:seal_idle=true +alexsmobs\:shoebill_hurt=true +alexsmobs\:skelewag_hurt=true +alexsmobs\:skelewag_idle=true +alexsmobs\:skreecher_call=true +alexsmobs\:skreecher_clap=true +alexsmobs\:skreecher_detect=true +alexsmobs\:skreecher_hurt=true +alexsmobs\:skunk_hurt=true +alexsmobs\:skunk_idle=true +alexsmobs\:skunk_spray=true +alexsmobs\:snow_leopard_hurt=true +alexsmobs\:snow_leopard_idle=true +alexsmobs\:soul_vulture_hurt=true +alexsmobs\:soul_vulture_idle=true +alexsmobs\:spectre_hurt=true +alexsmobs\:spectre_idle=true +alexsmobs\:stink_ray=true +alexsmobs\:straddler_hurt=true +alexsmobs\:straddler_idle=true +alexsmobs\:sugar_glider_hurt=true +alexsmobs\:sugar_glider_idle=true +alexsmobs\:sunbird_hurt=true +alexsmobs\:sunbird_idle=true +alexsmobs\:tarantula_hawk_hurt=true +alexsmobs\:tarantula_hawk_wing=true +alexsmobs\:tasmanian_devil_hurt=true +alexsmobs\:tasmanian_devil_idle=true +alexsmobs\:tasmanian_devil_roar=true +alexsmobs\:tendon_whip=true +alexsmobs\:terrapin_hurt=true +alexsmobs\:tiger_angry=true +alexsmobs\:tiger_hurt=true +alexsmobs\:tiger_idle=true +alexsmobs\:toucan_hurt=true +alexsmobs\:toucan_idle=true +alexsmobs\:transmute_item=true +alexsmobs\:triops_hurt=true +alexsmobs\:tusklin_hurt=true +alexsmobs\:tusklin_idle=true +alexsmobs\:underminer_hurt=true +alexsmobs\:underminer_idle=true +alexsmobs\:underminer_step=true +alexsmobs\:vine_lasso=true +alexsmobs\:void_portal_close=true +alexsmobs\:void_portal_open=true +alexsmobs\:void_worm_hurt=true +alexsmobs\:void_worm_idle=true +alexsmobs\:warped_mosco_hurt=true +alexsmobs\:warped_mosco_idle=true +alexsmobs\:warped_toad_hurt=true +alexsmobs\:warped_toad_idle=true aquaculture\:bobber_bait=true aquaculture\:bobber_land_lava=true aquaculture\:bobber_note_catch=true @@ -314,6 +530,18 @@ create\:worldshaper_place=true create\:wrench_remove=true create\:wrench_remove_compounded_1=true create\:wrench_rotate=true +dtnatures_spirit\:falling_fruit.bonk=true +dynamictrees\:falling_tree_big_end=true +dynamictrees\:falling_tree_big_start=true +dynamictrees\:falling_tree_fungus_end=true +dynamictrees\:falling_tree_fungus_small_end=true +dynamictrees\:falling_tree_fungus_start=true +dynamictrees\:falling_tree_hit_water=true +dynamictrees\:falling_tree_medium_end=true +dynamictrees\:falling_tree_medium_start=true +dynamictrees\:falling_tree_small_end=true +dynamictrees\:falling_tree_small_end_bare=true +dynamictrees\:falling_tree_small_hit_water=true farmersdelight\:block.cabinet.close=true farmersdelight\:block.cabinet.open=true farmersdelight\:block.cooking_pot.boil=true @@ -334,6 +562,10 @@ farmersdelight\:entity.rotten_tomato.hit=true farmersdelight\:entity.rotten_tomato.throw=true farmersdelight\:item.skillet.attack.strong=true farmersdelight\:item.skillet.attack.weak=true +idas\:calidum=true +idas\:slither=true +integrated_stronghold\:forlorn=true +integrated_stronghold\:sight=true minecraft\:ambient.basalt_deltas.additions=true minecraft\:ambient.basalt_deltas.loop=true minecraft\:ambient.basalt_deltas.mood=true @@ -1947,6 +2179,14 @@ minecraft\:ui.toast.in=true minecraft\:ui.toast.out=true minecraft\:weather.rain=false minecraft\:weather.rain.above=false +natures_spirit\:music.overworld.alpine=true +natures_spirit\:music.overworld.arid=true +natures_spirit\:music.overworld.aspen=true +natures_spirit\:music.overworld.desert=true +natures_spirit\:music.overworld.maple=true +natures_spirit\:music.overworld.redwood=true +natures_spirit\:music.overworld.tropical=true +natures_spirit\:music.overworld.wisteria=true parcool\:action.breakfall.just=true parcool\:action.breakfall.roll=true parcool\:action.breakfall.tap=true @@ -1966,6 +2206,245 @@ parcool\:parcool.disable=true parcool\:parcool.enable=true parcool\:zipline.remove=true parcool\:zipline.set=true +quark\:ambient.chatter=true +quark\:ambient.clock=true +quark\:ambient.crickets=true +quark\:ambient.drips=true +quark\:ambient.fire=true +quark\:ambient.ocean=true +quark\:ambient.rain=true +quark\:ambient.wind=true +quark\:block.monster_box.growl=true +quark\:block.pipe.pickup=true +quark\:block.pipe.pickup.lenny=true +quark\:block.pipe.shoot=true +quark\:block.pipe.shoot.lenny=true +quark\:block.potato.do_it=true +quark\:block.potato.hurt=true +quark\:block.potato.kingbdogz=true +quark\:block.potato.soda=true +quark\:block.potato.yung=true +quark\:entity.crab.die=true +quark\:entity.crab.hurt=true +quark\:entity.crab.idle=true +quark\:entity.foxhound.ambient=true +quark\:entity.foxhound.crackle=true +quark\:entity.foxhound.death=true +quark\:entity.foxhound.eat=true +quark\:entity.foxhound.growl=true +quark\:entity.foxhound.hurt=true +quark\:entity.foxhound.pant=true +quark\:entity.foxhound.shake=true +quark\:entity.foxhound.whine=true +quark\:entity.parrot.egg=true +quark\:entity.pickarang.clank=true +quark\:entity.pickarang.pickup=true +quark\:entity.pickarang.spark=true +quark\:entity.pickarang.throw=true +quark\:entity.shiba.ambient=true +quark\:entity.shiba.death=true +quark\:entity.shiba.eat_arrow=true +quark\:entity.shiba.hurt=true +quark\:entity.shiba.pant=true +quark\:entity.shiba.step=true +quark\:entity.shiba.whine=true +quark\:entity.soul_bead.idle=true +quark\:entity.stoneling.cry=true +quark\:entity.stoneling.die=true +quark\:entity.stoneling.eat=true +quark\:entity.stoneling.give=true +quark\:entity.stoneling.meep=true +quark\:entity.stoneling.michael=true +quark\:entity.stoneling.purr=true +quark\:entity.stoneling.take=true +quark\:entity.toretoise.angry=true +quark\:entity.toretoise.die=true +quark\:entity.toretoise.eat=true +quark\:entity.toretoise.eat_satiated=true +quark\:entity.toretoise.harvest=true +quark\:entity.toretoise.hurt=true +quark\:entity.toretoise.idle=true +quark\:entity.toretoise.regrow=true +quark\:item.bucket.empty_crab=true +quark\:item.bucket.fill_crab=true +quark\:item.camera.shutter=true +quark\:item.soul_powder.spawn=true +quark\:music.endermosh=true +quark\:music.glimmering_weald=true +quark\:pet.device=true +quark\:pet.neko=true +quark\:pet.slime=true +quark\:pet.wire=true +simplycataclysm\:accursed_rage_max=true +simplycataclysm\:cursium_hit=true +simplycataclysm\:ignitium_hit=true +simplycataclysm\:mecha_pulse_shockwave=true +simplycataclysm\:witherite_hit=true +simplyswords\:activate_plinth_03=true +simplyswords\:ambience_wind_loop=true +simplyswords\:dark_activation_distorted=true +simplyswords\:dark_sword_attack_01=true +simplyswords\:dark_sword_attack_02=true +simplyswords\:dark_sword_attack_03=true +simplyswords\:dark_sword_attack_with_blood_01=true +simplyswords\:dark_sword_attack_with_blood_02=true +simplyswords\:dark_sword_attack_with_blood_03=true +simplyswords\:dark_sword_block=true +simplyswords\:dark_sword_breaks=true +simplyswords\:dark_sword_enchant=true +simplyswords\:dark_sword_parry=true +simplyswords\:dark_sword_spell=true +simplyswords\:dark_sword_unfold=true +simplyswords\:dark_sword_whoosh_01=true +simplyswords\:dark_sword_whoosh_02=true +simplyswords\:dark_sword_whoosh_03=true +simplyswords\:dark_sword_whoosh_04=true +simplyswords\:distortion_arc_01=true +simplyswords\:distortion_arc_02=true +simplyswords\:distortion_arc_03=true +simplyswords\:elemental_bow_earth_shoot_flyby_01=true +simplyswords\:elemental_bow_earth_shoot_flyby_02=true +simplyswords\:elemental_bow_earth_shoot_flyby_03=true +simplyswords\:elemental_bow_earth_shoot_impact_01=true +simplyswords\:elemental_bow_earth_shoot_impact_02=true +simplyswords\:elemental_bow_earth_shoot_impact_03=true +simplyswords\:elemental_bow_fire_shoot_flyby_01=true +simplyswords\:elemental_bow_fire_shoot_flyby_02=true +simplyswords\:elemental_bow_fire_shoot_flyby_03=true +simplyswords\:elemental_bow_fire_shoot_impact_01=true +simplyswords\:elemental_bow_fire_shoot_impact_02=true +simplyswords\:elemental_bow_fire_shoot_impact_03=true +simplyswords\:elemental_bow_holy_shoot_flyby_01=true +simplyswords\:elemental_bow_holy_shoot_flyby_02=true +simplyswords\:elemental_bow_holy_shoot_flyby_03=true +simplyswords\:elemental_bow_holy_shoot_impact_01=true +simplyswords\:elemental_bow_holy_shoot_impact_02=true +simplyswords\:elemental_bow_holy_shoot_impact_03=true +simplyswords\:elemental_bow_ice_shoot_flyby_01=true +simplyswords\:elemental_bow_ice_shoot_flyby_02=true +simplyswords\:elemental_bow_ice_shoot_flyby_03=true +simplyswords\:elemental_bow_ice_shoot_impact_01=true +simplyswords\:elemental_bow_ice_shoot_impact_02=true +simplyswords\:elemental_bow_ice_shoot_impact_03=true +simplyswords\:elemental_bow_poison_attack_01=true +simplyswords\:elemental_bow_poison_attack_02=true +simplyswords\:elemental_bow_poison_attack_03=true +simplyswords\:elemental_bow_recharge=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_01=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_02=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_03=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_01=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_02=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_03=true +simplyswords\:elemental_bow_thunder_shoot_flyby_01=true +simplyswords\:elemental_bow_thunder_shoot_flyby_02=true +simplyswords\:elemental_bow_thunder_shoot_flyby_03=true +simplyswords\:elemental_bow_thunder_shoot_impact_01=true +simplyswords\:elemental_bow_thunder_shoot_impact_02=true +simplyswords\:elemental_bow_thunder_shoot_impact_03=true +simplyswords\:elemental_bow_water_shoot_flyby_01=true +simplyswords\:elemental_bow_water_shoot_flyby_02=true +simplyswords\:elemental_bow_water_shoot_flyby_03=true +simplyswords\:elemental_bow_water_shoot_impact_01=true +simplyswords\:elemental_bow_water_shoot_impact_02=true +simplyswords\:elemental_bow_water_shoot_impact_03=true +simplyswords\:elemental_bow_wind_shoot_flyby_01=true +simplyswords\:elemental_bow_wind_shoot_flyby_02=true +simplyswords\:elemental_bow_wind_shoot_flyby_03=true +simplyswords\:elemental_bow_wind_shoot_impact_01=true +simplyswords\:elemental_bow_wind_shoot_impact_02=true +simplyswords\:elemental_bow_wind_shoot_impact_03=true +simplyswords\:elemental_sword_earth_attack_01=true +simplyswords\:elemental_sword_earth_attack_02=true +simplyswords\:elemental_sword_earth_attack_03=true +simplyswords\:elemental_sword_fire_attack_01=true +simplyswords\:elemental_sword_fire_attack_02=true +simplyswords\:elemental_sword_fire_attack_03=true +simplyswords\:elemental_sword_holy_attack_01=true +simplyswords\:elemental_sword_holy_attack_02=true +simplyswords\:elemental_sword_holy_attack_03=true +simplyswords\:elemental_sword_ice_attack_01=true +simplyswords\:elemental_sword_ice_attack_02=true +simplyswords\:elemental_sword_ice_attack_03=true +simplyswords\:elemental_sword_sci-fi_attack_01=true +simplyswords\:elemental_sword_sci-fi_attack_02=true +simplyswords\:elemental_sword_sci-fi_attack_03=true +simplyswords\:elemental_sword_thunder_attack_01=true +simplyswords\:elemental_sword_thunder_attack_02=true +simplyswords\:elemental_sword_thunder_attack_03=true +simplyswords\:elemental_sword_water_attack_01=true +simplyswords\:elemental_sword_water_attack_02=true +simplyswords\:elemental_sword_water_attack_03=true +simplyswords\:elemental_sword_wind_attack_01=true +simplyswords\:elemental_sword_wind_attack_02=true +simplyswords\:elemental_sword_wind_attack_03=true +simplyswords\:magic_bow_charge_long_version=true +simplyswords\:magic_bow_charge_short_version=true +simplyswords\:magic_bow_pull_back_long_version_01=true +simplyswords\:magic_bow_pull_back_long_version_02=true +simplyswords\:magic_bow_pull_back_long_version_03=true +simplyswords\:magic_bow_pull_back_short_version_01=true +simplyswords\:magic_bow_pull_back_short_version_02=true +simplyswords\:magic_bow_pull_back_short_version_03=true +simplyswords\:magic_bow_shoot_flyby_01=true +simplyswords\:magic_bow_shoot_flyby_02=true +simplyswords\:magic_bow_shoot_flyby_03=true +simplyswords\:magic_bow_shoot_impact_01=true +simplyswords\:magic_bow_shoot_impact_02=true +simplyswords\:magic_bow_shoot_impact_03=true +simplyswords\:magic_bow_shoot_miss_01=true +simplyswords\:magic_bow_shoot_miss_02=true +simplyswords\:magic_bow_shoot_miss_03=true +simplyswords\:magic_shamanic_nordic_02=true +simplyswords\:magic_shamanic_nordic_21=true +simplyswords\:magic_shamanic_nordic_22=true +simplyswords\:magic_shamanic_nordic_23=true +simplyswords\:magic_shamanic_nordic_27=true +simplyswords\:magic_shamanic_voice_04=true +simplyswords\:magic_shamanic_voice_12=true +simplyswords\:magic_shamanic_voice_15=true +simplyswords\:magic_shamanic_voice_20=true +simplyswords\:magic_sword_attack_01=true +simplyswords\:magic_sword_attack_02=true +simplyswords\:magic_sword_attack_03=true +simplyswords\:magic_sword_attack_04=true +simplyswords\:magic_sword_attack_with_blood_01=true +simplyswords\:magic_sword_attack_with_blood_02=true +simplyswords\:magic_sword_attack_with_blood_03=true +simplyswords\:magic_sword_attack_with_blood_04=true +simplyswords\:magic_sword_block_01=true +simplyswords\:magic_sword_block_02=true +simplyswords\:magic_sword_breaks=true +simplyswords\:magic_sword_parry_01=true +simplyswords\:magic_sword_parry_02=true +simplyswords\:magic_sword_parry_03=true +simplyswords\:magic_sword_parry_04=true +simplyswords\:magic_sword_parry_various_hits=true +simplyswords\:magic_sword_spell_01=true +simplyswords\:magic_sword_spell_02=true +simplyswords\:magic_sword_spell_03=true +simplyswords\:magic_sword_whoosh_01=true +simplyswords\:magic_sword_whoosh_02=true +simplyswords\:magic_sword_whoosh_03=true +simplyswords\:magic_sword_whoosh_04=true +simplyswords\:magic_sword_whoosh_05=true +simplyswords\:magic_sword_whoosh_06=true +simplyswords\:magic_sword_whoosh_07=true +simplyswords\:object_impact_thud=true +simplyswords\:object_impact_thud_repeat=true +simplyswords\:slash_01=true +simplyswords\:spell_fire=true +simplyswords\:spell_misc_02=true +simplyswords\:stone_slide_loop_03=true +simplyswords\:swing_normal=true +simplyswords\:swing_omen_one=true +simplyswords\:swing_omen_two=true +simplyswords\:swing_scifi=true +simplyswords\:swing_small=true +simplyswords\:swing_woosh=true +simplyswords\:throw_mjolnir=true +simplyswords\:throw_mjolnir_long=true +simplyswords\:throw_mjolnir_short=true supplementaries\:block.awning.bounce=true supplementaries\:block.bellows.blow=true supplementaries\:block.bellows.retract=true diff --git a/config/zeta-common.toml b/config/zeta-common.toml new file mode 100644 index 0000000..ae41d3d --- /dev/null +++ b/config/zeta-common.toml @@ -0,0 +1,26 @@ +[general] + #Disable this to turn off the module system logic that makes features turn off when specified mods with the same content are loaded + "Use Anti Overlap" = true + #Enable Zeta's piston structure resolver, needed for some Quark or other mod features. If you're having troubles, try turning this off, but be aware other Zeta-using mods can enable it too. + "Use Piston Logic Replacement" = true + #Changes the piston push limit. Only has an effect if Zeta's piston structure resolver is in use. + #Allowed values: (0,) + "Piston Push Limit" = 12 + #Set to false to disable the behavior where Zeta will automatically hide any disabled items from creative and JEI + "Hide Disabled Content" = true + #Set to false to disable Zeta's item info when viewing recipe/uses for an item in JEI + "Enable Jei Item Info" = true + #For JEI info purposes, add any items here to specifically disable their JEI info from Zeta. Note that Zeta already only shows info that's relevant to which features are enabled + "Suppressed Info" = [] + #Set to false to stop Zeta from adding mod items to multi-requirement vanilla advancements + "Enable Advancement Modification" = true + #Set to false to stop Zeta mods from adding their own advancements + "Enable Modded Advancements" = true + #Set to true to enable a system that debugs Zeta mod worldgen features. This should ONLY be used if you're asked to by a dev. + "Enable Worldgen Watchdog" = false + #Set to true to make the Zeta big worldgen features generate as spheres rather than unique shapes. It's faster, but won't look as cool + "Use Fast Worldgen" = false + #Set to true to enable verbose logging of creative tab logic, for debugging purposes + "Enable Creative Verbose Logging" = false + #Set to true to force all creative tab additions to be added to the end of the creative tabs rather than the middle, as a failsafe + "Force Creative Tab Appends" = false diff --git a/minecraftinstance.json b/minecraftinstance.json index 8a69eff..a1ea119 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -1 +1 @@ -{"baseModLoader":{"forgeVersion":"21.1.226","name":"neoforge-21.1.226","type":6,"downloadUrl":"","filename":"neoforge-21.1.226.jar","installMethod":6,"latest":false,"recommended":false,"versionJson":"{\"assetIndex\":null,\"id\":\"neoforge-21.1.226\",\"time\":\"2026-04-11T13:05:21.8144125\",\"releaseTime\":\"2026-04-11T13:05:21.8144125\",\"type\":\"release\",\"minecraftArguments\":null,\"minimumLauncherVersion\":0,\"assets\":null,\"inheritsFrom\":\"1.21.1\",\"jar\":null,\"logging\":null,\"libraries\":[{\"name\":\"net.neoforged.fancymodloader:earlydisplay:4.0.42\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"sha1\":\"46555dbfff14e9e052f1f693aed14d542a74e111\",\"size\":261718},\"classifiers\":null}},{\"name\":\"net.neoforged.fancymodloader:loader:4.0.42\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"sha1\":\"76e15f98bf676fb44b36c5e776f52a55581ec43a\",\"size\":504899},\"classifiers\":null}},{\"name\":\"net.neoforged.accesstransformers:at-modlauncher:10.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"sha1\":\"5aba50202aceead086bc09fbc2751c9f05cb4890\",\"size\":2347},\"classifiers\":null}},{\"name\":\"net.neoforged:accesstransformers:10.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"sha1\":\"fd83b5725f76eae9115e9355fa1c456a6a441400\",\"size\":67234},\"classifiers\":null}},{\"name\":\"net.neoforged:bus:8.0.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"sha1\":\"5b2d33285ab5d1554e9798ad98c40d6ea3868bd5\",\"size\":30340},\"classifiers\":null}},{\"name\":\"net.neoforged:coremods:7.0.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"sha1\":\"09147e6f638b4272b3bd5fc8f92ad37802512c6c\",\"size\":22659},\"classifiers\":null}},{\"name\":\"cpw.mods:modlauncher:11.0.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"sha1\":\"b8f0d49294f733fdb6173931b263553e943dc950\",\"size\":116486},\"classifiers\":null}},{\"name\":\"net.neoforged:mergetool:2.0.0:api\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"sha1\":\"52fe1949be64e3303aabaaa21e315f551db9c9f4\",\"size\":2550},\"classifiers\":null}},{\"name\":\"com.electronwill.night-config:toml:3.8.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"sha1\":\"90b2fd6efcb4a7d5b9810cf78f9d824994d717f2\",\"size\":39516},\"classifiers\":null}},{\"name\":\"com.electronwill.night-config:core:3.8.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"sha1\":\"b442a95f09e349927f5a945ecb594455870fcf4f\",\"size\":382911},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarSelector:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"sha1\":\"fb3cc7a58af22ad2880adb98af6d518128c47dae\",\"size\":17168},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarMetadata:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"sha1\":\"f8da03683dc81694556dc3e177c5e3bb77ae6fcb\",\"size\":15648},\"classifiers\":null}},{\"name\":\"org.apache.maven:maven-artifact:3.8.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"sha1\":\"4433f50c07debefaed0553bd0068f4f48d449313\",\"size\":58077},\"classifiers\":null}},{\"name\":\"net.jodah:typetools:0.6.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"sha1\":\"a01aaa6ddaea9ec07ec4f209487b7a46a526283a\",\"size\":18281},\"classifiers\":null}},{\"name\":\"net.minecrell:terminalconsoleappender:1.3.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"sha1\":\"b562e9bb61235c9520e26282cdee71f8f802d1fc\",\"size\":16949},\"classifiers\":null}},{\"name\":\"net.fabricmc:sponge-mixin:0.15.2+mixin.0.8.7\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"sha1\":\"2af2f021d8e02a0220dc27a7a72b4666d66d44ca\",\"size\":1494751},\"classifiers\":null}},{\"name\":\"org.openjdk.nashorn:nashorn-core:15.4\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"sha1\":\"f67f5ffaa5f5130cf6fb9b133da00c7df3b532a5\",\"size\":2167292},\"classifiers\":null}},{\"name\":\"org.apache.commons:commons-lang3:3.14.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"sha1\":\"1ed471194b02f2c6cb734a0cd6f6f107c673afae\",\"size\":657952},\"classifiers\":null}},{\"name\":\"cpw.mods:bootstraplauncher:2.0.2\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"sha1\":\"1a2d076cbc33b0520cbacd591224427b2a20047d\",\"size\":11116},\"classifiers\":null}},{\"name\":\"cpw.mods:securejarhandler:3.0.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"sha1\":\"c0ef95cecd8699a0449053ac7d9c160748d902cd\",\"size\":103765},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-commons:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"sha1\":\"36e4d212970388e5bd2c5180292012502df461bb\",\"size\":73498},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-util:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"sha1\":\"395f1c1f035258511f27bc9b2583d76e4b143f59\",\"size\":94559},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-analysis:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"sha1\":\"b9747a320844b6cb1eacd90d8ecfd260a16c01d3\",\"size\":35151},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-tree:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"sha1\":\"018419ca5b77a2f81097c741e7872e6ab8d2f40d\",\"size\":51934},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm/9.8/asm-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm/9.8/asm-9.8.jar\",\"sha1\":\"dc19ecb3f7889b7860697215cae99c0f9b6f6b4b\",\"size\":126113},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarFileSystems:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"sha1\":\"78f59f89defcd032ed788b151ca6a0d40ace796a\",\"size\":31807},\"classifiers\":null}},{\"name\":\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"url\":\"https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"sha1\":\"4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\",\"size\":78146},\"classifiers\":null}},{\"name\":\"org.slf4j:slf4j-api:2.0.9\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"url\":\"https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"sha1\":\"7cf2726fdcfbc8610f9a71fb3ed639871f315340\",\"size\":64579},\"classifiers\":null}},{\"name\":\"org.antlr:antlr4-runtime:4.13.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"sha1\":\"17125bae1d965624e265ef49552f6465a2bfa307\",\"size\":326305},\"classifiers\":null}},{\"name\":\"com.mojang:logging:1.2.7\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"url\":\"https://libraries.minecraft.net/com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"sha1\":\"24cb95ffb0e3433fd6e844c04e68009e504ca1c0\",\"size\":15343},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-slf4j2-impl:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"sha1\":\"d7e6693c2606cb7e7335047d7bb96dec52db5665\",\"size\":27364},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-core:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"sha1\":\"7183a25510a02ad00cc6a95d3b3d2a7d3c5a8dc4\",\"size\":1900022},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-api:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"sha1\":\"bea6fede6328fabafd7e68363161a7ea6605abd1\",\"size\":335001},\"classifiers\":null}},{\"name\":\"org.jline:jline-reader:3.20.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"sha1\":\"8f15415b022a25b473e8e16c28ae913186ffb9c4\",\"size\":171052},\"classifiers\":null}},{\"name\":\"org.jline:jline-terminal:3.20.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"sha1\":\"d0ddcc708ddf527a3454c941b7b9225cc83a15ff\",\"size\":228481},\"classifiers\":null}},{\"name\":\"commons-io:commons-io:2.15.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"url\":\"https://libraries.minecraft.net/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"sha1\":\"f11560da189ab563a5c8e351941415430e9304ea\",\"size\":501218},\"classifiers\":null}},{\"name\":\"net.minecraftforge:srgutils:0.4.15\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"sha1\":\"ca408b131759478f164e010fae0d73997e125fb5\",\"size\":69393},\"classifiers\":null}},{\"name\":\"com.google.guava:guava:32.1.2-jre\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"sha1\":\"5e64ec7e056456bef3a4bc4c6fdaef71e8ab6318\",\"size\":3041591},\"classifiers\":null}},{\"name\":\"com.google.guava:failureaccess:1.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"sha1\":\"1dcf1de382a0bf95a3d8b0849546c88bac1292c9\",\"size\":4617},\"classifiers\":null}},{\"name\":\"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"sha1\":\"b421526c5f297295adef1c886e5246c39d4ac629\",\"size\":2199},\"classifiers\":null}},{\"name\":\"com.google.code.findbugs:jsr305:3.0.2\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"url\":\"https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"sha1\":\"25ea2e8b0c338a877313bd4672d3fe056ea78f0d\",\"size\":19936},\"classifiers\":null}},{\"name\":\"org.checkerframework:checker-qual:3.33.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"url\":\"https://libraries.minecraft.net/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"sha1\":\"de2b60b62da487644fc11f734e73c8b0b431238f\",\"size\":223979},\"classifiers\":null}},{\"name\":\"com.google.errorprone:error_prone_annotations:2.18.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"url\":\"https://libraries.minecraft.net/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"sha1\":\"89b684257096f548fa39a7df9fdaa409d4d4df91\",\"size\":16017},\"classifiers\":null}},{\"name\":\"com.google.j2objc:j2objc-annotations:2.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"url\":\"https://libraries.minecraft.net/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"sha1\":\"c85270e307e7b822f1086b93689124b89768e273\",\"size\":9301},\"classifiers\":null}},{\"name\":\"com.google.code.gson:gson:2.10.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"sha1\":\"b3add478d4382b78ea20b1671390a858002feb6c\",\"size\":283367},\"classifiers\":null}},{\"name\":\"org.codehaus.plexus:plexus-utils:3.3.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"sha1\":\"cf43b5391de623b36fe066a21127baef82c64022\",\"size\":263253},\"classifiers\":null}},{\"name\":\"com.machinezoo.noexception:noexception:1.7.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"sha1\":\"b65330c98e38a1f915fa54a6e5eca496505e3f0a\",\"size\":250861},\"classifiers\":null}}],\"mainClass\":\"cpw.mods.bootstraplauncher.BootstrapLauncher\",\"arguments\":{\"game\":[\"--fml.neoForgeVersion\",\"21.1.226\",\"--fml.fmlVersion\",\"4.0.42\",\"--fml.mcVersion\",\"1.21.1\",\"--fml.neoFormVersion\",\"20240808.144430\",\"--launchTarget\",\"forgeclient\"],\"jvm\":[\"-Djava.net.preferIPv6Addresses=system\",\"-DignoreList=client-extra,${version_name}.jar\",\"-DlibraryDirectory=${library_directory}\",\"-p\",\"${library_directory}/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar${classpath_separator}${library_directory}/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm/9.8/asm-9.8.jar${classpath_separator}${library_directory}/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"--add-modules\",\"ALL-MODULE-PATH\",\"--add-opens\",\"java.base/java.util.jar=cpw.mods.securejarhandler\",\"--add-opens\",\"java.base/java.lang.invoke=cpw.mods.securejarhandler\",\"--add-exports\",\"java.base/sun.security.util=cpw.mods.securejarhandler\",\"--add-exports\",\"jdk.naming.dns/com.sun.jndi.dns=java.naming\"]}}","librariesInstallLocation":"{0}//libraries//net//neoforged//neoforge//21.1.226","minecraftVersion":"1.21.1","installProfileJson":"{\"spec\":1,\"profile\":\"NeoForge\",\"version\":\"neoforge-21.1.226\",\"minecraft\":\"1.21.1\",\"json\":\"/version.json\",\"logo\":\"/big_logo.png\",\"welcome\":\"Welcome to the simple NeoForge installer\",\"path\":\"net.neoforged:neoforge:21.1.226\",\"data\":{\"MAPPINGS\":{\"client\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings@txt]\",\"server\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings@txt]\"},\"MOJMAPS\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:mappings@txt]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:mappings@txt]\"},\"MERGED_MAPPINGS\":{\"client\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings-merged@txt]\",\"server\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings-merged@txt]\"},\"BINPATCH\":{\"client\":\"/data/client.lzma\",\"server\":\"/data/server.lzma\"},\"MC_UNPACKED\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:unpacked]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:unpacked]\"},\"MC_SLIM\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:slim]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:slim]\"},\"MC_EXTRA\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:extra]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:extra]\"},\"MC_SRG\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:srg]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:srg]\"},\"PATCHED\":{\"client\":\"[net.neoforged:neoforge:21.1.226:client]\",\"server\":\"[net.neoforged:neoforge:21.1.226:server]\"},\"MCP_VERSION\":{\"client\":\"'1.21.1-20240808.144430'\",\"server\":\"'1.21.1-20240808.144430'\"},\"SIDE\":{\"client\":\"client\",\"server\":\"server\"}},\"processors\":[{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"MCP_DATA\",\"--input\",\"[net.neoforged:neoform:1.21.1-20240808.144430@zip]\",\"--output\",\"{MAPPINGS}\",\"--key\",\"mappings\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"DOWNLOAD_MOJMAPS\",\"--version\",\"1.21.1\",\"--side\",\"{SIDE}\",\"--output\",\"{MOJMAPS}\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"MERGE_MAPPING\",\"--left\",\"{MAPPINGS}\",\"--right\",\"{MOJMAPS}\",\"--output\",\"{MERGED_MAPPINGS}\",\"--classes\",\"--fields\",\"--methods\",\"--reverse-right\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:jarsplitter:2.1.2\",\"classpath\":[\"net.neoforged.installertools:jarsplitter:2.1.2\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"net.neoforged:srgutils:1.0.0\",\"net.neoforged.installertools:cli-utils:2.1.2\"],\"args\":[\"--input\",\"{MINECRAFT_JAR}\",\"--slim\",\"{MC_SLIM}\",\"--extra\",\"{MC_EXTRA}\",\"--srg\",\"{MERGED_MAPPINGS}\"],\"sides\":[\"client\"]},{\"jar\":\"net.neoforged:AutoRenamingTool:2.0.3:all\",\"classpath\":[\"net.neoforged:AutoRenamingTool:2.0.3:all\"],\"args\":[\"--input\",\"{MC_SLIM}\",\"--output\",\"{MC_SRG}\",\"--names\",\"{MERGED_MAPPINGS}\",\"--ann-fix\",\"--ids-fix\",\"--src-fix\",\"--record-fix\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\",\"classpath\":[\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\"],\"args\":[\"--clean\",\"{MC_SRG}\",\"--output\",\"{PATCHED}\",\"--apply\",\"{BINPATCH}\"],\"sides\":null}],\"libraries\":[{\"name\":\"net.neoforged.fancymodloader:earlydisplay:4.0.42\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"46555dbfff14e9e052f1f693aed14d542a74e111\",\"size\":261718,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"path\":\"net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\"}}},{\"name\":\"net.neoforged.fancymodloader:loader:4.0.42\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"76e15f98bf676fb44b36c5e776f52a55581ec43a\",\"size\":504899,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"path\":\"net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\"}}},{\"name\":\"net.neoforged.accesstransformers:at-modlauncher:10.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5aba50202aceead086bc09fbc2751c9f05cb4890\",\"size\":2347,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"path\":\"net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\"}}},{\"name\":\"net.neoforged:accesstransformers:10.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"fd83b5725f76eae9115e9355fa1c456a6a441400\",\"size\":67234,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"path\":\"net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\"}}},{\"name\":\"net.neoforged:bus:8.0.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5b2d33285ab5d1554e9798ad98c40d6ea3868bd5\",\"size\":30340,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"path\":\"net/neoforged/bus/8.0.5/bus-8.0.5.jar\"}}},{\"name\":\"net.neoforged:coremods:7.0.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"09147e6f638b4272b3bd5fc8f92ad37802512c6c\",\"size\":22659,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"path\":\"net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\"}}},{\"name\":\"cpw.mods:modlauncher:11.0.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b8f0d49294f733fdb6173931b263553e943dc950\",\"size\":116486,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"path\":\"cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\"}}},{\"name\":\"net.neoforged:mergetool:2.0.0:api\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"52fe1949be64e3303aabaaa21e315f551db9c9f4\",\"size\":2550,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"path\":\"net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\"}}},{\"name\":\"com.electronwill.night-config:toml:3.8.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"90b2fd6efcb4a7d5b9810cf78f9d824994d717f2\",\"size\":39516,\"url\":\"https://maven.neoforged.net/releases/com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"path\":\"com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\"}}},{\"name\":\"com.electronwill.night-config:core:3.8.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b442a95f09e349927f5a945ecb594455870fcf4f\",\"size\":382911,\"url\":\"https://maven.neoforged.net/releases/com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"path\":\"com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\"}}},{\"name\":\"net.neoforged:JarJarSelector:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"fb3cc7a58af22ad2880adb98af6d518128c47dae\",\"size\":17168,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"path\":\"net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\"}}},{\"name\":\"net.neoforged:JarJarMetadata:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f8da03683dc81694556dc3e177c5e3bb77ae6fcb\",\"size\":15648,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"path\":\"net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\"}}},{\"name\":\"org.apache.maven:maven-artifact:3.8.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4433f50c07debefaed0553bd0068f4f48d449313\",\"size\":58077,\"url\":\"https://maven.neoforged.net/releases/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"path\":\"org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\"}}},{\"name\":\"net.jodah:typetools:0.6.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"a01aaa6ddaea9ec07ec4f209487b7a46a526283a\",\"size\":18281,\"url\":\"https://maven.neoforged.net/releases/net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"path\":\"net/jodah/typetools/0.6.3/typetools-0.6.3.jar\"}}},{\"name\":\"net.minecrell:terminalconsoleappender:1.3.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b562e9bb61235c9520e26282cdee71f8f802d1fc\",\"size\":16949,\"url\":\"https://maven.neoforged.net/releases/net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"path\":\"net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\"}}},{\"name\":\"net.fabricmc:sponge-mixin:0.15.2+mixin.0.8.7\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"2af2f021d8e02a0220dc27a7a72b4666d66d44ca\",\"size\":1494751,\"url\":\"https://maven.neoforged.net/releases/net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"path\":\"net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\"}}},{\"name\":\"org.openjdk.nashorn:nashorn-core:15.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f67f5ffaa5f5130cf6fb9b133da00c7df3b532a5\",\"size\":2167292,\"url\":\"https://maven.neoforged.net/releases/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"path\":\"org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\"}}},{\"name\":\"org.apache.commons:commons-lang3:3.14.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1ed471194b02f2c6cb734a0cd6f6f107c673afae\",\"size\":657952,\"url\":\"https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"path\":\"org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\"}}},{\"name\":\"cpw.mods:bootstraplauncher:2.0.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1a2d076cbc33b0520cbacd591224427b2a20047d\",\"size\":11116,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"path\":\"cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\"}}},{\"name\":\"cpw.mods:securejarhandler:3.0.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c0ef95cecd8699a0449053ac7d9c160748d902cd\",\"size\":103765,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"path\":\"cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-commons:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"36e4d212970388e5bd2c5180292012502df461bb\",\"size\":73498,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"path\":\"org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-util:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"395f1c1f035258511f27bc9b2583d76e4b143f59\",\"size\":94559,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"path\":\"org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-analysis:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b9747a320844b6cb1eacd90d8ecfd260a16c01d3\",\"size\":35151,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"path\":\"org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-tree:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"018419ca5b77a2f81097c741e7872e6ab8d2f40d\",\"size\":51934,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"path\":\"org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"dc19ecb3f7889b7860697215cae99c0f9b6f6b4b\",\"size\":126113,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm/9.8/asm-9.8.jar\",\"path\":\"org/ow2/asm/asm/9.8/asm-9.8.jar\"}}},{\"name\":\"net.neoforged:JarJarFileSystems:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"78f59f89defcd032ed788b151ca6a0d40ace796a\",\"size\":31807,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"path\":\"net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\"}}},{\"name\":\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\",\"size\":78146,\"url\":\"https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"path\":\"net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\"}}},{\"name\":\"org.slf4j:slf4j-api:2.0.9\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"7cf2726fdcfbc8610f9a71fb3ed639871f315340\",\"size\":64579,\"url\":\"https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"path\":\"org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\"}}},{\"name\":\"org.antlr:antlr4-runtime:4.13.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"17125bae1d965624e265ef49552f6465a2bfa307\",\"size\":326305,\"url\":\"https://maven.neoforged.net/releases/org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"path\":\"org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\"}}},{\"name\":\"com.mojang:logging:1.2.7\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"24cb95ffb0e3433fd6e844c04e68009e504ca1c0\",\"size\":15343,\"url\":\"https://libraries.minecraft.net/com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"path\":\"com/mojang/logging/1.2.7/logging-1.2.7.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-slf4j2-impl:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d7e6693c2606cb7e7335047d7bb96dec52db5665\",\"size\":27364,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-core:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"7183a25510a02ad00cc6a95d3b3d2a7d3c5a8dc4\",\"size\":1900022,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-api:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"bea6fede6328fabafd7e68363161a7ea6605abd1\",\"size\":335001,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\"}}},{\"name\":\"org.jline:jline-reader:3.20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8f15415b022a25b473e8e16c28ae913186ffb9c4\",\"size\":171052,\"url\":\"https://maven.neoforged.net/releases/org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"path\":\"org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\"}}},{\"name\":\"org.jline:jline-terminal:3.20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d0ddcc708ddf527a3454c941b7b9225cc83a15ff\",\"size\":228481,\"url\":\"https://maven.neoforged.net/releases/org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"path\":\"org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\"}}},{\"name\":\"commons-io:commons-io:2.15.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f11560da189ab563a5c8e351941415430e9304ea\",\"size\":501218,\"url\":\"https://libraries.minecraft.net/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"path\":\"commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\"}}},{\"name\":\"net.minecraftforge:srgutils:0.4.15\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"ca408b131759478f164e010fae0d73997e125fb5\",\"size\":69393,\"url\":\"https://maven.neoforged.net/releases/net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"path\":\"net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\"}}},{\"name\":\"com.google.guava:guava:32.1.2-jre\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5e64ec7e056456bef3a4bc4c6fdaef71e8ab6318\",\"size\":3041591,\"url\":\"https://libraries.minecraft.net/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"path\":\"com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\"}}},{\"name\":\"com.google.guava:failureaccess:1.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1dcf1de382a0bf95a3d8b0849546c88bac1292c9\",\"size\":4617,\"url\":\"https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"path\":\"com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\"}}},{\"name\":\"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b421526c5f297295adef1c886e5246c39d4ac629\",\"size\":2199,\"url\":\"https://libraries.minecraft.net/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"path\":\"com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\"}}},{\"name\":\"com.google.code.findbugs:jsr305:3.0.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"25ea2e8b0c338a877313bd4672d3fe056ea78f0d\",\"size\":19936,\"url\":\"https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"path\":\"com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\"}}},{\"name\":\"org.checkerframework:checker-qual:3.33.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"de2b60b62da487644fc11f734e73c8b0b431238f\",\"size\":223979,\"url\":\"https://libraries.minecraft.net/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"path\":\"org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\"}}},{\"name\":\"com.google.errorprone:error_prone_annotations:2.18.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"89b684257096f548fa39a7df9fdaa409d4d4df91\",\"size\":16017,\"url\":\"https://libraries.minecraft.net/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"path\":\"com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\"}}},{\"name\":\"com.google.j2objc:j2objc-annotations:2.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c85270e307e7b822f1086b93689124b89768e273\",\"size\":9301,\"url\":\"https://libraries.minecraft.net/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"path\":\"com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\"}}},{\"name\":\"com.google.code.gson:gson:2.10.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b3add478d4382b78ea20b1671390a858002feb6c\",\"size\":283367,\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"path\":\"com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\"}}},{\"name\":\"org.codehaus.plexus:plexus-utils:3.3.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"cf43b5391de623b36fe066a21127baef82c64022\",\"size\":263253,\"url\":\"https://maven.neoforged.net/releases/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"path\":\"org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\"}}},{\"name\":\"com.machinezoo.noexception:noexception:1.7.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b65330c98e38a1f915fa54a6e5eca496505e3f0a\",\"size\":250861,\"url\":\"https://maven.neoforged.net/releases/com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"path\":\"com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\"}}},{\"name\":\"net.neoforged:neoform:1.21.1-20240808.144430@zip\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"811e2bd86fa2cda2812e5e8e51d718ea8bd6d3f4\",\"size\":1683830,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/neoform/1.21.1-20240808.144430/neoform-1.21.1-20240808.144430.zip\",\"path\":\"net/neoforged/neoform/1.21.1-20240808.144430/neoform-1.21.1-20240808.144430.zip\"}}},{\"name\":\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"759b63ef393ed80418ec1ea4d233cd6152d02637\",\"size\":624217,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/binarypatcher/2.1.2/binarypatcher-2.1.2-fatjar.jar\",\"path\":\"net/neoforged/installertools/binarypatcher/2.1.2/binarypatcher-2.1.2-fatjar.jar\"}}},{\"name\":\"net.neoforged:AutoRenamingTool:2.0.3:all\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d9890c71b4366f886c2b1006782043a6a6816eb6\",\"size\":746919,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/AutoRenamingTool/2.0.3/AutoRenamingTool-2.0.3-all.jar\",\"path\":\"net/neoforged/AutoRenamingTool/2.0.3/AutoRenamingTool-2.0.3-all.jar\"}}},{\"name\":\"net.neoforged.installertools:installertools:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"72524c0362f812d8aa4cdb4c03e9b45e2b71ae3b\",\"size\":83543,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/installertools/2.1.2/installertools-2.1.2.jar\",\"path\":\"net/neoforged/installertools/installertools/2.1.2/installertools-2.1.2.jar\"}}},{\"name\":\"net.neoforged:srgutils:1.0.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b9fe6cdab494983217cbc14cc6f92c8e6c616526\",\"size\":71421,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/srgutils/1.0.0/srgutils-1.0.0.jar\",\"path\":\"net/neoforged/srgutils/1.0.0/srgutils-1.0.0.jar\"}}},{\"name\":\"net.md-5:SpecialSource:1.11.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"43b84c4bb8d01cf90a29dfeec1c958a4b64baf46\",\"size\":88737,\"url\":\"https://maven.neoforged.net/releases/net/md-5/SpecialSource/1.11.0/SpecialSource-1.11.0.jar\",\"path\":\"net/md-5/SpecialSource/1.11.0/SpecialSource-1.11.0.jar\"}}},{\"name\":\"com.google.code.gson:gson:2.8.9\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8a432c1d6825781e21a02db2e2c33c5fde2833b9\",\"size\":258075,\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar\",\"path\":\"com/google/code/gson/gson/2.8.9/gson-2.8.9.jar\"}}},{\"name\":\"de.siegmar:fastcsv:2.0.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b615f26c03edeac966618b93b9ee4f4eed50aae1\",\"size\":29476,\"url\":\"https://maven.neoforged.net/releases/de/siegmar/fastcsv/2.0.0/fastcsv-2.0.0.jar\",\"path\":\"de/siegmar/fastcsv/2.0.0/fastcsv-2.0.0.jar\"}}},{\"name\":\"org.ow2.asm:asm-commons:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1f2a432d1212f5c352ae607d7b61dcae20c20af5\",\"size\":72716,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar\",\"path\":\"org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar\"}}},{\"name\":\"net.neoforged.installertools:cli-utils:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"e5a3115eb9e299117472675946be8a72e4990ad6\",\"size\":9379,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/cli-utils/2.1.2/cli-utils-2.1.2.jar\",\"path\":\"net/neoforged/installertools/cli-utils/2.1.2/cli-utils-2.1.2.jar\"}}},{\"name\":\"com.google.guava:guava:20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"89507701249388e1ed5ddcf8c41f4ce1be7831ef\",\"size\":2442625,\"url\":\"https://maven.neoforged.net/releases/com/google/guava/guava/20.0/guava-20.0.jar\",\"path\":\"com/google/guava/guava/20.0/guava-20.0.jar\"}}},{\"name\":\"com.opencsv:opencsv:4.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"525932a1edf46c9ca75aa9c83d31dc180c186865\",\"size\":167167,\"url\":\"https://maven.neoforged.net/releases/com/opencsv/opencsv/4.4/opencsv-4.4.jar\",\"path\":\"com/opencsv/opencsv/4.4/opencsv-4.4.jar\"}}},{\"name\":\"org.ow2.asm:asm-analysis:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4b071f211b37c38e0e9f5998550197c8593f6ad8\",\"size\":34276,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar\",\"path\":\"org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar\"}}},{\"name\":\"org.ow2.asm:asm-tree:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"78d2ecd61318b5a58cd04fb237636c0e86b77d97\",\"size\":52669,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar\",\"path\":\"org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar\"}}},{\"name\":\"org.ow2.asm:asm:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8e6300ef51c1d801a7ed62d07cd221aca3a90640\",\"size\":122176,\"url\":\"https://libraries.minecraft.net/org/ow2/asm/asm/9.3/asm-9.3.jar\",\"path\":\"org/ow2/asm/asm/9.3/asm-9.3.jar\"}}},{\"name\":\"org.apache.commons:commons-text:1.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"9abf61708a66ab5e55f6169a200dbfc584b546d9\",\"size\":182954,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-text/1.3/commons-text-1.3.jar\",\"path\":\"org/apache/commons/commons-text/1.3/commons-text-1.3.jar\"}}},{\"name\":\"org.apache.commons:commons-lang3:3.8.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"6505a72a097d9270f7a9e7bf42c4238283247755\",\"size\":501879,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar\",\"path\":\"org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar\"}}},{\"name\":\"commons-beanutils:commons-beanutils:1.9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c845703de334ddc6b4b3cd26835458cb1cba1f3d\",\"size\":246174,\"url\":\"https://maven.neoforged.net/releases/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar\",\"path\":\"commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar\"}}},{\"name\":\"org.apache.commons:commons-collections4:4.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"54ebea0a5b653d3c680131e73fe807bb8f78c4ed\",\"size\":752798,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar\",\"path\":\"org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar\"}}},{\"name\":\"commons-logging:commons-logging:1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4bfc12adfe4842bf07b657f0369c4cb522955686\",\"size\":61829,\"url\":\"https://libraries.minecraft.net/commons-logging/commons-logging/1.2/commons-logging-1.2.jar\",\"path\":\"commons-logging/commons-logging/1.2/commons-logging-1.2.jar\"}}},{\"name\":\"commons-collections:commons-collections:3.2.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5\",\"size\":588337,\"url\":\"https://maven.neoforged.net/releases/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar\",\"path\":\"commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar\"}}},{\"name\":\"net.neoforged.installertools:jarsplitter:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8a7916be0a0e589897beab7c839072631067e48e\",\"size\":7790,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/jarsplitter/2.1.2/jarsplitter-2.1.2.jar\",\"path\":\"net/neoforged/installertools/jarsplitter/2.1.2/jarsplitter-2.1.2.jar\"}}},{\"name\":\"net.neoforged:neoforge:21.1.226:universal\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"974b795706c79f69f6274baf6b10f5912f27b558\",\"size\":3528068,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/neoforge/21.1.226/neoforge-21.1.226-universal.jar\",\"path\":\"net/neoforged/neoforge/21.1.226/neoforge-21.1.226-universal.jar\"}}},{\"name\":\"net.neoforged:neoforge:21.1.226:clientdata@lzma\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4c0c8fb03f552dd9834f83f090b669c0aa063c79\",\"size\":0,\"url\":\"https://modloaders.forgecdn.net/647622546/maven/net/neoforged/neoforge/21.1.226/neoforge-21.1.226-clientdata.lzma\",\"path\":\"net/neoforged/neoforge/21.1.226/neoforge-21.1.226-clientdata.lzma\"}}}],\"serverJarPath\":\"{LIBRARY_DIR}/net/minecraft/server/{MINECRAFT_VERSION}/server-{MINECRAFT_VERSION}.jar\"}"},"isUnlocked":true,"javaArgsOverride":null,"lastPlayed":"0001-01-01T00:00:00","playedCount":0,"timePlayed":0,"manifest":{"minecraft":{"version":"1.21.1","additionalJavaArgs":null,"modLoaders":[{"id":"neoforge-21.1.226","primary":true}],"libraries":null,"recommendedRam":null},"manifestType":"minecraftModpack","manifestVersion":1,"name":"More FPS [NEOFORGE] - MC 1.21.1 ","version":" 33.1.0","author":"","description":null,"projectID":null,"files":[{"projectID":856906,"fileID":7392199,"required":true,"isLocked":false},{"projectID":455508,"fileID":6661598,"required":true,"isLocked":false},{"projectID":429235,"fileID":7524151,"required":true,"isLocked":false},{"projectID":348521,"fileID":5729127,"required":true,"isLocked":false},{"projectID":907856,"fileID":6165711,"required":true,"isLocked":false},{"projectID":1084468,"fileID":7205496,"required":true,"isLocked":false},{"projectID":634062,"fileID":5885735,"required":true,"isLocked":false},{"projectID":60089,"fileID":5637846,"required":true,"isLocked":false},{"projectID":844662,"fileID":7998618,"required":true,"isLocked":false},{"projectID":448233,"fileID":7900085,"required":true,"isLocked":false},{"projectID":401648,"fileID":5873258,"required":true,"isLocked":false},{"projectID":233019,"fileID":5426792,"required":true,"isLocked":false},{"projectID":499980,"fileID":7943878,"required":true,"isLocked":false},{"projectID":232131,"fileID":7966181,"required":true,"isLocked":false},{"projectID":388800,"fileID":6794589,"required":true,"isLocked":false},{"projectID":531761,"fileID":7420963,"required":true,"isLocked":false},{"projectID":958881,"fileID":5609781,"required":true,"isLocked":false},{"projectID":1046692,"fileID":5605495,"required":true,"isLocked":false},{"projectID":888328,"fileID":7228353,"required":true,"isLocked":false},{"projectID":1386611,"fileID":7819803,"required":true,"isLocked":false},{"projectID":1104882,"fileID":6533725,"required":true,"isLocked":false},{"projectID":868624,"fileID":7018836,"required":true,"isLocked":false},{"projectID":949555,"fileID":7338300,"required":true,"isLocked":false},{"projectID":831663,"fileID":7926632,"required":true,"isLocked":false},{"projectID":944149,"fileID":5499027,"required":true,"isLocked":false},{"projectID":485681,"fileID":6383261,"required":true,"isLocked":false},{"projectID":832882,"fileID":7962596,"required":true,"isLocked":false},{"projectID":951499,"fileID":6935204,"required":true,"isLocked":false},{"projectID":888288,"fileID":7228395,"required":true,"isLocked":false},{"projectID":326652,"fileID":7746488,"required":true,"isLocked":false},{"projectID":367706,"fileID":7256741,"required":true,"isLocked":false},{"projectID":938643,"fileID":5453382,"required":true,"isLocked":false},{"projectID":431203,"fileID":7980983,"required":true,"isLocked":false},{"projectID":858542,"fileID":5831692,"required":true,"isLocked":false},{"projectID":635427,"fileID":5444189,"required":true,"isLocked":false},{"projectID":886331,"fileID":7228406,"required":true,"isLocked":false},{"projectID":882539,"fileID":6843634,"required":true,"isLocked":false},{"projectID":394468,"fileID":6382651,"required":true,"isLocked":false},{"projectID":1016013,"fileID":7451276,"required":true,"isLocked":false},{"projectID":459701,"fileID":6926815,"required":true,"isLocked":false},{"projectID":1109370,"fileID":7890874,"required":true,"isLocked":false},{"projectID":558905,"fileID":6394141,"required":true,"isLocked":false},{"projectID":1091339,"fileID":7955700,"required":true,"isLocked":false},{"projectID":790626,"fileID":8003021,"required":true,"isLocked":false},{"projectID":256717,"fileID":5623731,"required":true,"isLocked":false},{"projectID":456640,"fileID":5571339,"required":true,"isLocked":false},{"projectID":582327,"fileID":6296628,"required":true,"isLocked":false},{"projectID":335493,"fileID":7546938,"required":true,"isLocked":false},{"projectID":1103431,"fileID":6100815,"required":true,"isLocked":false},{"projectID":1037680,"fileID":7243121,"required":true,"isLocked":false},{"projectID":283644,"fileID":6926281,"required":true,"isLocked":false},{"projectID":1109361,"fileID":7890871,"required":true,"isLocked":false},{"projectID":686911,"fileID":7537795,"required":true,"isLocked":false},{"projectID":419699,"fileID":5786327,"required":true,"isLocked":false},{"projectID":511319,"fileID":6091021,"required":true,"isLocked":false},{"projectID":969926,"fileID":7186843,"required":true,"isLocked":false},{"projectID":883287,"fileID":7305762,"required":true,"isLocked":false},{"projectID":548115,"fileID":5665477,"required":true,"isLocked":false},{"projectID":250398,"fileID":6368976,"required":true,"isLocked":false},{"projectID":1191845,"fileID":6148845,"required":true,"isLocked":false},{"projectID":360438,"fileID":7740400,"required":true,"isLocked":false},{"projectID":882495,"fileID":5513549,"required":true,"isLocked":false},{"projectID":568563,"fileID":7930620,"required":true,"isLocked":false},{"projectID":904356,"fileID":7936390,"required":true,"isLocked":false},{"projectID":888790,"fileID":7920161,"required":true,"isLocked":false},{"projectID":470193,"fileID":7367221,"required":true,"isLocked":false},{"projectID":410295,"fileID":5453385,"required":true,"isLocked":false},{"projectID":968432,"fileID":7974611,"required":true,"isLocked":false},{"projectID":271740,"fileID":6751464,"required":true,"isLocked":false},{"projectID":1007509,"fileID":7451279,"required":true,"isLocked":false},{"projectID":361579,"fileID":6225208,"required":true,"isLocked":false},{"projectID":551520,"fileID":5723250,"required":true,"isLocked":false}],"overrides":"overrides"},"fileDate":"2026-05-01T16:54:22.527Z","installedModpack":{"instanceID":"1983b919-23d6-41e6-a7bc-3fa6324e75b4","modSource":0,"addonID":447596,"gameID":432,"categoryClassID":4471,"categorySection":{"id":11,"gameId":432,"name":"Modpacks","packageType":5,"path":"downloads","initialInclusionPattern":"$^","gameCategoryId":4471},"categoryIds":[4481,4483,4484,5128],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"More FPS [FORGE] - Increase FPS & Shaders (1.21 UPDATE)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\downloads","fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":107529259,"name":"TeamLUP"}],"primaryAuthor":"Lupin","primaryCategoryId":5128,"packageType":5,"webSiteURL":"https://www.curseforge.com/minecraft/modpacks/more-fps-modpack","issuesURL":null,"wikiURL":"https://discord.gg/X8VY5WMbe4","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/925/477/256/256/638394086482222171.png","tags":[],"installedFile":{"id":8022028,"fileName":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","fileDate":"2026-05-01T16:54:22.527Z","fileLength":7232520,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8022/28/More%20FPS%20%5bNEOFORGE%5d%20-%20MC%201.21.1%20-%2033.1.0.zip","isAlternate":false,"alternateFileId":8022033,"serverPackFileId":8022033,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"manifest.json","fingerprint":387849279,"invalidFingerprint":false},{"foldername":"modlist.html","fingerprint":3050746127,"invalidFingerprint":false},{"foldername":"overrides","fingerprint":4152035634,"invalidFingerprint":false}],"packageFingerprint":3009081461,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":447596,"fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","hashes":[{"type":1,"value":"7535e639fb8f6f81108e12978f8e8dfc168ce26e"},{"type":2,"value":"72e8116d8affcdb3cca94963e587a980"}]},"dateInstalled":"2026-05-07T21:59:35.7668316Z","dateUpdated":"2026-05-07T21:59:35.7668316Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":[],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8022028,"fileName":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","fileDate":"2026-05-01T16:54:22.527Z","fileLength":7232520,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8022/28/More%20FPS%20%5bNEOFORGE%5d%20-%20MC%201.21.1%20-%2033.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":8022033,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"manifest.json","fingerprint":387849279,"invalidFingerprint":false},{"foldername":"modlist.html","fingerprint":3050746127,"invalidFingerprint":false},{"foldername":"overrides","fingerprint":4152035634,"invalidFingerprint":false}],"packageFingerprint":3009081461,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":447596,"fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","hashes":[{"type":1,"value":"7535e639fb8f6f81108e12978f8e8dfc168ce26e"},{"type":2,"value":"72e8116d8affcdb3cca94963e587a980"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},"projectID":447596,"fileID":8022028,"customAuthor":null,"modpackOverrides":["config\\aiimprovements-common.toml","config\\alltheleaks.json","config\\automessage-client.json","config\\automessage-common.toml","config\\automessage-server.json","config\\automessage_README.txt","config\\badoptimizations.txt","config\\balm-client.toml","config\\balm-common-1.toml.bak","config\\balm-common.toml","config\\betterf3.toml","config\\betterfpsdist.json","config\\bhmenu-client-1.toml.bak","config\\bhmenu-client.toml","config\\catalogue.properties","config\\catalogue_favourites.txt","config\\chunksending.json","config\\connectivity.json","config\\cupboard.json","config\\defaultoptions-common.toml","config\\dynamic_fps.json","config\\entityculling.json","config\\entity_model_features.json","config\\entity_texture_features.json","config\\etf_warnings.json","config\\euphoria_patcher.properties","config\\fastpaintings-common.toml","config\\ferritecore-mixin.toml","config\\fml.toml","config\\immediatelyfast.json","config\\iris-excluded.json","config\\iris.properties","config\\leaky.json","config\\limitedchunks.json","config\\lithium.properties","config\\loadingbackgrounds-config.json","config\\loadingbackgrounds.json","config\\modernfix-common.toml","config\\modernfix-mixins.properties","config\\monolib-common.toml","config\\monolib-server.json","config\\monolib.toml","config\\moonlight-client-1.toml.bak","config\\moonlight-client-2.toml.bak","config\\moonlight-client.toml","config\\moonlight-common-1.toml.bak","config\\moonlight-common-2.toml.bak","config\\moonlight-common-3.toml.bak","config\\moonlight-common-4.toml.bak","config\\moonlight-common.toml","config\\MouseTweaks.cfg","config\\neoforge-client.toml","config\\neoforge-common.toml","config\\neoforge-server.toml","config\\neruina.json","config\\placebo.cfg","config\\recipeessentials.json","config\\smoothchunk.json","config\\sodium-extra-options.json","config\\sodium-extra.properties","config\\sodium-fingerprint.json","config\\sodium-mixins.properties","config\\sodium-options.json","config\\sodiumextras-client.toml","config\\startinv.json","config\\structureessentials.json","config\\time_on_display.toml","config\\toastcontrol-client-1.toml.bak","config\\toastcontrol-client.toml","config\\transition.json","config\\trender.json","config\\chunky\\config.json","config\\defaultoptions\\keybindings.txt","config\\defaultoptions\\options.txt","config\\fabric\\indigo-renderer.properties","config\\fancymenu\\config.txt","config\\fancymenu\\customizablemenus.txt","config\\fancymenu\\custom_gui_screens.txt","config\\fancymenu\\legacy_checklist.txt","config\\fancymenu\\menu_identifiers.db","config\\fancymenu\\options.txt","config\\fancymenu\\user_variables.db","config\\messages\\client_messages.json","config\\messages\\server_messages.json","config\\NoChatReports\\NCR-Client.json","config\\NoChatReports\\NCR-Common.json","config\\NoChatReports\\NCR-Encryption.json","config\\NoChatReports\\NCR-ServerPreferences.json","config\\NoChatReports\\README.md","config\\fancymenu\\assets\\bg.png","config\\fancymenu\\assets\\mods.png","config\\fancymenu\\assets\\modshov.png","config\\fancymenu\\assets\\multiplayer.png","config\\fancymenu\\assets\\multiplayerhov.png","config\\fancymenu\\assets\\options.png","config\\fancymenu\\assets\\optionshov.png","config\\fancymenu\\assets\\quitgame.png","config\\fancymenu\\assets\\quitgamehov.png","config\\fancymenu\\assets\\rentaserver.png","config\\fancymenu\\assets\\rentaserverhov.png","config\\fancymenu\\assets\\sidepanel.png","config\\fancymenu\\assets\\singleplayer.png","config\\fancymenu\\assets\\singleplayerhov.png","config\\fancymenu\\assets\\title.png","config\\fancymenu\\customization\\morefps.txt","config\\fancymenu\\locals\\de_de.local","config\\fancymenu\\locals\\en_us.local","config\\fancymenu\\locals\\pl_pl.local","config\\fancymenu\\locals\\pt_br.local","config\\fancymenu\\locals\\ru_ru.local","config\\fancymenu\\locals\\uk_ua.local","config\\fancymenu\\locals\\zh_cn.local","config\\fancymenu\\ui_themes\\dark.json","config\\fancymenu\\ui_themes\\light.json","config\\konkrete\\locals\\de_de.local","config\\konkrete\\locals\\en_us.local","config\\konkrete\\locals\\pl_pl.local","config\\konkrete\\locals\\pt_br.local","config\\fancymenu\\layout_editor\\widgets\\element_layer_control.lewidget"],"isMemoryOverride":false,"allocatedMemory":0,"profileImagePath":null,"groupId":null,"isVanilla":false,"guid":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","gameTypeID":432,"installPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\","name":"PupaMLupa","cachedScans":[],"isValid":true,"lastPreviousMatchUpdate":"2026-05-07T21:55:58.4744049Z","lastRefreshAttempt":"2026-05-08T00:59:38.7732561+03:00","isEnabled":true,"gameVersion":"1.21.1","gameVersionFlavor":null,"gameVersionTypeId":null,"preferenceAlternateFile":false,"preferenceAutoInstallUpdates":false,"preferenceDeleteOrphanedDependencies":false,"preferenceDeleteSavedVariables":false,"preferenceReleaseType":2,"preferenceModdingFolderPath":null,"syncProfile":{"PreferenceEnabled":false,"PreferenceAutoSync":true,"PreferenceAutoDelete":false,"PreferenceBackupSavedVariables":false,"GameInstanceGuid":"00000000-0000-0000-0000-000000000000","SyncProfileID":0,"SavedVariablesProfile":null,"LastSyncDate":"0001-01-01T00:00:00"},"installDate":"2026-05-07T21:59:35.7818004Z","installedAddons":[{"instanceID":"b17b4dc8-faf4-4253-9424-1ffbcb38a7b7","modSource":0,"addonID":455508,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Iris Shaders","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","authors":[{"id":44226090,"name":"coderbot"},{"id":101521578,"name":"IMS21"}],"primaryAuthor":"coderbot","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/irisshaders","issuesURL":"https://github.com/IrisShaders/Iris/issues","wikiURL":"https://shaders.properties","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1002/450/256/256/638522657871453967.png","tags":[],"installedFile":{"id":6661598,"fileName":"iris-neoforge-1.8.12+mc1.21.1.jar","fileDate":"2025-06-17T15:53:15.717Z","fileLength":2438548,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6661/598/iris-neoforge-1.8.12%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":363713120,"invalidFingerprint":false},{"foldername":"de","fingerprint":1235506475,"invalidFingerprint":false},{"foldername":"kroppeb","fingerprint":1426760369,"invalidFingerprint":false},{"foldername":"net","fingerprint":844079386,"invalidFingerprint":false},{"foldername":"mixins.iris.forge.json","fingerprint":3583208795,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1468664341,"invalidFingerprint":false},{"foldername":"centerDepth.fsh","fingerprint":1579026811,"invalidFingerprint":false},{"foldername":"centerDepth.vsh","fingerprint":462961270,"invalidFingerprint":false},{"foldername":"colorSpace.csh","fingerprint":1494857400,"invalidFingerprint":false},{"foldername":"colorSpace.vsh","fingerprint":1398698219,"invalidFingerprint":false},{"foldername":"iris-logo.png","fingerprint":4158814395,"invalidFingerprint":false},{"foldername":"mixins.iris.bettermipmaps.json","fingerprint":1338334829,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.dh.json","fingerprint":3824861719,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.sodium.json","fingerprint":1868836443,"invalidFingerprint":false},{"foldername":"mixins.iris.devenvironment.json","fingerprint":3953555104,"invalidFingerprint":false},{"foldername":"mixins.iris.fantastic.json","fingerprint":2829550645,"invalidFingerprint":false},{"foldername":"mixins.iris.fixes.maxfpscrash.json","fingerprint":3430149842,"invalidFingerprint":false},{"foldername":"mixins.iris.integrationtest.json","fingerprint":3729550497,"invalidFingerprint":false},{"foldername":"mixins.iris.vertexformat.json","fingerprint":4029359364,"invalidFingerprint":false},{"foldername":"iris-batched-entity-rendering.mixins.json","fingerprint":2191366913,"invalidFingerprint":false},{"foldername":"iris.accesswidener","fingerprint":1956991535,"invalidFingerprint":false},{"foldername":"mixins.iris.json","fingerprint":146795907,"invalidFingerprint":false}],"packageFingerprint":2055048874,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":455508,"fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","hashes":[{"type":1,"value":"a3e6355915c7d3b2bc392724795113e51d289378"},{"type":2,"value":"6c1122aa7c2b1a4f24831e394c5b513f"}]},"dateInstalled":"2026-05-07T21:57:57.3736059Z","dateUpdated":"2026-05-07T21:57:57.3750905Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\iris-neoforge-1.8.12+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6661598,"fileName":"iris-neoforge-1.8.12+mc1.21.1.jar","fileDate":"2025-06-17T15:53:15.717Z","fileLength":2438548,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6661/598/iris-neoforge-1.8.12%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":363713120,"invalidFingerprint":false},{"foldername":"de","fingerprint":1235506475,"invalidFingerprint":false},{"foldername":"kroppeb","fingerprint":1426760369,"invalidFingerprint":false},{"foldername":"net","fingerprint":844079386,"invalidFingerprint":false},{"foldername":"mixins.iris.forge.json","fingerprint":3583208795,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1468664341,"invalidFingerprint":false},{"foldername":"centerDepth.fsh","fingerprint":1579026811,"invalidFingerprint":false},{"foldername":"centerDepth.vsh","fingerprint":462961270,"invalidFingerprint":false},{"foldername":"colorSpace.csh","fingerprint":1494857400,"invalidFingerprint":false},{"foldername":"colorSpace.vsh","fingerprint":1398698219,"invalidFingerprint":false},{"foldername":"iris-logo.png","fingerprint":4158814395,"invalidFingerprint":false},{"foldername":"mixins.iris.bettermipmaps.json","fingerprint":1338334829,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.dh.json","fingerprint":3824861719,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.sodium.json","fingerprint":1868836443,"invalidFingerprint":false},{"foldername":"mixins.iris.devenvironment.json","fingerprint":3953555104,"invalidFingerprint":false},{"foldername":"mixins.iris.fantastic.json","fingerprint":2829550645,"invalidFingerprint":false},{"foldername":"mixins.iris.fixes.maxfpscrash.json","fingerprint":3430149842,"invalidFingerprint":false},{"foldername":"mixins.iris.integrationtest.json","fingerprint":3729550497,"invalidFingerprint":false},{"foldername":"mixins.iris.vertexformat.json","fingerprint":4029359364,"invalidFingerprint":false},{"foldername":"iris-batched-entity-rendering.mixins.json","fingerprint":2191366913,"invalidFingerprint":false},{"foldername":"iris.accesswidener","fingerprint":1956991535,"invalidFingerprint":false},{"foldername":"mixins.iris.json","fingerprint":146795907,"invalidFingerprint":false}],"packageFingerprint":2055048874,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":455508,"fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","hashes":[{"type":1,"value":"a3e6355915c7d3b2bc392724795113e51d289378"},{"type":2,"value":"6c1122aa7c2b1a4f24831e394c5b513f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b4d8a66d-4009-4add-b84e-2c9175db2074","modSource":0,"addonID":1501234,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ParCool+ / Compatibility Addon NeoForge Edition","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","authors":[{"id":102433514,"name":"Semillakan6"}],"primaryAuthor":"Semillakan6","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/parcool-compatibility-addon-neoforge-edition","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1737/796/256/256/639106257095240167.png","tags":[],"installedFile":{"id":7854851,"fileName":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","fileDate":"2026-04-01T07:38:01.587Z","fileLength":16611,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/851/ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":482378,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":446425705,"invalidFingerprint":false},{"foldername":"com","fingerprint":472463969,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4267552386,"invalidFingerprint":false},{"foldername":"parcool_compat_addon.mixins.json","fingerprint":3127149447,"invalidFingerprint":false}],"packageFingerprint":2988163184,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1501234,"fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","hashes":[{"type":1,"value":"4f2232b04b4af124b9ae146b55a6a0f461183425"},{"type":2,"value":"11ec92f2edb4b3f8cf599aea591cb35a"}]},"dateInstalled":"2026-05-07T22:51:11.1957384Z","dateUpdated":"2026-05-07T22:51:11.1970283Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7854851,"fileName":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","fileDate":"2026-04-01T07:38:01.587Z","fileLength":16611,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/851/ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":482378,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":446425705,"invalidFingerprint":false},{"foldername":"com","fingerprint":472463969,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4267552386,"invalidFingerprint":false},{"foldername":"parcool_compat_addon.mixins.json","fingerprint":3127149447,"invalidFingerprint":false}],"packageFingerprint":2988163184,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1501234,"fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","hashes":[{"type":1,"value":"4f2232b04b4af124b9ae146b55a6a0f461183425"},{"type":2,"value":"11ec92f2edb4b3f8cf599aea591cb35a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"707c8f5c-4e32-4b7c-b42e-77a3dbc6f78f","modSource":0,"addonID":582327,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Server Performance - Smooth Chunk Save[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"smoothchunk-1.21-4.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/smooth-chunk-save","issuesURL":"https://github.com/someaddons/smoothchunksave/issues/new/choose","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/536/807/256/256/637859186206116434.png","tags":[],"installedFile":{"id":6296628,"fileName":"smoothchunk-1.21-4.1.jar","fileDate":"2025-03-12T16:48:47.343Z","fileLength":12852,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6296/628/smoothchunk-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":43914751,"invalidFingerprint":false},{"foldername":"com","fingerprint":1082524879,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"smoothchunk.mixins.json","fingerprint":3179092955,"invalidFingerprint":false}],"packageFingerprint":2270201149,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":582327,"fileNameOnDisk":"smoothchunk-1.21-4.1.jar","hashes":[{"type":1,"value":"f54d5d352e15560240f151a7d054096a33a58f4a"},{"type":2,"value":"a3c55088f5e9b228e8e94ae20e639a7a"}]},"dateInstalled":"2026-05-07T21:58:40.6387809Z","dateUpdated":"2026-05-07T21:58:40.639963Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\smoothchunk-1.21-4.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6296628,"fileName":"smoothchunk-1.21-4.1.jar","fileDate":"2025-03-12T16:48:47.343Z","fileLength":12852,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6296/628/smoothchunk-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":43914751,"invalidFingerprint":false},{"foldername":"com","fingerprint":1082524879,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"smoothchunk.mixins.json","fingerprint":3179092955,"invalidFingerprint":false}],"packageFingerprint":2270201149,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":582327,"fileNameOnDisk":"smoothchunk-1.21-4.1.jar","hashes":[{"type":1,"value":"f54d5d352e15560240f151a7d054096a33a58f4a"},{"type":2,"value":"a3c55088f5e9b228e8e94ae20e639a7a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c7adbbf7-c887-4952-ad08-186dcd848a15","modSource":0,"addonID":635427,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Yeetus Experimentus","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","authors":[{"id":8306579,"name":"Sunekaer"}],"primaryAuthor":"Sunekaer","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/yeetusexperimentus","issuesURL":"https://github.com/nanite/Yeetus-Experimentus/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/561/302/256/256/637913385213961485.png","tags":[],"installedFile":{"id":5444189,"fileName":"yeetusexperimentus-neoforge-87.0.0.jar","fileDate":"2024-06-19T12:03:09.493Z","fileLength":570057,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5444/189/yeetusexperimentus-neoforge-87.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3563913969,"invalidFingerprint":false},{"foldername":"architectury_inject_YeetusExperimentus_common_87278c651eb6494eb842d847c6e84245_705d449c25ee74798e52710df095f841aea12a5527e61e8b088dd96607c2bac0yeetusexperimentus8700devjar","fingerprint":1310090446,"invalidFingerprint":false},{"foldername":"com","fingerprint":3908371297,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1677690403,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common-refmap.json","fingerprint":2414894560,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common.mixins.json","fingerprint":3967622980,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-logo.png","fingerprint":2629488239,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-neo.mixins.json","fingerprint":1125902222,"invalidFingerprint":false},{"foldername":"yeetusexperimentus.accesswidener","fingerprint":1095485847,"invalidFingerprint":false}],"packageFingerprint":767515430,"gameVersion":["1.21","Client","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","NeoForge","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":635427,"fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","hashes":[{"type":1,"value":"7132c346103d75a7c84da64b35b92e3a6f1ce3da"},{"type":2,"value":"146a7ff6596eff098dd1d07337ba88fe"}]},"dateInstalled":"2026-05-07T21:58:28.1737216Z","dateUpdated":"2026-05-07T21:58:28.1752301Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\yeetusexperimentus-neoforge-87.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5444189,"fileName":"yeetusexperimentus-neoforge-87.0.0.jar","fileDate":"2024-06-19T12:03:09.493Z","fileLength":570057,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5444/189/yeetusexperimentus-neoforge-87.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3563913969,"invalidFingerprint":false},{"foldername":"architectury_inject_YeetusExperimentus_common_87278c651eb6494eb842d847c6e84245_705d449c25ee74798e52710df095f841aea12a5527e61e8b088dd96607c2bac0yeetusexperimentus8700devjar","fingerprint":1310090446,"invalidFingerprint":false},{"foldername":"com","fingerprint":3908371297,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1677690403,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common-refmap.json","fingerprint":2414894560,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common.mixins.json","fingerprint":3967622980,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-logo.png","fingerprint":2629488239,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-neo.mixins.json","fingerprint":1125902222,"invalidFingerprint":false},{"foldername":"yeetusexperimentus.accesswidener","fingerprint":1095485847,"invalidFingerprint":false}],"packageFingerprint":767515430,"gameVersion":["1.21","Client","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","NeoForge","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":635427,"fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","hashes":[{"type":1,"value":"7132c346103d75a7c84da64b35b92e3a6f1ce3da"},{"type":2,"value":"146a7ff6596eff098dd1d07337ba88fe"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3a3fc908-c085-4faf-bcb9-d1b4cfe50c49","modSource":0,"addonID":360438,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lithium (Fabric/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","authors":[{"id":28746583,"name":"JellySquid"}],"primaryAuthor":"JellySquid","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lithium","issuesURL":"https://github.com/jellysquid3/lithium-fabric/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/246/646/256/256/637158441743060329.png","tags":[],"installedFile":{"id":7740400,"fileName":"lithium-neoforge-0.15.3+mc1.21.1.jar","fileDate":"2026-03-10T22:02:15.497Z","fileLength":774148,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7740/400/lithium-neoforge-0.15.3%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2404882156,"invalidFingerprint":false},{"foldername":"net","fingerprint":2001482883,"invalidFingerprint":false},{"foldername":"lithium-neoforge-mixin-config.md","fingerprint":1031849278,"invalidFingerprint":false},{"foldername":"lithium-neoforge.mixins.json","fingerprint":2646224670,"invalidFingerprint":false},{"foldername":"assets","fingerprint":939467294,"invalidFingerprint":false},{"foldername":"lithium.accesswidener","fingerprint":2830252076,"invalidFingerprint":false},{"foldername":"lithium.mixins.json","fingerprint":642967667,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":1136524626,"invalidFingerprint":false}],"packageFingerprint":1666655641,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":360438,"fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","hashes":[{"type":1,"value":"9fd5fa9076044180ae7f51672de74669196ec72e"},{"type":2,"value":"8207aaae8fea906c7eb2447da40b8c83"}]},"dateInstalled":"2026-05-07T21:58:49.5075913Z","dateUpdated":"2026-05-07T21:58:49.5088534Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lithium-neoforge-0.15.3+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7740400,"fileName":"lithium-neoforge-0.15.3+mc1.21.1.jar","fileDate":"2026-03-10T22:02:15.497Z","fileLength":774148,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7740/400/lithium-neoforge-0.15.3%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2404882156,"invalidFingerprint":false},{"foldername":"net","fingerprint":2001482883,"invalidFingerprint":false},{"foldername":"lithium-neoforge-mixin-config.md","fingerprint":1031849278,"invalidFingerprint":false},{"foldername":"lithium-neoforge.mixins.json","fingerprint":2646224670,"invalidFingerprint":false},{"foldername":"assets","fingerprint":939467294,"invalidFingerprint":false},{"foldername":"lithium.accesswidener","fingerprint":2830252076,"invalidFingerprint":false},{"foldername":"lithium.mixins.json","fingerprint":642967667,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":1136524626,"invalidFingerprint":false}],"packageFingerprint":1666655641,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":360438,"fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","hashes":[{"type":1,"value":"9fd5fa9076044180ae7f51672de74669196ec72e"},{"type":2,"value":"8207aaae8fea906c7eb2447da40b8c83"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c24d7cc3-5831-4f89-9cab-35b52e35268f","modSource":0,"addonID":309927,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,422,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Curios API (Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","authors":[{"id":34683772,"name":"TheIllusiveC4"}],"primaryAuthor":"TheIllusiveC4","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/curios","issuesURL":"https://github.com/TheIllusiveC4/Curios/issues","wikiURL":"https://docs.illusivesoulworks.com/category/curios","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/195/772/256/256/636881112930494939.png","tags":[],"installedFile":{"id":6529130,"fileName":"curios-neoforge-9.5.1+1.21.1.jar","fileDate":"2025-05-14T13:34:49.793Z","fileLength":410690,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6529/130/curios-neoforge-9.5.1%2b1.21.1.jar","isAlternate":false,"alternateFileId":6529131,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3324915172,"invalidFingerprint":false},{"foldername":"top","fingerprint":4196694651,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1471779260,"invalidFingerprint":false},{"foldername":"curios.mixins.json","fingerprint":777536334,"invalidFingerprint":false},{"foldername":"curios.neoforge.mixins.json","fingerprint":839691594,"invalidFingerprint":false},{"foldername":"curios_icon.png","fingerprint":1224242090,"invalidFingerprint":false},{"foldername":"data","fingerprint":2640981864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3015994141,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1496262901,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2760232948,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1522654010,"invalidFingerprint":false}],"packageFingerprint":933317947,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":309927,"fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","hashes":[{"type":1,"value":"418fcd42e3a7844c9bdc71c9b6401fdb3894e0c4"},{"type":2,"value":"e8f0a3574264bb202c153b90293dc84c"}]},"dateInstalled":"2026-05-07T22:51:40.8942401Z","dateUpdated":"2026-05-07T22:51:40.8959559Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\curios-neoforge-9.5.1+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6529130,"fileName":"curios-neoforge-9.5.1+1.21.1.jar","fileDate":"2025-05-14T13:34:49.793Z","fileLength":410690,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6529/130/curios-neoforge-9.5.1%2b1.21.1.jar","isAlternate":false,"alternateFileId":6529131,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3324915172,"invalidFingerprint":false},{"foldername":"top","fingerprint":4196694651,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1471779260,"invalidFingerprint":false},{"foldername":"curios.mixins.json","fingerprint":777536334,"invalidFingerprint":false},{"foldername":"curios.neoforge.mixins.json","fingerprint":839691594,"invalidFingerprint":false},{"foldername":"curios_icon.png","fingerprint":1224242090,"invalidFingerprint":false},{"foldername":"data","fingerprint":2640981864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3015994141,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1496262901,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2760232948,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1522654010,"invalidFingerprint":false}],"packageFingerprint":933317947,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":309927,"fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","hashes":[{"type":1,"value":"418fcd42e3a7844c9bdc71c9b6401fdb3894e0c4"},{"type":2,"value":"e8f0a3574264bb202c153b90293dc84c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f1669f7c-192b-4189-94a0-6d28e7e5d89c","modSource":0,"addonID":1335102,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,426,5191,422,419],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cataclysm & BetterCombat - Compatibility","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","authors":[{"id":102254308,"name":"rymusov"}],"primaryAuthor":"rymusov","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cataclysm-bettercombat-compatibility","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1418/303/256/256/638918904339601733.png","tags":[],"installedFile":{"id":7350924,"fileName":"cataclysm_compat_1.21.1-1.0.2.jar","fileDate":"2025-12-18T19:20:14.867Z","fileLength":19377,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7350/924/cataclysm_compat_1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":639842,"type":3}],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2831666524,"invalidFingerprint":false},{"foldername":"data","fingerprint":1182505847,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1527607326,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":4101697382,"invalidFingerprint":false}],"packageFingerprint":1410873774,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335102,"fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"34e9b705c62e8e947b9e37f899782e1e2db976a8"},{"type":2,"value":"8502bc89c86a8847f2c17e3d9baf61ce"}]},"dateInstalled":"2026-05-07T22:51:48.6809253Z","dateUpdated":"2026-05-07T22:51:48.682435Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cataclysm_compat_1.21.1-1.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7350924,"fileName":"cataclysm_compat_1.21.1-1.0.2.jar","fileDate":"2025-12-18T19:20:14.867Z","fileLength":19377,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7350/924/cataclysm_compat_1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":639842,"type":3}],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2831666524,"invalidFingerprint":false},{"foldername":"data","fingerprint":1182505847,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1527607326,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":4101697382,"invalidFingerprint":false}],"packageFingerprint":1410873774,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335102,"fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"34e9b705c62e8e947b9e37f899782e1e2db976a8"},{"type":2,"value":"8502bc89c86a8847f2c17e3d9baf61ce"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8e988a6e-49f3-428d-9ebc-0ea3b64221de","modSource":0,"addonID":551520,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better Fps - Render Distance[Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/better-fps-render-distance","issuesURL":"https://github.com/someaddons/betterfpsdistances/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/531/771/256/256/637854357042030339.png","tags":[],"installedFile":{"id":5723250,"fileName":"betterfpsdist-1.21-6.0.jar","fileDate":"2024-09-14T19:30:01.483Z","fileLength":22742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5723/250/betterfpsdist-1.21-6.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2896484488,"invalidFingerprint":false},{"foldername":"com","fingerprint":1918726339,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4013170233,"invalidFingerprint":false},{"foldername":"betterfpsdist.mixins.json","fingerprint":576717991,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2233392733,"invalidFingerprint":false}],"packageFingerprint":4067530713,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551520,"fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","hashes":[{"type":1,"value":"5377aae3a0f0eb65aa5dceca4985f53480a73db5"},{"type":2,"value":"081882282efe6239ac294b2d1fe2cd22"}]},"dateInstalled":"2026-05-07T21:58:56.4479558Z","dateUpdated":"2026-05-07T21:58:56.4491046Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\betterfpsdist-1.21-6.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5723250,"fileName":"betterfpsdist-1.21-6.0.jar","fileDate":"2024-09-14T19:30:01.483Z","fileLength":22742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5723/250/betterfpsdist-1.21-6.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2896484488,"invalidFingerprint":false},{"foldername":"com","fingerprint":1918726339,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4013170233,"invalidFingerprint":false},{"foldername":"betterfpsdist.mixins.json","fingerprint":576717991,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2233392733,"invalidFingerprint":false}],"packageFingerprint":4067530713,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551520,"fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","hashes":[{"type":1,"value":"5377aae3a0f0eb65aa5dceca4985f53480a73db5"},{"type":2,"value":"081882282efe6239ac294b2d1fe2cd22"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"bf62621c-d74e-4a10-a58c-9885e16d859d","modSource":0,"addonID":1046692,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,422,419,411,408],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Elemental Maces | 4 New Maces with Effects!","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"}],"primaryAuthor":"Lupin","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/elemental-maces","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1055/292/256/256/638586511550359097.webp","tags":[],"installedFile":{"id":5605495,"fileName":"elementalmaces-neoforge-1.21-1.0.0.jar","fileDate":"2024-08-07T18:14:05.313Z","fileLength":39705,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5605/495/elementalmaces-neoforge-1.21-1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1037680,"type":2},{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1540774448,"invalidFingerprint":false},{"foldername":"architectury_inject_elementalmaces_common_250d11bf27f244caba4d16eb48636073_be45bb4de563e7a26144ae90189de1915d070652849c3d609a2c3ac58478acc7elementalmacescommon121100devjar","fingerprint":1019201436,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1473953320,"invalidFingerprint":false},{"foldername":"data","fingerprint":754354434,"invalidFingerprint":false},{"foldername":"dev","fingerprint":792556699,"invalidFingerprint":false},{"foldername":"elementalmaces_icon.png","fingerprint":2454633851,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2169904997,"invalidFingerprint":false}],"packageFingerprint":634138649,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1046692,"fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","hashes":[{"type":1,"value":"6788da71dc4871f5b68c0bc17aab2ce910f3d42e"},{"type":2,"value":"7701bd7ed78e1e216b827ce89e409bf4"}]},"dateInstalled":"2026-05-07T21:58:07.9071871Z","dateUpdated":"2026-05-07T21:58:07.9082943Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\elementalmaces-neoforge-1.21-1.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5605495,"fileName":"elementalmaces-neoforge-1.21-1.0.0.jar","fileDate":"2024-08-07T18:14:05.313Z","fileLength":39705,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5605/495/elementalmaces-neoforge-1.21-1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1037680,"type":2},{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1540774448,"invalidFingerprint":false},{"foldername":"architectury_inject_elementalmaces_common_250d11bf27f244caba4d16eb48636073_be45bb4de563e7a26144ae90189de1915d070652849c3d609a2c3ac58478acc7elementalmacescommon121100devjar","fingerprint":1019201436,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1473953320,"invalidFingerprint":false},{"foldername":"data","fingerprint":754354434,"invalidFingerprint":false},{"foldername":"dev","fingerprint":792556699,"invalidFingerprint":false},{"foldername":"elementalmaces_icon.png","fingerprint":2454633851,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2169904997,"invalidFingerprint":false}],"packageFingerprint":634138649,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1046692,"fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","hashes":[{"type":1,"value":"6788da71dc4871f5b68c0bc17aab2ce910f3d42e"},{"type":2,"value":"7701bd7ed78e1e216b827ce89e409bf4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"d9fcce6f-a94f-4394-a521-ec87445278ef","modSource":0,"addonID":686911,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ImmediatelyFast","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","authors":[{"id":103808552,"name":"RaphiMC"}],"primaryAuthor":"RaphiMC","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/immediatelyfast","issuesURL":"https://github.com/RaphiMC/ImmediatelyFast/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/873/971/256/256/638294478643875692.png","tags":[],"installedFile":{"id":7537795,"fileName":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","fileDate":"2026-01-27T21:12:04.863Z","fileLength":368598,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7537/795/ImmediatelyFast-NeoForge-1.6.10%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2816977017,"invalidFingerprint":false},{"foldername":"LICENSE_ImmediatelyFast","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"architectury-common.json","fingerprint":1094672885,"invalidFingerprint":false},{"foldername":"architectury_inject_ImmediatelyFast_common_762fbe83acbd48729327a9c045709385_d76623ad68b9b9c83d5f2a039a963a6cde8f6f797b7c9c0e8731e26654d92c0bcommon16101211devjar","fingerprint":3752492918,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4017847587,"invalidFingerprint":false},{"foldername":"immediatelyfast-common.mixins.json","fingerprint":1203811454,"invalidFingerprint":false},{"foldername":"immediatelyfast-icon.png","fingerprint":1842373389,"invalidFingerprint":false},{"foldername":"immediatelyfast-neoforge.mixins.json","fingerprint":1898729016,"invalidFingerprint":false},{"foldername":"net","fingerprint":1029988886,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1022878643,"invalidFingerprint":false}],"packageFingerprint":1221808790,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":686911,"fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","hashes":[{"type":1,"value":"f1f5cccd7cb59d875f44566b2e557ccecc8c33fb"},{"type":2,"value":"567bb6d9155070ad858740af12450c63"}]},"dateInstalled":"2026-05-07T21:58:44.5193462Z","dateUpdated":"2026-05-07T21:58:44.5205715Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7537795,"fileName":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","fileDate":"2026-01-27T21:12:04.863Z","fileLength":368598,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7537/795/ImmediatelyFast-NeoForge-1.6.10%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2816977017,"invalidFingerprint":false},{"foldername":"LICENSE_ImmediatelyFast","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"architectury-common.json","fingerprint":1094672885,"invalidFingerprint":false},{"foldername":"architectury_inject_ImmediatelyFast_common_762fbe83acbd48729327a9c045709385_d76623ad68b9b9c83d5f2a039a963a6cde8f6f797b7c9c0e8731e26654d92c0bcommon16101211devjar","fingerprint":3752492918,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4017847587,"invalidFingerprint":false},{"foldername":"immediatelyfast-common.mixins.json","fingerprint":1203811454,"invalidFingerprint":false},{"foldername":"immediatelyfast-icon.png","fingerprint":1842373389,"invalidFingerprint":false},{"foldername":"immediatelyfast-neoforge.mixins.json","fingerprint":1898729016,"invalidFingerprint":false},{"foldername":"net","fingerprint":1029988886,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1022878643,"invalidFingerprint":false}],"packageFingerprint":1221808790,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":686911,"fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","hashes":[{"type":1,"value":"f1f5cccd7cb59d875f44566b2e557ccecc8c33fb"},{"type":2,"value":"567bb6d9155070ad858740af12450c63"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9d4ad848-d728-4774-b480-7d88d9e18acd","modSource":0,"addonID":858542,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424,423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Searchables","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/searchables","issuesURL":"https://github.com/jaredlll08/searchables/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/814/175/256/256/638189233295197018.png","tags":[],"installedFile":{"id":5831692,"fileName":"Searchables-neoforge-1.21.1-1.0.2.jar","fileDate":"2024-10-21T20:44:39.39Z","fileLength":77326,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5831/692/Searchables-neoforge-1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2167244682,"invalidFingerprint":false},{"foldername":"com","fingerprint":3685677713,"invalidFingerprint":false},{"foldername":"searchables.neoforge.mixins.json","fingerprint":3433993331,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3218994496,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2110428171,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1386288080,"invalidFingerprint":false},{"foldername":"searchables.mixins.json","fingerprint":1878814348,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":267180278,"invalidFingerprint":false}],"packageFingerprint":2093242437,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":858542,"fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"5b8a0b43a474c066371b2e16f9bfb88622552a74"},{"type":2,"value":"0a0a8665bb4d77e3f8139750cb98d9e4"}]},"dateInstalled":"2026-05-07T21:58:27.6285392Z","dateUpdated":"2026-05-07T21:58:27.6301055Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Searchables-neoforge-1.21.1-1.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5831692,"fileName":"Searchables-neoforge-1.21.1-1.0.2.jar","fileDate":"2024-10-21T20:44:39.39Z","fileLength":77326,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5831/692/Searchables-neoforge-1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2167244682,"invalidFingerprint":false},{"foldername":"com","fingerprint":3685677713,"invalidFingerprint":false},{"foldername":"searchables.neoforge.mixins.json","fingerprint":3433993331,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3218994496,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2110428171,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1386288080,"invalidFingerprint":false},{"foldername":"searchables.mixins.json","fingerprint":1878814348,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":267180278,"invalidFingerprint":false}],"packageFingerprint":2093242437,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":858542,"fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"5b8a0b43a474c066371b2e16f9bfb88622552a74"},{"type":2,"value":"0a0a8665bb4d77e3f8139750cb98d9e4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"71d1036c-d201-4290-9b58-954c3506822f","modSource":0,"addonID":324717,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Jade 🔍","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","authors":[{"id":21286654,"name":"Snownee"}],"primaryAuthor":"Snownee","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/jade","issuesURL":"https://github.com/Snownee/Jade/issues?q=is%3Aissue","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/207/323/256/256/636965628804677340.png","tags":[],"installedFile":{"id":7545219,"fileName":"Jade-1.21.1-NeoForge-15.10.5.jar","fileDate":"2026-01-29T11:11:45.407Z","fileLength":725742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7545/219/Jade-1.21.1-NeoForge-15.10.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1010328523,"invalidFingerprint":false},{"foldername":"snownee","fingerprint":4133922544,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2300343325,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1859719455,"invalidFingerprint":false},{"foldername":"jade.mixins.json","fingerprint":3905305630,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":890290696,"invalidFingerprint":false}],"packageFingerprint":1963309046,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":324717,"fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","hashes":[{"type":1,"value":"d5bf134b3dbde9f5258666823900e21341dc0a50"},{"type":2,"value":"80f9186d25b02ebbfa5773416f5da410"}]},"dateInstalled":"2026-05-07T22:44:28.6589114Z","dateUpdated":"2026-05-07T22:44:28.6617915Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Jade-1.21.1-NeoForge-15.10.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7545219,"fileName":"Jade-1.21.1-NeoForge-15.10.5.jar","fileDate":"2026-01-29T11:11:45.407Z","fileLength":725742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7545/219/Jade-1.21.1-NeoForge-15.10.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1010328523,"invalidFingerprint":false},{"foldername":"snownee","fingerprint":4133922544,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2300343325,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1859719455,"invalidFingerprint":false},{"foldername":"jade.mixins.json","fingerprint":3905305630,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":890290696,"invalidFingerprint":false}],"packageFingerprint":1963309046,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":324717,"fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","hashes":[{"type":1,"value":"d5bf134b3dbde9f5258666823900e21341dc0a50"},{"type":2,"value":"80f9186d25b02ebbfa5773416f5da410"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1340439b-c060-4bdd-8cee-806e4dd3ef6f","modSource":0,"addonID":263420,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Xaero's Minimap","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","authors":[{"id":12362980,"name":"xaero96"}],"primaryAuthor":"xaero96","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap","issuesURL":"https://legacy.curseforge.com/minecraft/mc-mods/xaeros-minimap/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/92/854/256/256/636258666554688823.png","tags":[],"installedFile":{"id":8046966,"fileName":"xaerominimap-neoforge-1.21.1-25.3.13.jar","fileDate":"2026-05-06T07:40:46.69Z","fileLength":2138329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/966/xaerominimap-neoforge-1.21.1-25.3.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":636608,"type":2},{"addonId":317780,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1968926405,"invalidFingerprint":false},{"foldername":"LICENSE_xaerohud","fingerprint":2362711594,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3101686611,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1956780562,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":2370513085,"invalidFingerprint":false},{"foldername":"xaerohud.mixins.json","fingerprint":368816408,"invalidFingerprint":false},{"foldername":"xaerohud.neoforge.mixins.json","fingerprint":1871963410,"invalidFingerprint":false},{"foldername":"xaerominimap.mixins.json","fingerprint":2847352557,"invalidFingerprint":false},{"foldername":"xaerominimap.neoforge.mixins.json","fingerprint":1845903568,"invalidFingerprint":false}],"packageFingerprint":1593901604,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":263420,"fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","hashes":[{"type":1,"value":"06cdb37f394bdbebce94c64644ae4bc21bd98959"},{"type":2,"value":"093968855bab5ccea048eb2e7519de03"}]},"dateInstalled":"2026-05-07T22:44:45.0658065Z","dateUpdated":"2026-05-07T22:44:45.0702062Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\xaerominimap-neoforge-1.21.1-25.3.13.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8046966,"fileName":"xaerominimap-neoforge-1.21.1-25.3.13.jar","fileDate":"2026-05-06T07:40:46.69Z","fileLength":2138329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/966/xaerominimap-neoforge-1.21.1-25.3.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":636608,"type":2},{"addonId":317780,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1968926405,"invalidFingerprint":false},{"foldername":"LICENSE_xaerohud","fingerprint":2362711594,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3101686611,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1956780562,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":2370513085,"invalidFingerprint":false},{"foldername":"xaerohud.mixins.json","fingerprint":368816408,"invalidFingerprint":false},{"foldername":"xaerohud.neoforge.mixins.json","fingerprint":1871963410,"invalidFingerprint":false},{"foldername":"xaerominimap.mixins.json","fingerprint":2847352557,"invalidFingerprint":false},{"foldername":"xaerominimap.neoforge.mixins.json","fingerprint":1845903568,"invalidFingerprint":false}],"packageFingerprint":1593901604,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":263420,"fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","hashes":[{"type":1,"value":"06cdb37f394bdbebce94c64644ae4bc21bd98959"},{"type":2,"value":"093968855bab5ccea048eb2e7519de03"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b0d832e0-1c8e-4540-bf14-e2efdc2dcda2","modSource":0,"addonID":856906,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Leaky - Item Lag Fix[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"leaky-1.21-2.4.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/leaky","issuesURL":"https://github.com/someaddons/Leaky/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/812/215/256/256/638185479372322299.png","tags":[],"installedFile":{"id":7392199,"fileName":"leaky-1.21-2.4.jar","fileDate":"2025-12-29T12:24:47.9Z","fileLength":15483,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7392/199/leaky-1.21-2.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2500885440,"invalidFingerprint":false},{"foldername":"com","fingerprint":1121524860,"invalidFingerprint":false},{"foldername":"assets","fingerprint":412992922,"invalidFingerprint":false},{"foldername":"leaky.mixins.json","fingerprint":4252026864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":800491986,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":856906,"fileNameOnDisk":"leaky-1.21-2.4.jar","hashes":[{"type":1,"value":"71b410b8c9567c8a2ad9fdb637f462f1f52bc9e2"},{"type":2,"value":"ae878840fd20ad1add5f781736d2ed97"}]},"dateInstalled":"2026-05-07T21:57:56.8165703Z","dateUpdated":"2026-05-07T21:57:56.8175132Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\leaky-1.21-2.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7392199,"fileName":"leaky-1.21-2.4.jar","fileDate":"2025-12-29T12:24:47.9Z","fileLength":15483,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7392/199/leaky-1.21-2.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2500885440,"invalidFingerprint":false},{"foldername":"com","fingerprint":1121524860,"invalidFingerprint":false},{"foldername":"assets","fingerprint":412992922,"invalidFingerprint":false},{"foldername":"leaky.mixins.json","fingerprint":4252026864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":800491986,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":856906,"fileNameOnDisk":"leaky-1.21-2.4.jar","hashes":[{"type":1,"value":"71b410b8c9567c8a2ad9fdb637f462f1f52bc9e2"},{"type":2,"value":"ae878840fd20ad1add5f781736d2ed97"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e8fcf26e-a4f2-4b56-b772-2ec35dba7c0b","modSource":0,"addonID":1007509,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[393,400,403,402,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Woods","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Woods - 1.1.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-woods","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1284/419/256/256/638835340044795612.webp","tags":[],"installedFile":{"id":7451279,"fileName":"Realistic Woods - 1.1.zip","fileDate":"2026-01-12T18:13:35.927Z","fileLength":606602,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/279/Realistic%20Woods%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3169165280,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":929713890,"invalidFingerprint":false}],"packageFingerprint":289928230,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1007509,"fileNameOnDisk":"Realistic Woods - 1.1.zip","hashes":[{"type":1,"value":"e784546e3f17b8c241f2cb001b64621b9fa90620"},{"type":2,"value":"4736fd8fb15be5fba2ef8a5ffa0f4f45"}]},"dateInstalled":"2026-05-07T21:58:55.141516Z","dateUpdated":"2026-05-07T21:58:55.1430803Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Woods - 1.1.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7451279,"fileName":"Realistic Woods - 1.1.zip","fileDate":"2026-01-12T18:13:35.927Z","fileLength":606602,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/279/Realistic%20Woods%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3169165280,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":929713890,"invalidFingerprint":false}],"packageFingerprint":289928230,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1007509,"fileNameOnDisk":"Realistic Woods - 1.1.zip","hashes":[{"type":1,"value":"e784546e3f17b8c241f2cb001b64621b9fa90620"},{"type":2,"value":"4736fd8fb15be5fba2ef8a5ffa0f4f45"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"18eafb97-a682-4a98-959a-2184b00ec3c3","modSource":0,"addonID":628539,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,421,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Wood Good)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"},{"id":12753167,"name":"xelbayria"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/every-compat","issuesURL":"https://github.com/MehVahdJukaar/WoodGood/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/554/210/256/256/637896029495149356_animated.gif","tags":[],"installedFile":{"id":8017083,"fileName":"everycomp-1.21-2.11.40-neoforge.jar","fileDate":"2026-04-30T20:17:06.287Z","fileLength":2636617,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8017/83/everycomp-1.21-2.11.40-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":690226,"type":2},{"addonId":897116,"type":2},{"addonId":845097,"type":2},{"addonId":351725,"type":2},{"addonId":378646,"type":2},{"addonId":902986,"type":2},{"addonId":472521,"type":2},{"addonId":274350,"type":2},{"addonId":964817,"type":2},{"addonId":496913,"type":2},{"addonId":989479,"type":2},{"addonId":400933,"type":2},{"addonId":860325,"type":2},{"addonId":913586,"type":2},{"addonId":243121,"type":2},{"addonId":858032,"type":2},{"addonId":352835,"type":2},{"addonId":556861,"type":2},{"addonId":866509,"type":2},{"addonId":417365,"type":2},{"addonId":398521,"type":2},{"addonId":629153,"type":2},{"addonId":849364,"type":2},{"addonId":538214,"type":2},{"addonId":363569,"type":2},{"addonId":305840,"type":2},{"addonId":312359,"type":2},{"addonId":389697,"type":2},{"addonId":285121,"type":2},{"addonId":547069,"type":2},{"addonId":266228,"type":2},{"addonId":661902,"type":2},{"addonId":467136,"type":2},{"addonId":223852,"type":2},{"addonId":353515,"type":2},{"addonId":606011,"type":2},{"addonId":531744,"type":2},{"addonId":543610,"type":2},{"addonId":1122260,"type":2},{"addonId":328085,"type":2},{"addonId":227639,"type":2},{"addonId":341575,"type":2},{"addonId":527361,"type":2},{"addonId":610492,"type":2},{"addonId":527296,"type":2},{"addonId":254794,"type":2},{"addonId":362528,"type":2},{"addonId":602059,"type":2},{"addonId":565095,"type":2},{"addonId":380617,"type":2},{"addonId":875843,"type":2},{"addonId":453925,"type":2},{"addonId":634277,"type":2},{"addonId":694349,"type":2},{"addonId":499980,"type":3},{"addonId":456956,"type":2},{"addonId":817272,"type":2},{"addonId":337396,"type":2},{"addonId":531188,"type":2},{"addonId":433862,"type":2},{"addonId":659110,"type":2},{"addonId":359540,"type":2},{"addonId":687475,"type":2},{"addonId":502372,"type":2},{"addonId":1308420,"type":2},{"addonId":352039,"type":2},{"addonId":897377,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2646903333,"invalidFingerprint":false},{"foldername":"architectury_inject_everycompat_common_1c749490e4c3445c93c72769336c64d1_73c4f44139e7c8cf0641eea81964dfcf77583c216a4afaa8e013ba7e9726bd9eeverycomp12121140devjar","fingerprint":3946783219,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1828148611,"invalidFingerprint":false},{"foldername":"data","fingerprint":1241522621,"invalidFingerprint":false},{"foldername":"everycomp-common.mixins.json","fingerprint":1730704052,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":116210111,"invalidFingerprint":false},{"foldername":"net","fingerprint":3416510759,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":4292068571,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":628539,"fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","hashes":[{"type":1,"value":"c15651f8ba76afbb869a2407d29c15a57f9d5d19"},{"type":2,"value":"b908b4fe169619f8cbc74fca40c0cc68"}]},"dateInstalled":"2026-05-07T23:01:00.8666323Z","dateUpdated":"2026-05-07T23:01:00.8703319Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\everycomp-1.21-2.11.40-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8017083,"fileName":"everycomp-1.21-2.11.40-neoforge.jar","fileDate":"2026-04-30T20:17:06.287Z","fileLength":2636617,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8017/83/everycomp-1.21-2.11.40-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":690226,"type":2},{"addonId":897116,"type":2},{"addonId":845097,"type":2},{"addonId":351725,"type":2},{"addonId":378646,"type":2},{"addonId":902986,"type":2},{"addonId":472521,"type":2},{"addonId":274350,"type":2},{"addonId":964817,"type":2},{"addonId":496913,"type":2},{"addonId":989479,"type":2},{"addonId":400933,"type":2},{"addonId":860325,"type":2},{"addonId":913586,"type":2},{"addonId":243121,"type":2},{"addonId":858032,"type":2},{"addonId":352835,"type":2},{"addonId":556861,"type":2},{"addonId":866509,"type":2},{"addonId":417365,"type":2},{"addonId":398521,"type":2},{"addonId":629153,"type":2},{"addonId":849364,"type":2},{"addonId":538214,"type":2},{"addonId":363569,"type":2},{"addonId":305840,"type":2},{"addonId":312359,"type":2},{"addonId":389697,"type":2},{"addonId":285121,"type":2},{"addonId":547069,"type":2},{"addonId":266228,"type":2},{"addonId":661902,"type":2},{"addonId":467136,"type":2},{"addonId":223852,"type":2},{"addonId":353515,"type":2},{"addonId":606011,"type":2},{"addonId":531744,"type":2},{"addonId":543610,"type":2},{"addonId":1122260,"type":2},{"addonId":328085,"type":2},{"addonId":227639,"type":2},{"addonId":341575,"type":2},{"addonId":527361,"type":2},{"addonId":610492,"type":2},{"addonId":527296,"type":2},{"addonId":254794,"type":2},{"addonId":362528,"type":2},{"addonId":602059,"type":2},{"addonId":565095,"type":2},{"addonId":380617,"type":2},{"addonId":875843,"type":2},{"addonId":453925,"type":2},{"addonId":634277,"type":2},{"addonId":694349,"type":2},{"addonId":499980,"type":3},{"addonId":456956,"type":2},{"addonId":817272,"type":2},{"addonId":337396,"type":2},{"addonId":531188,"type":2},{"addonId":433862,"type":2},{"addonId":659110,"type":2},{"addonId":359540,"type":2},{"addonId":687475,"type":2},{"addonId":502372,"type":2},{"addonId":1308420,"type":2},{"addonId":352039,"type":2},{"addonId":897377,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2646903333,"invalidFingerprint":false},{"foldername":"architectury_inject_everycompat_common_1c749490e4c3445c93c72769336c64d1_73c4f44139e7c8cf0641eea81964dfcf77583c216a4afaa8e013ba7e9726bd9eeverycomp12121140devjar","fingerprint":3946783219,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1828148611,"invalidFingerprint":false},{"foldername":"data","fingerprint":1241522621,"invalidFingerprint":false},{"foldername":"everycomp-common.mixins.json","fingerprint":1730704052,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":116210111,"invalidFingerprint":false},{"foldername":"net","fingerprint":3416510759,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":4292068571,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":628539,"fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","hashes":[{"type":1,"value":"c15651f8ba76afbb869a2407d29c15a57f9d5d19"},{"type":2,"value":"b908b4fe169619f8cbc74fca40c0cc68"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f139c148-c104-4a78-97ae-99f275f9d73a","modSource":0,"addonID":274259,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[412,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Carry On","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","authors":[{"id":10625505,"name":"Tschipp"},{"id":18033511,"name":"Purplicious_Cow_"}],"primaryAuthor":"Tschipp","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/carry-on","issuesURL":"https://github.com/Tschipp/CarryOn/issues","wikiURL":"https://github.com/Tschipp/CarryOn/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/109/514/256/256/636380307126307812.png","tags":[],"installedFile":{"id":7393892,"fileName":"carryon-neoforge-1.21.1-2.2.4.4.jar","fileDate":"2025-12-29T20:17:48.73Z","fileLength":357489,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7393/892/carryon-neoforge-1.21.1-2.2.4.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3106533267,"invalidFingerprint":false},{"foldername":"tschipp","fingerprint":3505794663,"invalidFingerprint":false},{"foldername":"data","fingerprint":1734879053,"invalidFingerprint":false},{"foldername":"carryon.mixins.json","fingerprint":4107927270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1897947453,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1475409477,"invalidFingerprint":false},{"foldername":"carryon.neoforge.mixins.json","fingerprint":4084096819,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":4036356024,"invalidFingerprint":false},{"foldername":"LICENSE_carryon","fingerprint":2972570874,"invalidFingerprint":false}],"packageFingerprint":4049909642,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":274259,"fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","hashes":[{"type":1,"value":"774bf57a199784c35e74f2d619d6001c87185a11"},{"type":2,"value":"116381c8900494997eac5a2c1bf42348"}]},"dateInstalled":"2026-05-07T22:46:15.5988928Z","dateUpdated":"2026-05-07T22:46:15.6006921Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\carryon-neoforge-1.21.1-2.2.4.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7393892,"fileName":"carryon-neoforge-1.21.1-2.2.4.4.jar","fileDate":"2025-12-29T20:17:48.73Z","fileLength":357489,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7393/892/carryon-neoforge-1.21.1-2.2.4.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3106533267,"invalidFingerprint":false},{"foldername":"tschipp","fingerprint":3505794663,"invalidFingerprint":false},{"foldername":"data","fingerprint":1734879053,"invalidFingerprint":false},{"foldername":"carryon.mixins.json","fingerprint":4107927270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1897947453,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1475409477,"invalidFingerprint":false},{"foldername":"carryon.neoforge.mixins.json","fingerprint":4084096819,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":4036356024,"invalidFingerprint":false},{"foldername":"LICENSE_carryon","fingerprint":2972570874,"invalidFingerprint":false}],"packageFingerprint":4049909642,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":274259,"fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","hashes":[{"type":1,"value":"774bf57a199784c35e74f2d619d6001c87185a11"},{"type":2,"value":"116381c8900494997eac5a2c1bf42348"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b6db476a-d02e-4472-bda8-99332c889040","modSource":0,"addonID":535489,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[422,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sound Physics Remastered","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","authors":[{"id":20569971,"name":"henkelmax"}],"primaryAuthor":"henkelmax","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sound-physics-remastered","issuesURL":"https://github.com/henkelmax/sound-physics-remastered/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/442/531/256/256/637694502660771592.png","tags":[],"installedFile":{"id":6352946,"fileName":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","fileDate":"2025-03-26T20:53:21.98Z","fileLength":199309,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6352/946/sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2},{"addonId":416089,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":138495461,"invalidFingerprint":false},{"foldername":"com","fingerprint":1238695023,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2004311083,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4226171891,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":277429908,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.accesswidener","fingerprint":3831105509,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.mixins.json","fingerprint":2517006917,"invalidFingerprint":false},{"foldername":"sound-physics-remastered-fabric-refmap.json","fingerprint":1082091467,"invalidFingerprint":false},{"foldername":"de","fingerprint":2285137511,"invalidFingerprint":false}],"packageFingerprint":3432189773,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":535489,"fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","hashes":[{"type":1,"value":"fc95715050152d1869284a25fccf0e742a1a98af"},{"type":2,"value":"50acfcf9052ec227b9e499ad62ee56bb"}]},"dateInstalled":"2026-05-07T22:45:46.2958004Z","dateUpdated":"2026-05-07T22:45:46.2971604Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sound-physics-remastered-neoforge-1.21.1-1.4.10.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6352946,"fileName":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","fileDate":"2025-03-26T20:53:21.98Z","fileLength":199309,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6352/946/sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2},{"addonId":416089,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":138495461,"invalidFingerprint":false},{"foldername":"com","fingerprint":1238695023,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2004311083,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4226171891,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":277429908,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.accesswidener","fingerprint":3831105509,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.mixins.json","fingerprint":2517006917,"invalidFingerprint":false},{"foldername":"sound-physics-remastered-fabric-refmap.json","fingerprint":1082091467,"invalidFingerprint":false},{"foldername":"de","fingerprint":2285137511,"invalidFingerprint":false}],"packageFingerprint":3432189773,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":535489,"fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","hashes":[{"type":1,"value":"fc95715050152d1869284a25fccf0e742a1a98af"},{"type":2,"value":"50acfcf9052ec227b9e499ad62ee56bb"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"09de1f5e-9f25-4cdc-b3ff-9858d51191af","modSource":0,"addonID":832882,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[409,423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Structure Essentials","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":409,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/structure-essentials-forge-fabric","issuesURL":"https://github.com/someaddons/structureessentials/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/784/172/256/256/638132898813460745.png","tags":[],"installedFile":{"id":7962596,"fileName":"structureessentials-1.21.1-5.0.jar","fileDate":"2026-04-21T19:51:52.317Z","fileLength":60833,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7962/596/structureessentials-1.21.1-5.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3832705314,"invalidFingerprint":false},{"foldername":"com","fingerprint":3248525122,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"structureessentials.mixins.json","fingerprint":1255601260,"invalidFingerprint":false}],"packageFingerprint":608980435,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":832882,"fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","hashes":[{"type":1,"value":"5c059c2cb2ad8c43e1384b0939bf258801aadfea"},{"type":2,"value":"c6ab08c1607e6b1eba091455a499f581"}]},"dateInstalled":"2026-05-07T21:58:18.4952937Z","dateUpdated":"2026-05-07T21:58:18.4963469Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\structureessentials-1.21.1-5.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7962596,"fileName":"structureessentials-1.21.1-5.0.jar","fileDate":"2026-04-21T19:51:52.317Z","fileLength":60833,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7962/596/structureessentials-1.21.1-5.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3832705314,"invalidFingerprint":false},{"foldername":"com","fingerprint":3248525122,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"structureessentials.mixins.json","fingerprint":1255601260,"invalidFingerprint":false}],"packageFingerprint":608980435,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":832882,"fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","hashes":[{"type":1,"value":"5c059c2cb2ad8c43e1384b0939bf258801aadfea"},{"type":2,"value":"c6ab08c1607e6b1eba091455a499f581"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"84379f4e-c061-484a-a8b7-fa58a4d84e27","modSource":0,"addonID":1109370,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[403,404,393,401,400],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Mobs","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Mobs - 6.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-mobs","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1134/588/256/256/638695442149695484.png","tags":[],"installedFile":{"id":7890874,"fileName":"Realistic Mobs - 6.0.zip","fileDate":"2026-04-07T17:06:38.367Z","fileLength":477599,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/874/Realistic%20Mobs%20-%206.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1236336732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2730685569,"invalidFingerprint":false}],"packageFingerprint":749152005,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109370,"fileNameOnDisk":"Realistic Mobs - 6.0.zip","hashes":[{"type":1,"value":"822d4dcbf406425bd84d228b11d6b3f9c2a82459"},{"type":2,"value":"7ed80423f8a25028c4a433c29d757d69"}]},"dateInstalled":"2026-05-07T21:58:37.0303436Z","dateUpdated":"2026-05-07T21:58:37.0322439Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Mobs - 6.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7890874,"fileName":"Realistic Mobs - 6.0.zip","fileDate":"2026-04-07T17:06:38.367Z","fileLength":477599,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/874/Realistic%20Mobs%20-%206.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1236336732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2730685569,"invalidFingerprint":false}],"packageFingerprint":749152005,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109370,"fileNameOnDisk":"Realistic Mobs - 6.0.zip","hashes":[{"type":1,"value":"822d4dcbf406425bd84d228b11d6b3f9c2a82459"},{"type":2,"value":"7ed80423f8a25028c4a433c29d757d69"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1142701e-0389-4bf8-9d1e-f29b1117a5b5","modSource":0,"addonID":342584,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Collective","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"collective-1.21.1-8.22.jar","authors":[{"id":7049004,"name":"Serilum"}],"primaryAuthor":"Serilum","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/collective","issuesURL":"https://github.com/Serilum/.issue-tracker/labels/Library: Collective","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/975/602/256/256/638479075930399380.png","tags":[],"installedFile":{"id":8021351,"fileName":"collective-1.21.1-8.22.jar","fileDate":"2026-05-01T14:12:00.197Z","fileLength":943020,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8021/351/collective-1.21.1-8.22.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"collective.accesswidener","fingerprint":1854494023,"invalidFingerprint":false},{"foldername":"collective_fabric.crop.mixins.json","fingerprint":3675928845,"invalidFingerprint":false},{"foldername":"collective_fabric.mixins.json","fingerprint":2802944107,"invalidFingerprint":false},{"foldername":"collective_fabric.refmap.json","fingerprint":2662549530,"invalidFingerprint":false},{"foldername":"collective_forge.mixins.json","fingerprint":2937258322,"invalidFingerprint":false},{"foldername":"collective_neoforge.mixins.json","fingerprint":2985100551,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":896966630,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3034981654,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2402946623,"invalidFingerprint":false},{"foldername":"com","fingerprint":1953943695,"invalidFingerprint":false},{"foldername":"data","fingerprint":1100729918,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3012711564,"invalidFingerprint":false}],"packageFingerprint":287649027,"gameVersion":["1.21","Fabric","Forge","1.21.1","NeoForge","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":342584,"fileNameOnDisk":"collective-1.21.1-8.22.jar","hashes":[{"type":1,"value":"f3f8b8baf461ea8e8664cf1f8fe6593f8073f36d"},{"type":2,"value":"8075d9a7daf7bb35b59333db0280145f"}]},"dateInstalled":"2026-05-07T22:37:23.0348764Z","dateUpdated":"2026-05-07T22:37:23.0368807Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\collective-1.21.1-8.22.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8021351,"fileName":"collective-1.21.1-8.22.jar","fileDate":"2026-05-01T14:12:00.197Z","fileLength":943020,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8021/351/collective-1.21.1-8.22.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"collective.accesswidener","fingerprint":1854494023,"invalidFingerprint":false},{"foldername":"collective_fabric.crop.mixins.json","fingerprint":3675928845,"invalidFingerprint":false},{"foldername":"collective_fabric.mixins.json","fingerprint":2802944107,"invalidFingerprint":false},{"foldername":"collective_fabric.refmap.json","fingerprint":2662549530,"invalidFingerprint":false},{"foldername":"collective_forge.mixins.json","fingerprint":2937258322,"invalidFingerprint":false},{"foldername":"collective_neoforge.mixins.json","fingerprint":2985100551,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":896966630,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3034981654,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2402946623,"invalidFingerprint":false},{"foldername":"com","fingerprint":1953943695,"invalidFingerprint":false},{"foldername":"data","fingerprint":1100729918,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3012711564,"invalidFingerprint":false}],"packageFingerprint":287649027,"gameVersion":["1.21","Fabric","Forge","1.21.1","NeoForge","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":342584,"fileNameOnDisk":"collective-1.21.1-8.22.jar","hashes":[{"type":1,"value":"f3f8b8baf461ea8e8664cf1f8fe6593f8073f36d"},{"type":2,"value":"8075d9a7daf7bb35b59333db0280145f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9549aeb5-6914-4c30-9a1b-66b10fbdc08e","modSource":0,"addonID":888790,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,426,434,412],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Client Crafting","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"clientcrafting-1.21-2.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/client-crafting","issuesURL":"https://github.com/someaddons/clientcrafting/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/849/96/256/256/638249669529641442.png","tags":[],"installedFile":{"id":7920161,"fileName":"clientcrafting-1.21-2.1.jar","fileDate":"2026-04-13T09:58:03.88Z","fileLength":7144,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/161/clientcrafting-1.21-2.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":973081001,"invalidFingerprint":false},{"foldername":"com","fingerprint":1370458164,"invalidFingerprint":false},{"foldername":"clientcrafting.mixins.json","fingerprint":2548561900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1488100671,"invalidFingerprint":false}],"packageFingerprint":3484238619,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888790,"fileNameOnDisk":"clientcrafting-1.21-2.1.jar","hashes":[{"type":1,"value":"ed816decf1ce06bd17b3a446b4fddd33b07ace40"},{"type":2,"value":"09e8c9e83844ea5a9b1a569b8c14f515"}]},"dateInstalled":"2026-05-07T21:58:51.7910868Z","dateUpdated":"2026-05-07T21:58:51.7922447Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\clientcrafting-1.21-2.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7920161,"fileName":"clientcrafting-1.21-2.1.jar","fileDate":"2026-04-13T09:58:03.88Z","fileLength":7144,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/161/clientcrafting-1.21-2.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":973081001,"invalidFingerprint":false},{"foldername":"com","fingerprint":1370458164,"invalidFingerprint":false},{"foldername":"clientcrafting.mixins.json","fingerprint":2548561900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1488100671,"invalidFingerprint":false}],"packageFingerprint":3484238619,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888790,"fileNameOnDisk":"clientcrafting-1.21-2.1.jar","hashes":[{"type":1,"value":"ed816decf1ce06bd17b3a446b4fddd33b07ace40"},{"type":2,"value":"09e8c9e83844ea5a9b1a569b8c14f515"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"fa0a09e7-37bd-4de3-9b18-2a7cbf486c43","modSource":0,"addonID":410295,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Konkrete","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","authors":[{"id":100802238,"name":"Keksuccino"}],"primaryAuthor":"Keksuccino","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/konkrete","issuesURL":"https://github.com/Keksuccino/Konkrete/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1478/850/256/256/638961204478458770.png","tags":[],"installedFile":{"id":5453385,"fileName":"konkrete_neoforge_1.9.9_MC_1.21.jar","fileDate":"2024-06-21T07:53:27.01Z","fileLength":618842,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5453/385/konkrete_neoforge_1.9.9_MC_1.21.jar","isAlternate":false,"alternateFileId":5453386,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1492821937,"invalidFingerprint":false},{"foldername":"de","fingerprint":934634299,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2077150322,"invalidFingerprint":false},{"foldername":"konkrete.accesswidener","fingerprint":593902968,"invalidFingerprint":false},{"foldername":"konkrete.mixins.json","fingerprint":1712148904,"invalidFingerprint":false},{"foldername":"konkrete.neoforge.mixins.json","fingerprint":3180292564,"invalidFingerprint":false},{"foldername":"konkrete_logo_128x128.png","fingerprint":1541347227,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4026528315,"invalidFingerprint":false}],"packageFingerprint":3128317181,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":410295,"fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","hashes":[{"type":1,"value":"97771eb287d5ac7fe667d1df9493d5e54c8ca1fa"},{"type":2,"value":"6e77d08299ea1ec7756a299263bc469b"}]},"dateInstalled":"2026-05-07T21:58:52.820434Z","dateUpdated":"2026-05-07T21:58:52.8216324Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\konkrete_neoforge_1.9.9_MC_1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5453385,"fileName":"konkrete_neoforge_1.9.9_MC_1.21.jar","fileDate":"2024-06-21T07:53:27.01Z","fileLength":618842,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5453/385/konkrete_neoforge_1.9.9_MC_1.21.jar","isAlternate":false,"alternateFileId":5453386,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1492821937,"invalidFingerprint":false},{"foldername":"de","fingerprint":934634299,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2077150322,"invalidFingerprint":false},{"foldername":"konkrete.accesswidener","fingerprint":593902968,"invalidFingerprint":false},{"foldername":"konkrete.mixins.json","fingerprint":1712148904,"invalidFingerprint":false},{"foldername":"konkrete.neoforge.mixins.json","fingerprint":3180292564,"invalidFingerprint":false},{"foldername":"konkrete_logo_128x128.png","fingerprint":1541347227,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4026528315,"invalidFingerprint":false}],"packageFingerprint":3128317181,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":410295,"fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","hashes":[{"type":1,"value":"97771eb287d5ac7fe667d1df9493d5e54c8ca1fa"},{"type":2,"value":"6e77d08299ea1ec7756a299263bc469b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"fa143e34-d840-41a5-a15b-f0bc65717064","modSource":0,"addonID":968432,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5299,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"MonoLib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","authors":[{"id":104539068,"name":"jason13official"}],"primaryAuthor":"jason13official","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/monolib","issuesURL":"https://github.com/Cursee-Development/Mono-Lib/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1259/687/256/256/638820174543153212.png","tags":[],"installedFile":{"id":7974611,"fileName":"monolib-neoforge-1.21.1-4.0.2.jar","fileDate":"2026-04-23T21:53:05.337Z","fileLength":167568,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7974/611/monolib-neoforge-1.21.1-4.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3611904734,"invalidFingerprint":false},{"foldername":"com","fingerprint":2883795183,"invalidFingerprint":false},{"foldername":"io","fingerprint":415805843,"invalidFingerprint":false},{"foldername":"monolib.mixins.json","fingerprint":2672345543,"invalidFingerprint":false},{"foldername":"monolib.neoforge.mixins.json","fingerprint":660032375,"invalidFingerprint":false},{"foldername":"monolib.png","fingerprint":947204038,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":136227311,"invalidFingerprint":false},{"foldername":"LICENSE_MonoLib","fingerprint":394233247,"invalidFingerprint":false}],"packageFingerprint":1026648080,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968432,"fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","hashes":[{"type":1,"value":"63b094775c12e15cfd2822ee135035d3e0303d9c"},{"type":2,"value":"b26dd2adeb9e0987fc61d3f30eb1a5fc"}]},"dateInstalled":"2026-05-07T21:58:54.1459277Z","dateUpdated":"2026-05-07T21:58:54.1469821Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\monolib-neoforge-1.21.1-4.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7974611,"fileName":"monolib-neoforge-1.21.1-4.0.2.jar","fileDate":"2026-04-23T21:53:05.337Z","fileLength":167568,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7974/611/monolib-neoforge-1.21.1-4.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3611904734,"invalidFingerprint":false},{"foldername":"com","fingerprint":2883795183,"invalidFingerprint":false},{"foldername":"io","fingerprint":415805843,"invalidFingerprint":false},{"foldername":"monolib.mixins.json","fingerprint":2672345543,"invalidFingerprint":false},{"foldername":"monolib.neoforge.mixins.json","fingerprint":660032375,"invalidFingerprint":false},{"foldername":"monolib.png","fingerprint":947204038,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":136227311,"invalidFingerprint":false},{"foldername":"LICENSE_MonoLib","fingerprint":394233247,"invalidFingerprint":false}],"packageFingerprint":1026648080,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968432,"fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","hashes":[{"type":1,"value":"63b094775c12e15cfd2822ee135035d3e0303d9c"},{"type":2,"value":"b26dd2adeb9e0987fc61d3f30eb1a5fc"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e5327c82-2fdb-4cbf-846e-a5b9df67e2d8","modSource":0,"addonID":1023259,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,421,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Prickle","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/prickle","issuesURL":"https://github.com/Darkhax-Minecraft/PrickleMC/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1064/161/256/256/638597208248046640.png","tags":[],"installedFile":{"id":6961457,"fileName":"prickle-neoforge-1.21.1-21.1.11.jar","fileDate":"2025-09-04T03:19:33.637Z","fileLength":84812,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6961/457/prickle-neoforge-1.21.1-21.1.11.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":882056026,"invalidFingerprint":false},{"foldername":"net","fingerprint":1420654100,"invalidFingerprint":false},{"foldername":"prickle.mixins.json","fingerprint":2402534181,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1242308391,"invalidFingerprint":false},{"foldername":"logo_prickle.png","fingerprint":4006121450,"invalidFingerprint":false},{"foldername":"prickle.neoforge.mixins.json","fingerprint":1321578070,"invalidFingerprint":false},{"foldername":"license_prickle.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":3352390329,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1023259,"fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","hashes":[{"type":1,"value":"5174059ecf97340a0de5ef211b938de26c4eaa36"},{"type":2,"value":"533c154fb306cd8043564ee1533873ce"}]},"dateInstalled":"2026-05-07T22:46:28.235154Z","dateUpdated":"2026-05-07T22:46:28.2365105Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\prickle-neoforge-1.21.1-21.1.11.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6961457,"fileName":"prickle-neoforge-1.21.1-21.1.11.jar","fileDate":"2025-09-04T03:19:33.637Z","fileLength":84812,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6961/457/prickle-neoforge-1.21.1-21.1.11.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":882056026,"invalidFingerprint":false},{"foldername":"net","fingerprint":1420654100,"invalidFingerprint":false},{"foldername":"prickle.mixins.json","fingerprint":2402534181,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1242308391,"invalidFingerprint":false},{"foldername":"logo_prickle.png","fingerprint":4006121450,"invalidFingerprint":false},{"foldername":"prickle.neoforge.mixins.json","fingerprint":1321578070,"invalidFingerprint":false},{"foldername":"license_prickle.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":3352390329,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1023259,"fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","hashes":[{"type":1,"value":"5174059ecf97340a0de5ef211b938de26c4eaa36"},{"type":2,"value":"533c154fb306cd8043564ee1533873ce"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6855c071-1f9a-4000-81c3-45f26b6fde83","modSource":0,"addonID":568563,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"[ETF] Entity Texture Features - [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","authors":[{"id":102405316,"name":"Traben"}],"primaryAuthor":"Traben","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entity-texture-features-fabric","issuesURL":"https://github.com/Traben-0/EmissiveMod/issues","wikiURL":"https://github.com/Traben-0/Entity_Texture_Features/blob/master/.github/README.md","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/983/279/256/256/638491557830728907.png","tags":[],"installedFile":{"id":7930620,"fileName":"entity_texture_features_1.21-neoforge-7.1.jar","fileDate":"2026-04-15T13:06:22.37Z","fileLength":752334,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7930/620/entity_texture_features_1.21-neoforge-7.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238850055,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2964002206,"invalidFingerprint":false},{"foldername":"entity_texture_features.mixins.json","fingerprint":4135211644,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3814536893,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":2845070659,"invalidFingerprint":false}],"packageFingerprint":1249730238,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":568563,"fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","hashes":[{"type":1,"value":"56de40b237ff44dbf1bb68844e0f118607902684"},{"type":2,"value":"07c98cc3e76f514eee3adee43d05dae9"}]},"dateInstalled":"2026-05-07T21:58:50.7230147Z","dateUpdated":"2026-05-07T21:58:50.7241776Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entity_texture_features_1.21-neoforge-7.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7930620,"fileName":"entity_texture_features_1.21-neoforge-7.1.jar","fileDate":"2026-04-15T13:06:22.37Z","fileLength":752334,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7930/620/entity_texture_features_1.21-neoforge-7.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238850055,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2964002206,"invalidFingerprint":false},{"foldername":"entity_texture_features.mixins.json","fingerprint":4135211644,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3814536893,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":2845070659,"invalidFingerprint":false}],"packageFingerprint":1249730238,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":568563,"fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","hashes":[{"type":1,"value":"56de40b237ff44dbf1bb68844e0f118607902684"},{"type":2,"value":"07c98cc3e76f514eee3adee43d05dae9"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c981ad42-3f79-4331-92e9-45c4b950e98d","modSource":0,"addonID":470193,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Connectivity","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"connectivity-1.21.1-7.6.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/connectivity","issuesURL":"https://github.com/someaddons/connectivity/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/532/325/256/256/637855720922086407.png","tags":[],"installedFile":{"id":7367221,"fileName":"connectivity-1.21.1-7.6.jar","fileDate":"2025-12-22T22:30:30.77Z","fileLength":114165,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7367/221/connectivity-1.21.1-7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1893397122,"invalidFingerprint":false},{"foldername":"com","fingerprint":3682893690,"invalidFingerprint":false},{"foldername":"connectivity.mixins.json","fingerprint":3632941706,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2098059805,"invalidFingerprint":false}],"packageFingerprint":1642034907,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":470193,"fileNameOnDisk":"connectivity-1.21.1-7.6.jar","hashes":[{"type":1,"value":"6adebe84f745dec8fa33bc3982383bc1cc24d49e"},{"type":2,"value":"f2d38f850688eefa338b807801df2b4b"}]},"dateInstalled":"2026-05-07T21:58:52.3039631Z","dateUpdated":"2026-05-07T21:58:52.3053228Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\connectivity-1.21.1-7.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7367221,"fileName":"connectivity-1.21.1-7.6.jar","fileDate":"2025-12-22T22:30:30.77Z","fileLength":114165,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7367/221/connectivity-1.21.1-7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1893397122,"invalidFingerprint":false},{"foldername":"com","fingerprint":3682893690,"invalidFingerprint":false},{"foldername":"connectivity.mixins.json","fingerprint":3632941706,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2098059805,"invalidFingerprint":false}],"packageFingerprint":1642034907,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":470193,"fileNameOnDisk":"connectivity-1.21.1-7.6.jar","hashes":[{"type":1,"value":"6adebe84f745dec8fa33bc3982383bc1cc24d49e"},{"type":2,"value":"f2d38f850688eefa338b807801df2b4b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"af827eea-c674-425b-87ea-f57ccee5427e","modSource":0,"addonID":580689,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loot Integrations","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loot-integrations","issuesURL":"https://github.com/someaddons/LootIntegrations/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/531/625/256/256/637853939577730031.png","tags":[],"installedFile":{"id":6640970,"fileName":"lootintegrations-1.21.1-4.7.jar","fileDate":"2025-06-11T18:08:14.7Z","fileLength":36966,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6640/970/lootintegrations-1.21.1-4.7.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2832443236,"invalidFingerprint":false},{"foldername":"com","fingerprint":3676581281,"invalidFingerprint":false},{"foldername":"data","fingerprint":2760451334,"invalidFingerprint":false},{"foldername":"lootintegrations.mixins.json","fingerprint":2486856047,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":316510790,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":580689,"fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","hashes":[{"type":1,"value":"ba601fe630f444d974838bfd80a185a0e3e0309c"},{"type":2,"value":"de033387fe1955841bea50360aec0315"}]},"dateInstalled":"2026-05-07T22:48:38.7531224Z","dateUpdated":"2026-05-07T22:48:39.1541743Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootintegrations-1.21.1-4.7.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6640970,"fileName":"lootintegrations-1.21.1-4.7.jar","fileDate":"2025-06-11T18:08:14.7Z","fileLength":36966,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6640/970/lootintegrations-1.21.1-4.7.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2832443236,"invalidFingerprint":false},{"foldername":"com","fingerprint":3676581281,"invalidFingerprint":false},{"foldername":"data","fingerprint":2760451334,"invalidFingerprint":false},{"foldername":"lootintegrations.mixins.json","fingerprint":2486856047,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":316510790,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":580689,"fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","hashes":[{"type":1,"value":"ba601fe630f444d974838bfd80a185a0e3e0309c"},{"type":2,"value":"de033387fe1955841bea50360aec0315"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"572a8452-269a-4b9b-905a-f89a0d279cc1","modSource":0,"addonID":401648,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"BetterF3","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","authors":[{"id":42614218,"name":"cominixo"}],"primaryAuthor":"cominixo","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/betterf3","issuesURL":"https://github.com/TreyRuffy/BetterF3/issues/","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/293/27/256/256/637327750859254377.png","tags":[],"installedFile":{"id":5873258,"fileName":"BetterF3-11.0.3-NeoForge-1.21.1.jar","fileDate":"2024-11-04T00:45:07.78Z","fileLength":481646,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5873/258/BetterF3-11.0.3-NeoForge-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3447543306,"invalidFingerprint":false},{"foldername":"BetterF3-common-refmap.json","fingerprint":368856278,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":2773559383,"invalidFingerprint":false},{"foldername":"architectury_inject_BetterF3_common_6022176412bf47f0a48f36924db6bd69_9b72c03cca76358ede5bc94ad01fcfe834a221536053c442d21c86edbe7c6e0cBetterF31103devjar","fingerprint":1967257789,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3372408542,"invalidFingerprint":false},{"foldername":"betterf3.mixins.json","fingerprint":3760558264,"invalidFingerprint":false},{"foldername":"betterf3.neoforge.mixins.json","fingerprint":479940081,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":773465483,"invalidFingerprint":false},{"foldername":"me","fingerprint":4169747550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2092460052,"invalidFingerprint":false}],"packageFingerprint":2574672049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":401648,"fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","hashes":[{"type":1,"value":"8fa17df26d3650416bc124be7a264bc1566a3b26"},{"type":2,"value":"ece6a3a01373146d2f351ba721e0083d"}]},"dateInstalled":"2026-05-07T21:58:03.5072331Z","dateUpdated":"2026-05-07T21:58:03.5083748Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BetterF3-11.0.3-NeoForge-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5873258,"fileName":"BetterF3-11.0.3-NeoForge-1.21.1.jar","fileDate":"2024-11-04T00:45:07.78Z","fileLength":481646,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5873/258/BetterF3-11.0.3-NeoForge-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3447543306,"invalidFingerprint":false},{"foldername":"BetterF3-common-refmap.json","fingerprint":368856278,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":2773559383,"invalidFingerprint":false},{"foldername":"architectury_inject_BetterF3_common_6022176412bf47f0a48f36924db6bd69_9b72c03cca76358ede5bc94ad01fcfe834a221536053c442d21c86edbe7c6e0cBetterF31103devjar","fingerprint":1967257789,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3372408542,"invalidFingerprint":false},{"foldername":"betterf3.mixins.json","fingerprint":3760558264,"invalidFingerprint":false},{"foldername":"betterf3.neoforge.mixins.json","fingerprint":479940081,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":773465483,"invalidFingerprint":false},{"foldername":"me","fingerprint":4169747550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2092460052,"invalidFingerprint":false}],"packageFingerprint":2574672049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":401648,"fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","hashes":[{"type":1,"value":"8fa17df26d3650416bc124be7a264bc1566a3b26"},{"type":2,"value":"ece6a3a01373146d2f351ba721e0083d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f817c775-1e1b-47d7-8ea3-0b26374198b6","modSource":0,"addonID":634062,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"No Chat Reports","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","authors":[{"id":60127971,"name":"Aizistral"}],"primaryAuthor":"Aizistral","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/no-chat-reports","issuesURL":"https://github.com/Aizistral-Studios/No-Chat-Reports/issues","wikiURL":"https://github.com/Aizistral-Studios/No-Chat-Reports/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/560/68/256/256/637910636688514454.png","tags":[],"installedFile":{"id":5885735,"fileName":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","fileDate":"2024-11-08T18:15:51.323Z","fileLength":306668,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5885/735/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1830069249,"invalidFingerprint":false},{"foldername":"com","fingerprint":3722285764,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1936421194,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1899993267,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":4062509488,"invalidFingerprint":false},{"foldername":"mixins","fingerprint":3328070053,"invalidFingerprint":false}],"packageFingerprint":1237891864,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":634062,"fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","hashes":[{"type":1,"value":"9edfc7861277ff661141304dc8216f83eacdd9af"},{"type":2,"value":"07496752e6b64dd33d68cd5166818402"}]},"dateInstalled":"2026-05-07T21:58:00.7667043Z","dateUpdated":"2026-05-07T21:58:00.7680022Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5885735,"fileName":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","fileDate":"2024-11-08T18:15:51.323Z","fileLength":306668,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5885/735/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1830069249,"invalidFingerprint":false},{"foldername":"com","fingerprint":3722285764,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1936421194,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1899993267,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":4062509488,"invalidFingerprint":false},{"foldername":"mixins","fingerprint":3328070053,"invalidFingerprint":false}],"packageFingerprint":1237891864,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":634062,"fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","hashes":[{"type":1,"value":"9edfc7861277ff661141304dc8216f83eacdd9af"},{"type":2,"value":"07496752e6b64dd33d68cd5166818402"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"878d65f0-a1d6-4263-8b52-641df3ba14a6","modSource":0,"addonID":883287,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast Paintings","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-paintings","issuesURL":"https://github.com/MehVahdJukaar/FastPaintings/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/842/714/256/256/638238468460858103.png","tags":[],"installedFile":{"id":7305762,"fileName":"fastpaintings-1.21-1.3.0-neoforge.jar","fileDate":"2025-12-07T20:37:47.69Z","fileLength":155810,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7305/762/fastpaintings-1.21-1.3.0-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":885052021,"invalidFingerprint":false},{"foldername":"architectury_inject_fastpaintings_common_f83284908daa47daa2dc2d3e07b83b2c_b4ac8a14827dfd63bfb40d8e37fcb9fc90c4da0e735120f9c6b9d9284874b5ecfastpaintings121130devjar","fingerprint":4186010484,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1378147275,"invalidFingerprint":false},{"foldername":"data","fingerprint":1958796037,"invalidFingerprint":false},{"foldername":"fastpaintings-common-refmap.json","fingerprint":1016817299,"invalidFingerprint":false},{"foldername":"fastpaintings-common.mixins.json","fingerprint":2500171270,"invalidFingerprint":false},{"foldername":"fastpaintings.mixins.json","fingerprint":246370165,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2145595820,"invalidFingerprint":false},{"foldername":"net","fingerprint":481631732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":354196599,"invalidFingerprint":false}],"packageFingerprint":4113985046,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":883287,"fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","hashes":[{"type":1,"value":"6df81c4fe659eaee718cb0856c79e4cfa272e9ea"},{"type":2,"value":"1f646cbc26d3e2a46dfc2807f2bedf79"}]},"dateInstalled":"2026-05-07T21:58:47.1248805Z","dateUpdated":"2026-05-07T21:58:47.1261846Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fastpaintings-1.21-1.3.0-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7305762,"fileName":"fastpaintings-1.21-1.3.0-neoforge.jar","fileDate":"2025-12-07T20:37:47.69Z","fileLength":155810,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7305/762/fastpaintings-1.21-1.3.0-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":885052021,"invalidFingerprint":false},{"foldername":"architectury_inject_fastpaintings_common_f83284908daa47daa2dc2d3e07b83b2c_b4ac8a14827dfd63bfb40d8e37fcb9fc90c4da0e735120f9c6b9d9284874b5ecfastpaintings121130devjar","fingerprint":4186010484,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1378147275,"invalidFingerprint":false},{"foldername":"data","fingerprint":1958796037,"invalidFingerprint":false},{"foldername":"fastpaintings-common-refmap.json","fingerprint":1016817299,"invalidFingerprint":false},{"foldername":"fastpaintings-common.mixins.json","fingerprint":2500171270,"invalidFingerprint":false},{"foldername":"fastpaintings.mixins.json","fingerprint":246370165,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2145595820,"invalidFingerprint":false},{"foldername":"net","fingerprint":481631732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":354196599,"invalidFingerprint":false}],"packageFingerprint":4113985046,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":883287,"fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","hashes":[{"type":1,"value":"6df81c4fe659eaee718cb0856c79e4cfa272e9ea"},{"type":2,"value":"1f646cbc26d3e2a46dfc2807f2bedf79"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7c9e195e-40b7-4043-a5c4-055f1122c803","modSource":0,"addonID":1001614,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lionfish API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","authors":[{"id":102522496,"name":"mcl_ender"}],"primaryAuthor":"mcl_ender","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lionfish-api","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/978/896/256/256/638484152344379944.png","tags":[],"installedFile":{"id":7941057,"fileName":"lionfishapi-2.7-fix-fix.jar","fileDate":"2026-04-17T17:39:58.57Z","fileLength":141535,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7941/57/lionfishapi-2.7-fix-fix.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":131475464,"invalidFingerprint":false},{"foldername":"com","fingerprint":614102099,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3957409155,"invalidFingerprint":false},{"foldername":"lionfishapi.mixins.json","fingerprint":4075590006,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":924402101,"invalidFingerprint":false}],"packageFingerprint":3722162517,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1001614,"fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","hashes":[{"type":1,"value":"af90b807eed100e899b9afa13bb75e7d45294ba3"},{"type":2,"value":"a0d7ad0c4883a81c7c17f1f0e2525727"}]},"dateInstalled":"2026-05-07T22:51:41.3075274Z","dateUpdated":"2026-05-07T22:51:41.3088367Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lionfishapi-2.7-fix-fix.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7941057,"fileName":"lionfishapi-2.7-fix-fix.jar","fileDate":"2026-04-17T17:39:58.57Z","fileLength":141535,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7941/57/lionfishapi-2.7-fix-fix.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":131475464,"invalidFingerprint":false},{"foldername":"com","fingerprint":614102099,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3957409155,"invalidFingerprint":false},{"foldername":"lionfishapi.mixins.json","fingerprint":4075590006,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":924402101,"invalidFingerprint":false}],"packageFingerprint":3722162517,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1001614,"fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","hashes":[{"type":1,"value":"af90b807eed100e899b9afa13bb75e7d45294ba3"},{"type":2,"value":"a0d7ad0c4883a81c7c17f1f0e2525727"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6297b10d-76ce-4c4c-9c6a-7dd3d026c29f","modSource":0,"addonID":619320,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Storage","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-storage","issuesURL":"https://github.com/P3pp3rF1y/SophisticatedStorage/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/543/206/256/256/637872959580005837.png","tags":[],"installedFile":{"id":8034906,"fileName":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","fileDate":"2026-05-03T21:59:52.277Z","fileLength":1667008,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/906/sophisticatedstorage-1.21.1-1.5.46.1717.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":513769,"type":2},{"addonId":238222,"type":2},{"addonId":456956,"type":2},{"addonId":964817,"type":2},{"addonId":233071,"type":2},{"addonId":235577,"type":2},{"addonId":618298,"type":3},{"addonId":243121,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1363186743,"invalidFingerprint":false},{"foldername":"net","fingerprint":2517423276,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1208915687,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2680510921,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":345096578,"invalidFingerprint":false},{"foldername":"data","fingerprint":138112467,"invalidFingerprint":false}],"packageFingerprint":1693126415,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":619320,"fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","hashes":[{"type":1,"value":"fb67f9f3593a2b105201fab9e7c88bfa4dfc4812"},{"type":2,"value":"d1c506c003fc4816bf98eb6dd91e1a32"}]},"dateInstalled":"2026-05-07T22:47:34.5908595Z","dateUpdated":"2026-05-07T22:47:34.5924585Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedstorage-1.21.1-1.5.46.1717.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8034906,"fileName":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","fileDate":"2026-05-03T21:59:52.277Z","fileLength":1667008,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/906/sophisticatedstorage-1.21.1-1.5.46.1717.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":513769,"type":2},{"addonId":238222,"type":2},{"addonId":456956,"type":2},{"addonId":964817,"type":2},{"addonId":233071,"type":2},{"addonId":235577,"type":2},{"addonId":618298,"type":3},{"addonId":243121,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1363186743,"invalidFingerprint":false},{"foldername":"net","fingerprint":2517423276,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1208915687,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2680510921,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":345096578,"invalidFingerprint":false},{"foldername":"data","fingerprint":138112467,"invalidFingerprint":false}],"packageFingerprint":1693126415,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":619320,"fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","hashes":[{"type":1,"value":"fb67f9f3593a2b105201fab9e7c88bfa4dfc4812"},{"type":2,"value":"d1c506c003fc4816bf98eb6dd91e1a32"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b4e8d6c9-ef1b-4852-a7b4-3dd9ac8148ad","modSource":0,"addonID":1335824,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426,422,434,419,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cataclysm: Spellbooks & BetterCombat - Compatibility","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cataclysmspells_compat.jar","authors":[{"id":102254308,"name":"rymusov"}],"primaryAuthor":"rymusov","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cataclysm-spellbooks-bettercombat-compatibility","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1418/361/256/256/638918939383350745.png","tags":[],"installedFile":{"id":6956563,"fileName":"cataclysmspells_compat.jar","fileDate":"2025-09-02T17:50:31.72Z","fileLength":4097,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6956/563/cataclysmspells_compat.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2685246262,"invalidFingerprint":false},{"foldername":"data","fingerprint":315356338,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":2582519377,"invalidFingerprint":false}],"packageFingerprint":1616038329,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335824,"fileNameOnDisk":"cataclysmspells_compat.jar","hashes":[{"type":1,"value":"6d012eb5c5a2d2332c6e2e41e738db87b3269a35"},{"type":2,"value":"6e98492cce5c0821f54057d923eec11d"}]},"dateInstalled":"2026-05-07T22:51:41.6580686Z","dateUpdated":"2026-05-07T22:51:41.6592083Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cataclysmspells_compat.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6956563,"fileName":"cataclysmspells_compat.jar","fileDate":"2025-09-02T17:50:31.72Z","fileLength":4097,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6956/563/cataclysmspells_compat.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2685246262,"invalidFingerprint":false},{"foldername":"data","fingerprint":315356338,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":2582519377,"invalidFingerprint":false}],"packageFingerprint":1616038329,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335824,"fileNameOnDisk":"cataclysmspells_compat.jar","hashes":[{"type":1,"value":"6d012eb5c5a2d2332c6e2e41e738db87b3269a35"},{"type":2,"value":"6e98492cce5c0821f54057d923eec11d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2b38e26f-1627-4861-818c-251d98bd0ab3","modSource":0,"addonID":949555,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"BadOptimizations","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","authors":[{"id":106927997,"name":"thosea"}],"primaryAuthor":"thosea","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/badoptimizations","issuesURL":"https://github.com/imthosea/BadOptimizations","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/918/720/256/256/638380210681797905.png","tags":[],"installedFile":{"id":7338300,"fileName":"BadOptimizations-2.4.1-1.21.1.jar","fileDate":"2025-12-15T23:15:19.003Z","fileLength":283566,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7338/300/BadOptimizations-2.4.1-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"fabric","fingerprint":2190801236,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3404611605,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":929453382,"invalidFingerprint":false},{"foldername":"assets","fingerprint":336259549,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":1761380522,"invalidFingerprint":false},{"foldername":"forge","fingerprint":3247576971,"invalidFingerprint":false},{"foldername":"bo-config-template.txt","fingerprint":2289034396,"invalidFingerprint":false},{"foldername":"forge-badoptimizations.mixins.json","fingerprint":3149879093,"invalidFingerprint":false},{"foldername":"fabric-badoptimizations.mixins.json","fingerprint":2253741962,"invalidFingerprint":false},{"foldername":"badoptimizations-icon.png","fingerprint":336259549,"invalidFingerprint":false}],"packageFingerprint":3053351722,"gameVersion":["Client","Fabric","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":949555,"fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","hashes":[{"type":1,"value":"1461d8e46391efd32a3085150e86094c9f6f5c9d"},{"type":2,"value":"59ee243a5ccd09fff1dd2879b3cad72a"}]},"dateInstalled":"2026-05-07T21:58:15.9972996Z","dateUpdated":"2026-05-07T21:58:15.9986375Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BadOptimizations-2.4.1-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7338300,"fileName":"BadOptimizations-2.4.1-1.21.1.jar","fileDate":"2025-12-15T23:15:19.003Z","fileLength":283566,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7338/300/BadOptimizations-2.4.1-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"fabric","fingerprint":2190801236,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3404611605,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":929453382,"invalidFingerprint":false},{"foldername":"assets","fingerprint":336259549,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":1761380522,"invalidFingerprint":false},{"foldername":"forge","fingerprint":3247576971,"invalidFingerprint":false},{"foldername":"bo-config-template.txt","fingerprint":2289034396,"invalidFingerprint":false},{"foldername":"forge-badoptimizations.mixins.json","fingerprint":3149879093,"invalidFingerprint":false},{"foldername":"fabric-badoptimizations.mixins.json","fingerprint":2253741962,"invalidFingerprint":false},{"foldername":"badoptimizations-icon.png","fingerprint":336259549,"invalidFingerprint":false}],"packageFingerprint":3053351722,"gameVersion":["Client","Fabric","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":949555,"fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","hashes":[{"type":1,"value":"1461d8e46391efd32a3085150e86094c9f6f5c9d"},{"type":2,"value":"59ee243a5ccd09fff1dd2879b3cad72a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"bde18540-0e94-4dfd-9d18-880c974b38f0","modSource":0,"addonID":482378,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ParCool! ~ Minecraft Parkour ~","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","authors":[{"id":102272291,"name":"alRex_U"}],"primaryAuthor":"alRex_U","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/parcool","issuesURL":"https://github.com/alRex-U/ParCool/issues","wikiURL":"https://github.com/alRex-U/ParCool/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/944/831/256/256/638429142781134750.png","tags":[],"installedFile":{"id":7760593,"fileName":"ParCool-1.21.1-3.4.3.3-NF.jar","fileDate":"2026-03-15T08:27:04.24Z","fileLength":1146864,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7760/593/ParCool-1.21.1-3.4.3.3-NF.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1132901,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2537108838,"invalidFingerprint":false},{"foldername":"com","fingerprint":2601344128,"invalidFingerprint":false},{"foldername":"assets","fingerprint":285712473,"invalidFingerprint":false},{"foldername":"data","fingerprint":2804807126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":783925261,"invalidFingerprint":false},{"foldername":"parcool.mixins.json","fingerprint":3592437439,"invalidFingerprint":false},{"foldername":"parcool_logo.png","fingerprint":1876280143,"invalidFingerprint":false},{"foldername":"shouldersurfing_plugin.json","fingerprint":4164995369,"invalidFingerprint":false}],"packageFingerprint":2202278659,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":482378,"fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","hashes":[{"type":1,"value":"d0ce92c2583875977919de722923abf18985c738"},{"type":2,"value":"9aa5c8ac0f634b9aaabb265074a0555c"}]},"dateInstalled":"2026-05-07T22:51:10.7159202Z","dateUpdated":"2026-05-07T22:51:10.7177813Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ParCool-1.21.1-3.4.3.3-NF.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7760593,"fileName":"ParCool-1.21.1-3.4.3.3-NF.jar","fileDate":"2026-03-15T08:27:04.24Z","fileLength":1146864,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7760/593/ParCool-1.21.1-3.4.3.3-NF.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1132901,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2537108838,"invalidFingerprint":false},{"foldername":"com","fingerprint":2601344128,"invalidFingerprint":false},{"foldername":"assets","fingerprint":285712473,"invalidFingerprint":false},{"foldername":"data","fingerprint":2804807126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":783925261,"invalidFingerprint":false},{"foldername":"parcool.mixins.json","fingerprint":3592437439,"invalidFingerprint":false},{"foldername":"parcool_logo.png","fingerprint":1876280143,"invalidFingerprint":false},{"foldername":"shouldersurfing_plugin.json","fingerprint":4164995369,"invalidFingerprint":false}],"packageFingerprint":2202278659,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":482378,"fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","hashes":[{"type":1,"value":"d0ce92c2583875977919de722923abf18985c738"},{"type":2,"value":"9aa5c8ac0f634b9aaabb265074a0555c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"02c3ecdb-093e-4647-88b7-02a6120e58a4","modSource":0,"addonID":790626,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ModernFix","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","authors":[{"id":101435003,"name":"embeddedt"}],"primaryAuthor":"embeddedt","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/modernfix","issuesURL":"https://github.com/embeddedt/ModernFix/issues","wikiURL":"https://github.com/embeddedt/ModernFix/wiki/Summary-of-Patches","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/881/436/256/256/638311693460984164.png","tags":[],"installedFile":{"id":8050208,"fileName":"modernfix-neoforge-5.27.6+mc1.21.1.jar","fileDate":"2026-05-06T22:30:59.67Z","fileLength":569173,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8050/208/modernfix-neoforge-5.27.6%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3179721186,"invalidFingerprint":false},{"foldername":"org","fingerprint":3543964576,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1177231304,"invalidFingerprint":false},{"foldername":"modernfix-modernfix.mixins.json","fingerprint":2801392757,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":88923539,"invalidFingerprint":false},{"foldername":"assets","fingerprint":309540392,"invalidFingerprint":false},{"foldername":"modernfix","fingerprint":1325599026,"invalidFingerprint":false}],"packageFingerprint":858463320,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":790626,"fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","hashes":[{"type":1,"value":"19a1b616ba58b8cca06e82799a152073f76fbeb1"},{"type":2,"value":"28addfc45bfafe4417ee180d16626ac6"}]},"dateInstalled":"2026-05-07T21:58:38.7881245Z","dateUpdated":"2026-05-07T22:26:00.7214141Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\modernfix-neoforge-5.27.6+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8050208,"fileName":"modernfix-neoforge-5.27.6+mc1.21.1.jar","fileDate":"2026-05-06T22:30:59.67Z","fileLength":569173,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8050/208/modernfix-neoforge-5.27.6%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3179721186,"invalidFingerprint":false},{"foldername":"org","fingerprint":3543964576,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1177231304,"invalidFingerprint":false},{"foldername":"modernfix-modernfix.mixins.json","fingerprint":2801392757,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":88923539,"invalidFingerprint":false},{"foldername":"assets","fingerprint":309540392,"invalidFingerprint":false},{"foldername":"modernfix","fingerprint":1325599026,"invalidFingerprint":false}],"packageFingerprint":858463320,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":790626,"fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","hashes":[{"type":1,"value":"19a1b616ba58b8cca06e82799a152073f76fbeb1"},{"type":2,"value":"28addfc45bfafe4417ee180d16626ac6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c5db9be1-6adc-438e-9a5f-6738c24038ef","modSource":0,"addonID":328085,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[4558,424,412,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"create-1.21.1-6.0.10.jar","authors":[{"id":24065031,"name":"simibubi"},{"id":102652063,"name":"IThundxr"}],"primaryAuthor":"simibubi","primaryCategoryId":412,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create","issuesURL":"https://github.com/Creators-of-Create/Create/issues","wikiURL":"https://wiki.createmod.net","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1065/184/256/256/638598725500886388.png","tags":[],"installedFile":{"id":7963363,"fileName":"create-1.21.1-6.0.10.jar","fileDate":"2026-04-21T22:20:00.503Z","fileLength":19123767,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7963/363/create-1.21.1-6.0.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1769742327,"invalidFingerprint":false},{"foldername":"com","fingerprint":527141810,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3603264155,"invalidFingerprint":false},{"foldername":"create.mixins.json","fingerprint":3543733126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3668285381,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1060038228,"invalidFingerprint":false},{"foldername":"data","fingerprint":616283090,"invalidFingerprint":false},{"foldername":"LICENSE.md_create-1.21.1","fingerprint":590043221,"invalidFingerprint":false}],"packageFingerprint":522093599,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":328085,"fileNameOnDisk":"create-1.21.1-6.0.10.jar","hashes":[{"type":1,"value":"0e97e49837bed766e6f28a4c95b04885d6acc353"},{"type":2,"value":"179189c52b45a469e683570be4e77188"}]},"dateInstalled":"2026-05-07T22:46:20.5492325Z","dateUpdated":"2026-05-07T22:46:20.582978Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\create-1.21.1-6.0.10.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7963363,"fileName":"create-1.21.1-6.0.10.jar","fileDate":"2026-04-21T22:20:00.503Z","fileLength":19123767,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7963/363/create-1.21.1-6.0.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1769742327,"invalidFingerprint":false},{"foldername":"com","fingerprint":527141810,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3603264155,"invalidFingerprint":false},{"foldername":"create.mixins.json","fingerprint":3543733126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3668285381,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1060038228,"invalidFingerprint":false},{"foldername":"data","fingerprint":616283090,"invalidFingerprint":false},{"foldername":"LICENSE.md_create-1.21.1","fingerprint":590043221,"invalidFingerprint":false}],"packageFingerprint":522093599,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":328085,"fileNameOnDisk":"create-1.21.1-6.0.10.jar","hashes":[{"type":1,"value":"0e97e49837bed766e6f28a4c95b04885d6acc353"},{"type":2,"value":"179189c52b45a469e683570be4e77188"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"a8d7b6a7-94db-4737-b9ca-ef1db01f45e6","modSource":0,"addonID":429235,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"FerriteCore ((Neo)Forge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","authors":[{"id":23615989,"name":"malte0811"}],"primaryAuthor":"malte0811","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ferritecore","issuesURL":"https://github.com/malte0811/FerriteCore/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/323/941/256/256/637438748346113688.jpeg","tags":[],"installedFile":{"id":7524151,"fileName":"ferritecore-7.0.3-neoforge.jar","fileDate":"2026-01-25T12:59:44.447Z","fileLength":121559,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7524/151/ferritecore-7.0.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1204600136,"invalidFingerprint":false},{"foldername":"malte0811","fingerprint":4255052164,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2809587253,"invalidFingerprint":false},{"foldername":"roadrunner.overrides.properties","fingerprint":36475463,"invalidFingerprint":false},{"foldername":"ferritecore.accessors.mixin.json","fingerprint":2714315218,"invalidFingerprint":false},{"foldername":"ferritecore.blockstatecache.mixin.json","fingerprint":2488671011,"invalidFingerprint":false},{"foldername":"ferritecore.dedupbakedquad.mixin.json","fingerprint":3518028653,"invalidFingerprint":false},{"foldername":"ferritecore.dedupmultipart.mixin.json","fingerprint":4121395093,"invalidFingerprint":false},{"foldername":"ferritecore.fastmap.mixin.json","fingerprint":3382642885,"invalidFingerprint":false},{"foldername":"ferritecore.modelsides.mixin.json","fingerprint":743302889,"invalidFingerprint":false},{"foldername":"ferritecore.mrl.mixin.json","fingerprint":3015213942,"invalidFingerprint":false},{"foldername":"ferritecore.predicates.mixin.json","fingerprint":2749260350,"invalidFingerprint":false},{"foldername":"ferritecore.threaddetec.mixin.json","fingerprint":3143872293,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":3369927219,"invalidFingerprint":false},{"foldername":"ferritecore.datacomponents.mixin.json","fingerprint":4281609817,"invalidFingerprint":false}],"packageFingerprint":2808038058,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":429235,"fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","hashes":[{"type":1,"value":"9563692efb708b6b568df27a01ec52f6311928ef"},{"type":2,"value":"e0374dac41d6c641903f9e241911e1d3"}]},"dateInstalled":"2026-05-07T21:57:57.8686312Z","dateUpdated":"2026-05-07T21:57:57.8697576Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ferritecore-7.0.3-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7524151,"fileName":"ferritecore-7.0.3-neoforge.jar","fileDate":"2026-01-25T12:59:44.447Z","fileLength":121559,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7524/151/ferritecore-7.0.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1204600136,"invalidFingerprint":false},{"foldername":"malte0811","fingerprint":4255052164,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2809587253,"invalidFingerprint":false},{"foldername":"roadrunner.overrides.properties","fingerprint":36475463,"invalidFingerprint":false},{"foldername":"ferritecore.accessors.mixin.json","fingerprint":2714315218,"invalidFingerprint":false},{"foldername":"ferritecore.blockstatecache.mixin.json","fingerprint":2488671011,"invalidFingerprint":false},{"foldername":"ferritecore.dedupbakedquad.mixin.json","fingerprint":3518028653,"invalidFingerprint":false},{"foldername":"ferritecore.dedupmultipart.mixin.json","fingerprint":4121395093,"invalidFingerprint":false},{"foldername":"ferritecore.fastmap.mixin.json","fingerprint":3382642885,"invalidFingerprint":false},{"foldername":"ferritecore.modelsides.mixin.json","fingerprint":743302889,"invalidFingerprint":false},{"foldername":"ferritecore.mrl.mixin.json","fingerprint":3015213942,"invalidFingerprint":false},{"foldername":"ferritecore.predicates.mixin.json","fingerprint":2749260350,"invalidFingerprint":false},{"foldername":"ferritecore.threaddetec.mixin.json","fingerprint":3143872293,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":3369927219,"invalidFingerprint":false},{"foldername":"ferritecore.datacomponents.mixin.json","fingerprint":4281609817,"invalidFingerprint":false}],"packageFingerprint":2808038058,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":429235,"fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","hashes":[{"type":1,"value":"9563692efb708b6b568df27a01ec52f6311928ef"},{"type":2,"value":"e0374dac41d6c641903f9e241911e1d3"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"da2235f0-db88-4058-bdf1-f13960cf33b0","modSource":0,"addonID":831663,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Chunk Sending[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"chunksending-1.21-2.9.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/chunk-sending-forge-fabric","issuesURL":"https://github.com/someaddons/chunksending/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/782/744/256/256/638130016628532924.png","tags":[],"installedFile":{"id":7926632,"fileName":"chunksending-1.21-2.9.jar","fileDate":"2026-04-14T17:22:23.45Z","fileLength":12100,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7926/632/chunksending-1.21-2.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307555864,"invalidFingerprint":false},{"foldername":"com","fingerprint":1842501639,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"chunksending.mixins.json","fingerprint":261029384,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":3840699650,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":831663,"fileNameOnDisk":"chunksending-1.21-2.9.jar","hashes":[{"type":1,"value":"636a121a3252028bb0ec14a3f39f9bbf723ddacd"},{"type":2,"value":"b11e59b474f20e203cfdfb7324905527"}]},"dateInstalled":"2026-05-07T21:58:16.5617695Z","dateUpdated":"2026-05-07T21:58:16.5627806Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\chunksending-1.21-2.9.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7926632,"fileName":"chunksending-1.21-2.9.jar","fileDate":"2026-04-14T17:22:23.45Z","fileLength":12100,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7926/632/chunksending-1.21-2.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307555864,"invalidFingerprint":false},{"foldername":"com","fingerprint":1842501639,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"chunksending.mixins.json","fingerprint":261029384,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":3840699650,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":831663,"fileNameOnDisk":"chunksending-1.21-2.9.jar","hashes":[{"type":1,"value":"636a121a3252028bb0ec14a3f39f9bbf723ddacd"},{"type":2,"value":"b11e59b474f20e203cfdfb7324905527"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"56e79533-c630-4e63-bb78-0dbe8db675ec","modSource":0,"addonID":456640,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Limited Chunkloading - Chunk cleanup[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"limitedchunks-1.21-4.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/limited-chunkloading","issuesURL":"https://github.com/someaddons/limitedchunks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/534/813/256/256/637856980833634930.png","tags":[],"installedFile":{"id":5571339,"fileName":"limitedchunks-1.21-4.1.jar","fileDate":"2024-07-27T15:43:36.25Z","fileLength":16692,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5571/339/limitedchunks-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2322812058,"invalidFingerprint":false},{"foldername":"com","fingerprint":1966960042,"invalidFingerprint":false},{"foldername":"limitedchunks.mixins.json","fingerprint":2588506866,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3600105266,"invalidFingerprint":false}],"packageFingerprint":2522201719,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":456640,"fileNameOnDisk":"limitedchunks-1.21-4.1.jar","hashes":[{"type":1,"value":"ef1ce5f6ac3d3a23cc4349c8a1a912032120955e"},{"type":2,"value":"ab430864559bd8b7a3c7ccf8e024ef19"}]},"dateInstalled":"2026-05-07T21:58:40.0901741Z","dateUpdated":"2026-05-07T21:58:40.0911745Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\limitedchunks-1.21-4.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5571339,"fileName":"limitedchunks-1.21-4.1.jar","fileDate":"2024-07-27T15:43:36.25Z","fileLength":16692,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5571/339/limitedchunks-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2322812058,"invalidFingerprint":false},{"foldername":"com","fingerprint":1966960042,"invalidFingerprint":false},{"foldername":"limitedchunks.mixins.json","fingerprint":2588506866,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3600105266,"invalidFingerprint":false}],"packageFingerprint":2522201719,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":456640,"fileNameOnDisk":"limitedchunks-1.21-4.1.jar","hashes":[{"type":1,"value":"ef1ce5f6ac3d3a23cc4349c8a1a912032120955e"},{"type":2,"value":"ab430864559bd8b7a3c7ccf8e024ef19"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9a7c8510-688a-43b3-8c51-ae2e65e69544","modSource":0,"addonID":228525,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,435,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Bookshelf","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/bookshelf","issuesURL":"https://github.com/Darkhax-Minecraft/Bookshelf/issues","wikiURL":"https://docs.darkhax.net/mods/bookshelf?curseforge","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/981/432/256/256/638488256947873195.png","tags":[],"installedFile":{"id":7606240,"fileName":"bookshelf-neoforge-1.21.1-21.1.81.jar","fileDate":"2026-02-10T22:44:17.77Z","fileLength":328813,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7606/240/bookshelf-neoforge-1.21.1-21.1.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4108323996,"invalidFingerprint":false},{"foldername":"net","fingerprint":4180489765,"invalidFingerprint":false},{"foldername":"data","fingerprint":2815322003,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2811260136,"invalidFingerprint":false},{"foldername":"assets","fingerprint":218376142,"invalidFingerprint":false},{"foldername":"bookshelf.neoforge.mixins.json","fingerprint":776113314,"invalidFingerprint":false},{"foldername":"bookshelf.mixins.json","fingerprint":2101221140,"invalidFingerprint":false},{"foldername":"logo_bookshelf.png","fingerprint":619424013,"invalidFingerprint":false},{"foldername":"license_bookshelf.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":2267427357,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":228525,"fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","hashes":[{"type":1,"value":"efc4cda6da4dd879f24d057ed0a6413764c9ba40"},{"type":2,"value":"9f627fe031221159d74a491e279f773a"}]},"dateInstalled":"2026-05-07T22:46:27.8020311Z","dateUpdated":"2026-05-07T22:46:27.8035554Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\bookshelf-neoforge-1.21.1-21.1.81.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7606240,"fileName":"bookshelf-neoforge-1.21.1-21.1.81.jar","fileDate":"2026-02-10T22:44:17.77Z","fileLength":328813,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7606/240/bookshelf-neoforge-1.21.1-21.1.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4108323996,"invalidFingerprint":false},{"foldername":"net","fingerprint":4180489765,"invalidFingerprint":false},{"foldername":"data","fingerprint":2815322003,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2811260136,"invalidFingerprint":false},{"foldername":"assets","fingerprint":218376142,"invalidFingerprint":false},{"foldername":"bookshelf.neoforge.mixins.json","fingerprint":776113314,"invalidFingerprint":false},{"foldername":"bookshelf.mixins.json","fingerprint":2101221140,"invalidFingerprint":false},{"foldername":"logo_bookshelf.png","fingerprint":619424013,"invalidFingerprint":false},{"foldername":"license_bookshelf.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":2267427357,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":228525,"fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","hashes":[{"type":1,"value":"efc4cda6da4dd879f24d057ed0a6413764c9ba40"},{"type":2,"value":"9f627fe031221159d74a491e279f773a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8f0f831f-68a9-4263-a8ac-5ff31ce76144","modSource":0,"addonID":232131,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Default Options","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/default-options","issuesURL":"https://github.com/TwelveIterations/DefaultOptions/issues","wikiURL":"https://mods.twelveiterations.com/mc/default-options","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/25/393/256/256/635772772655629740.png","tags":[],"installedFile":{"id":7966181,"fileName":"defaultoptions-neoforge-1.21.1-21.1.6.jar","fileDate":"2026-04-22T10:28:50.553Z","fileLength":95747,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/181/defaultoptions-neoforge-1.21.1-21.1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2802724160,"invalidFingerprint":false},{"foldername":"net","fingerprint":583308028,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2947213061,"invalidFingerprint":false},{"foldername":"defaultoptions.png","fingerprint":3122342766,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1619557492,"invalidFingerprint":false},{"foldername":"defaultoptions.neoforge.mixins.json","fingerprint":1470398,"invalidFingerprint":false},{"foldername":"defaultoptions.mixins.json","fingerprint":1327365475,"invalidFingerprint":false},{"foldername":"LICENSE_Default Options","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1707003605,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":232131,"fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","hashes":[{"type":1,"value":"92c8695dff4b5143919c4e80e4940c6afe873750"},{"type":2,"value":"147d76b0a1953805898ed20a7f00de6b"}]},"dateInstalled":"2026-05-07T21:58:05.5047144Z","dateUpdated":"2026-05-07T21:58:05.5056569Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\defaultoptions-neoforge-1.21.1-21.1.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7966181,"fileName":"defaultoptions-neoforge-1.21.1-21.1.6.jar","fileDate":"2026-04-22T10:28:50.553Z","fileLength":95747,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/181/defaultoptions-neoforge-1.21.1-21.1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2802724160,"invalidFingerprint":false},{"foldername":"net","fingerprint":583308028,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2947213061,"invalidFingerprint":false},{"foldername":"defaultoptions.png","fingerprint":3122342766,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1619557492,"invalidFingerprint":false},{"foldername":"defaultoptions.neoforge.mixins.json","fingerprint":1470398,"invalidFingerprint":false},{"foldername":"defaultoptions.mixins.json","fingerprint":1327365475,"invalidFingerprint":false},{"foldername":"LICENSE_Default Options","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1707003605,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":232131,"fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","hashes":[{"type":1,"value":"92c8695dff4b5143919c4e80e4940c6afe873750"},{"type":2,"value":"147d76b0a1953805898ed20a7f00de6b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6304d020-40e0-4df5-88ef-433ba28624f8","modSource":0,"addonID":844662,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[424,5191,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"[EMF] Entity Model Features [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","authors":[{"id":102405316,"name":"Traben"}],"primaryAuthor":"Traben","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entity-model-features","issuesURL":"https://github.com/Traben-0/Entity_Model_Features/issues","wikiURL":"https://github.com/Traben-0/Entity_Model_Features/blob/master/FEATURES.md","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/983/284/256/256/638491564386011875.png","tags":[],"installedFile":{"id":7998618,"fileName":"entity_model_features_1.21-neoforge-3.2.2.jar","fileDate":"2026-04-27T05:36:40.07Z","fileLength":565641,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7998/618/entity_model_features_1.21-neoforge-3.2.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":568563,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3961204964,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3237341129,"invalidFingerprint":false},{"foldername":"entity_model_features.mixins.json","fingerprint":4207040885,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":609070734,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":690430987,"invalidFingerprint":false}],"packageFingerprint":1145850900,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":844662,"fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","hashes":[{"type":1,"value":"98d542ad10a55553d72fea135a67781f328b54aa"},{"type":2,"value":"ee06becd6534fd68c300e8bd0dd7eb8a"}]},"dateInstalled":"2026-05-07T21:58:02.1226138Z","dateUpdated":"2026-05-07T21:58:02.1236109Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entity_model_features_1.21-neoforge-3.2.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7998618,"fileName":"entity_model_features_1.21-neoforge-3.2.2.jar","fileDate":"2026-04-27T05:36:40.07Z","fileLength":565641,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7998/618/entity_model_features_1.21-neoforge-3.2.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":568563,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3961204964,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3237341129,"invalidFingerprint":false},{"foldername":"entity_model_features.mixins.json","fingerprint":4207040885,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":609070734,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":690430987,"invalidFingerprint":false}],"packageFingerprint":1145850900,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":844662,"fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","hashes":[{"type":1,"value":"98d542ad10a55553d72fea135a67781f328b54aa"},{"type":2,"value":"ee06becd6534fd68c300e8bd0dd7eb8a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"eb04bb25-7e55-4566-80b9-5403a2d1262c","modSource":0,"addonID":280510,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6821],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AttributeFix","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":6821,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/attributefix","issuesURL":"https://github.com/Darkhax-Minecraft/AttributeFix/issues","wikiURL":"https://docs.darkhax.net/mods/attributefix?curseforge","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/981/435/256/256/638488257660151687.png","tags":[],"installedFile":{"id":7115922,"fileName":"attributefix-neoforge-1.21.1-21.1.3.jar","fileDate":"2025-10-17T05:18:21.26Z","fileLength":19809,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7115/922/attributefix-neoforge-1.21.1-21.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":228525,"type":3},{"addonId":1023259,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1710305830,"invalidFingerprint":false},{"foldername":"net","fingerprint":450418585,"invalidFingerprint":false},{"foldername":"attributefix.neoforge.mixins.json","fingerprint":4089978033,"invalidFingerprint":false},{"foldername":"attributefix.mixins.json","fingerprint":3375293079,"invalidFingerprint":false},{"foldername":"logo_attributefix.png","fingerprint":2632126595,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3089608866,"invalidFingerprint":false},{"foldername":"license_attributefix.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":979895498,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":280510,"fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","hashes":[{"type":1,"value":"7aae849f6d2a6cb1368227407ea5deb552e100ba"},{"type":2,"value":"1552cea16a40215f9773e609114ccce1"}]},"dateInstalled":"2026-05-07T22:46:28.9156889Z","dateUpdated":"2026-05-07T22:46:28.9169027Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\attributefix-neoforge-1.21.1-21.1.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7115922,"fileName":"attributefix-neoforge-1.21.1-21.1.3.jar","fileDate":"2025-10-17T05:18:21.26Z","fileLength":19809,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7115/922/attributefix-neoforge-1.21.1-21.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":228525,"type":3},{"addonId":1023259,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1710305830,"invalidFingerprint":false},{"foldername":"net","fingerprint":450418585,"invalidFingerprint":false},{"foldername":"attributefix.neoforge.mixins.json","fingerprint":4089978033,"invalidFingerprint":false},{"foldername":"attributefix.mixins.json","fingerprint":3375293079,"invalidFingerprint":false},{"foldername":"logo_attributefix.png","fingerprint":2632126595,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3089608866,"invalidFingerprint":false},{"foldername":"license_attributefix.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":979895498,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":280510,"fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","hashes":[{"type":1,"value":"7aae849f6d2a6cb1368227407ea5deb552e100ba"},{"type":2,"value":"1552cea16a40215f9773e609114ccce1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"974ee029-c916-427d-ad73-615f75007fc4","modSource":0,"addonID":658587,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"playerAnimator","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","authors":[{"id":100940600,"name":"KosmX"}],"primaryAuthor":"KosmX","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/playeranimator","issuesURL":"https://github.com/KosmX/fabricPlayerAnimation/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/588/418/256/256/637958435315527412.png","tags":[],"installedFile":{"id":7389814,"fileName":"player-animation-lib-forge-2.0.4+1.21.1.jar","fileDate":"2025-12-28T21:00:20.25Z","fileLength":203149,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7389/814/player-animation-lib-forge-2.0.4%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":623373,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1733563799,"invalidFingerprint":false},{"foldername":"architectury_inject_playerAnimator_common_dfd904282b214c0dbfcb1af10059f1f2_ab57f2790826365c0c1efa35ab50c2ec0633ee9aee38ea237cb7583590064e87playeranimationlib2041211devjar","fingerprint":4157654637,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1847487716,"invalidFingerprint":false},{"foldername":"player-animation-lib-minecraft_common-refmap.json","fingerprint":3361034148,"invalidFingerprint":false},{"foldername":"playerAnimator-common.mixins.json","fingerprint":927289632,"invalidFingerprint":false}],"packageFingerprint":533269171,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":658587,"fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","hashes":[{"type":1,"value":"05be8ddcc78532b9a5520c718edc6c971cd0057c"},{"type":2,"value":"ecb81c9479605db12a77bea774b88406"}]},"dateInstalled":"2026-05-07T22:48:13.6020882Z","dateUpdated":"2026-05-07T22:48:13.6035219Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\player-animation-lib-forge-2.0.4+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7389814,"fileName":"player-animation-lib-forge-2.0.4+1.21.1.jar","fileDate":"2025-12-28T21:00:20.25Z","fileLength":203149,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7389/814/player-animation-lib-forge-2.0.4%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":623373,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1733563799,"invalidFingerprint":false},{"foldername":"architectury_inject_playerAnimator_common_dfd904282b214c0dbfcb1af10059f1f2_ab57f2790826365c0c1efa35ab50c2ec0633ee9aee38ea237cb7583590064e87playeranimationlib2041211devjar","fingerprint":4157654637,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1847487716,"invalidFingerprint":false},{"foldername":"player-animation-lib-minecraft_common-refmap.json","fingerprint":3361034148,"invalidFingerprint":false},{"foldername":"playerAnimator-common.mixins.json","fingerprint":927289632,"invalidFingerprint":false}],"packageFingerprint":533269171,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":658587,"fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","hashes":[{"type":1,"value":"05be8ddcc78532b9a5520c718edc6c971cd0057c"},{"type":2,"value":"ecb81c9479605db12a77bea774b88406"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"249a4c49-d610-41b7-8cad-fcb90bb31930","modSource":0,"addonID":888328,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,4465,5193],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Oceans","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-oceans","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1492/410/256/256/638969817566126463.webp","tags":[],"installedFile":{"id":7228353,"fileName":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:46:08.873Z","fileLength":36124896,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/353/loadingbackgrounds_oceans-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2813639746,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":893004147,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":71818460,"invalidFingerprint":false}],"packageFingerprint":3076566335,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888328,"fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"7ab5a1473b4c404b7daab58d2b42ec4daf323b86"},{"type":2,"value":"54334cce025c031454832d246097a554"}]},"dateInstalled":"2026-05-07T21:58:12.1513157Z","dateUpdated":"2026-05-07T21:58:12.1641691Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_oceans-1.21.X-3.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228353,"fileName":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:46:08.873Z","fileLength":36124896,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/353/loadingbackgrounds_oceans-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2813639746,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":893004147,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":71818460,"invalidFingerprint":false}],"packageFingerprint":3076566335,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888328,"fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"7ab5a1473b4c404b7daab58d2b42ec4daf323b86"},{"type":2,"value":"54334cce025c031454832d246097a554"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"77db3d2c-9ffc-433a-86d5-93414c5a449f","modSource":0,"addonID":907856,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,435,412,4843],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Recipe Essentials[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"recipeessentials-1.21-4.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/recipe-essentials-forge-fabric","issuesURL":"https://github.com/someaddons/recipeessentials/issues/new/choose","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/871/402/256/256/638289037640254884.png","tags":[],"installedFile":{"id":6165711,"fileName":"recipeessentials-1.21-4.0.jar","fileDate":"2025-02-06T22:39:59.3Z","fileLength":43950,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6165/711/recipeessentials-1.21-4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1511403144,"invalidFingerprint":false},{"foldername":"com","fingerprint":792041555,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1722552194,"invalidFingerprint":false},{"foldername":"recipeessentials.mixins.json","fingerprint":2013170440,"invalidFingerprint":false}],"packageFingerprint":4175989887,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":907856,"fileNameOnDisk":"recipeessentials-1.21-4.0.jar","hashes":[{"type":1,"value":"a1ea98e7ea194807201cc8618ac9e74da65716e5"},{"type":2,"value":"c6d1e7fb82f49e0d1a423d6bf41ad1fb"}]},"dateInstalled":"2026-05-07T21:57:59.7415826Z","dateUpdated":"2026-05-07T21:57:59.7424834Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\recipeessentials-1.21-4.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6165711,"fileName":"recipeessentials-1.21-4.0.jar","fileDate":"2025-02-06T22:39:59.3Z","fileLength":43950,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6165/711/recipeessentials-1.21-4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1511403144,"invalidFingerprint":false},{"foldername":"com","fingerprint":792041555,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1722552194,"invalidFingerprint":false},{"foldername":"recipeessentials.mixins.json","fingerprint":2013170440,"invalidFingerprint":false}],"packageFingerprint":4175989887,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":907856,"fileNameOnDisk":"recipeessentials-1.21-4.0.jar","hashes":[{"type":1,"value":"a1ea98e7ea194807201cc8618ac9e74da65716e5"},{"type":2,"value":"c6d1e7fb82f49e0d1a423d6bf41ad1fb"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"427ed4a1-d9f6-4223-bd8a-c49067c0b33e","modSource":0,"addonID":335493,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic FPS","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","authors":[{"id":6835575,"name":"juliand665"},{"id":102765053,"name":"LostLuma"}],"primaryAuthor":"juliand665","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dynamic-fps","issuesURL":"https://github.com/juliand665/Dynamic-FPS/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/218/967/256/256/637013973797981040.png","tags":[],"installedFile":{"id":7546938,"fileName":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","fileDate":"2026-01-29T18:23:46.537Z","fileLength":220193,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7546/938/dynamic-fps-3.11.4%2bminecraft-1.21.0-neoforge.jar","isAlternate":false,"alternateFileId":7546939,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2719458992,"invalidFingerprint":false},{"foldername":"architectury_inject_dynamicfps_common_96ad272d90fa4fcc8d67753a3449cf6d_48138490a95625983251b45ac7336d8a7e463234a1fad5dfdc4c144b1c5f439adynamicfps3114devjar","fingerprint":3518390575,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1233643626,"invalidFingerprint":false},{"foldername":"dynamic_fps-common.mixins.json","fingerprint":3529504325,"invalidFingerprint":false},{"foldername":"dynamic_fps.mixins.json","fingerprint":2139721154,"invalidFingerprint":false},{"foldername":"dynamic_fps.png","fingerprint":2545990837,"invalidFingerprint":false},{"foldername":"dynamic_fps","fingerprint":1181247587,"invalidFingerprint":false},{"foldername":"net","fingerprint":3056343028,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2415388098,"invalidFingerprint":false}],"packageFingerprint":250368856,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":335493,"fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","hashes":[{"type":1,"value":"35b17e95b2b65930116ccc83e0cc358ac1bfcf9e"},{"type":2,"value":"e5ef3e5d37eedad79cf44897229fd8f2"}]},"dateInstalled":"2026-05-07T21:58:41.3324906Z","dateUpdated":"2026-05-07T21:58:41.3335726Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7546938,"fileName":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","fileDate":"2026-01-29T18:23:46.537Z","fileLength":220193,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7546/938/dynamic-fps-3.11.4%2bminecraft-1.21.0-neoforge.jar","isAlternate":false,"alternateFileId":7546939,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2719458992,"invalidFingerprint":false},{"foldername":"architectury_inject_dynamicfps_common_96ad272d90fa4fcc8d67753a3449cf6d_48138490a95625983251b45ac7336d8a7e463234a1fad5dfdc4c144b1c5f439adynamicfps3114devjar","fingerprint":3518390575,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1233643626,"invalidFingerprint":false},{"foldername":"dynamic_fps-common.mixins.json","fingerprint":3529504325,"invalidFingerprint":false},{"foldername":"dynamic_fps.mixins.json","fingerprint":2139721154,"invalidFingerprint":false},{"foldername":"dynamic_fps.png","fingerprint":2545990837,"invalidFingerprint":false},{"foldername":"dynamic_fps","fingerprint":1181247587,"invalidFingerprint":false},{"foldername":"net","fingerprint":3056343028,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2415388098,"invalidFingerprint":false}],"packageFingerprint":250368856,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":335493,"fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","hashes":[{"type":1,"value":"35b17e95b2b65930116ccc83e0cc358ac1bfcf9e"},{"type":2,"value":"e5ef3e5d37eedad79cf44897229fd8f2"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"66c9e7ea-7112-4e9b-8661-7a6ea0fd3f12","modSource":0,"addonID":394468,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","authors":[{"id":28746583,"name":"JellySquid"}],"primaryAuthor":"JellySquid","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sodium","issuesURL":"https://github.com/CaffeineMC/sodium-fabric/issues","wikiURL":"https://github.com/CaffeineMC/sodium-fabric/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/284/773/256/256/637298471098686391.png","tags":[],"installedFile":{"id":6382651,"fileName":"sodium-neoforge-0.6.13+mc1.21.1.jar","fileDate":"2025-04-04T00:13:49.467Z","fileLength":1162994,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6382/651/sodium-neoforge-0.6.13%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1108577269,"invalidFingerprint":false},{"foldername":"net","fingerprint":3272062076,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3953782083,"invalidFingerprint":false},{"foldername":"sodium-icon.png","fingerprint":3041543243,"invalidFingerprint":false},{"foldername":"programmer_art","fingerprint":1942856804,"invalidFingerprint":false},{"foldername":"sodium-neoforge.mixins.json","fingerprint":2418719239,"invalidFingerprint":false},{"foldername":"sodium-common.mixins.json","fingerprint":3242769697,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":2033162507,"invalidFingerprint":false}],"packageFingerprint":1900921493,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":394468,"fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","hashes":[{"type":1,"value":"38af70fa4dc4b2aaac636e92fdba3bedd5a025e1"},{"type":2,"value":"e5018c782d851fea76be0205b7616e5d"}]},"dateInstalled":"2026-05-07T21:58:34.7473423Z","dateUpdated":"2026-05-07T21:58:34.748929Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodium-neoforge-0.6.13+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6382651,"fileName":"sodium-neoforge-0.6.13+mc1.21.1.jar","fileDate":"2025-04-04T00:13:49.467Z","fileLength":1162994,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6382/651/sodium-neoforge-0.6.13%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1108577269,"invalidFingerprint":false},{"foldername":"net","fingerprint":3272062076,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3953782083,"invalidFingerprint":false},{"foldername":"sodium-icon.png","fingerprint":3041543243,"invalidFingerprint":false},{"foldername":"programmer_art","fingerprint":1942856804,"invalidFingerprint":false},{"foldername":"sodium-neoforge.mixins.json","fingerprint":2418719239,"invalidFingerprint":false},{"foldername":"sodium-common.mixins.json","fingerprint":3242769697,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":2033162507,"invalidFingerprint":false}],"packageFingerprint":1900921493,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":394468,"fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","hashes":[{"type":1,"value":"38af70fa4dc4b2aaac636e92fdba3bedd5a025e1"},{"type":2,"value":"e5018c782d851fea76be0205b7616e5d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7b9b49f1-02fa-45ef-ade5-537ae3814d5d","modSource":0,"addonID":348831,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[413,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Double Doors","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","authors":[{"id":7049004,"name":"Serilum"}],"primaryAuthor":"Serilum","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/double-doors","issuesURL":"https://github.com/Serilum/.issue-tracker/labels/Mod: Double Doors","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/233/519/256/256/637072440646369425.png","tags":[],"installedFile":{"id":7143842,"fileName":"doubledoors-1.21.1-7.2.jar","fileDate":"2025-10-24T10:34:04.757Z","fileLength":75041,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7143/842/doubledoors-1.21.1-7.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":342584,"type":3}],"isAvailable":true,"modules":[{"foldername":"doubledoors_fabric.mixins.json","fingerprint":3142535720,"invalidFingerprint":false},{"foldername":"doubledoors_fabric.refmap.json","fingerprint":3435314418,"invalidFingerprint":false},{"foldername":"doubledoors_forge.mixins.json","fingerprint":2350230178,"invalidFingerprint":false},{"foldername":"doubledoors_neoforge.mixins.json","fingerprint":302935574,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3546439557,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4037493495,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1629641011,"invalidFingerprint":false},{"foldername":"com","fingerprint":3784598438,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3088361447,"invalidFingerprint":false}],"packageFingerprint":1435909008,"gameVersion":["1.21","Fabric","NeoForge","Forge","1.21.1","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348831,"fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","hashes":[{"type":1,"value":"73ddb685749a0ae9223e9b827af5fd3e19ac732c"},{"type":2,"value":"bc5d5a4d5edfed10d09f149e173ec600"}]},"dateInstalled":"2026-05-07T22:37:23.3518187Z","dateUpdated":"2026-05-07T22:37:23.3533327Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\doubledoors-1.21.1-7.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7143842,"fileName":"doubledoors-1.21.1-7.2.jar","fileDate":"2025-10-24T10:34:04.757Z","fileLength":75041,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7143/842/doubledoors-1.21.1-7.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":342584,"type":3}],"isAvailable":true,"modules":[{"foldername":"doubledoors_fabric.mixins.json","fingerprint":3142535720,"invalidFingerprint":false},{"foldername":"doubledoors_fabric.refmap.json","fingerprint":3435314418,"invalidFingerprint":false},{"foldername":"doubledoors_forge.mixins.json","fingerprint":2350230178,"invalidFingerprint":false},{"foldername":"doubledoors_neoforge.mixins.json","fingerprint":302935574,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3546439557,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4037493495,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1629641011,"invalidFingerprint":false},{"foldername":"com","fingerprint":3784598438,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3088361447,"invalidFingerprint":false}],"packageFingerprint":1435909008,"gameVersion":["1.21","Fabric","NeoForge","Forge","1.21.1","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348831,"fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","hashes":[{"type":1,"value":"73ddb685749a0ae9223e9b827af5fd3e19ac732c"},{"type":2,"value":"bc5d5a4d5edfed10d09f149e173ec600"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b7107a26-f27c-477b-9b69-ac680fcebefb","modSource":0,"addonID":256717,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Clumps","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/clumps","issuesURL":"https://github.com/jaredlll08/Clumps/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1289/817/256/256/638838549850518521_animated.gif","tags":[],"installedFile":{"id":5623731,"fileName":"Clumps-neoforge-1.21.1-19.0.0.1.jar","fileDate":"2024-08-13T07:49:09.587Z","fileLength":18382,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5623/731/Clumps-neoforge-1.21.1-19.0.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":461241897,"invalidFingerprint":false},{"foldername":"com","fingerprint":207530136,"invalidFingerprint":false},{"foldername":"clumps.mixins.json","fingerprint":2145951388,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2425768564,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1788784743,"invalidFingerprint":false}],"packageFingerprint":2871381177,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":256717,"fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","hashes":[{"type":1,"value":"fa2576297c7bd12b28aa7070e8141792bd66da4c"},{"type":2,"value":"8b42a9d7a72bde90fa061d17e2859e7b"}]},"dateInstalled":"2026-05-07T21:58:39.357285Z","dateUpdated":"2026-05-07T21:58:39.3584549Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Clumps-neoforge-1.21.1-19.0.0.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5623731,"fileName":"Clumps-neoforge-1.21.1-19.0.0.1.jar","fileDate":"2024-08-13T07:49:09.587Z","fileLength":18382,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5623/731/Clumps-neoforge-1.21.1-19.0.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":461241897,"invalidFingerprint":false},{"foldername":"com","fingerprint":207530136,"invalidFingerprint":false},{"foldername":"clumps.mixins.json","fingerprint":2145951388,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2425768564,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1788784743,"invalidFingerprint":false}],"packageFingerprint":2871381177,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":256717,"fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","hashes":[{"type":1,"value":"fa2576297c7bd12b28aa7070e8141792bd66da4c"},{"type":2,"value":"8b42a9d7a72bde90fa061d17e2859e7b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4a1e1847-3086-4917-87c0-d8bfec1dafd9","modSource":0,"addonID":868624,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,4843,424,435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AutoMessage","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":104539068,"name":"jason13official"}],"primaryAuthor":"Lupin","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/automessage","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/845/496/256/256/638243423265811286.png","tags":[],"installedFile":{"id":7018836,"fileName":"automessage-merged-1.21.1-3.0.0.jar","fileDate":"2025-09-21T12:01:17.79Z","fileLength":140337,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7018/836/automessage-merged-1.21.1-3.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2716787439,"invalidFingerprint":false},{"foldername":"automessage.png","fingerprint":4070782436,"invalidFingerprint":false},{"foldername":"common","fingerprint":923376612,"invalidFingerprint":false},{"foldername":"common-automessage.mixins.json","fingerprint":2473924825,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":3995689679,"invalidFingerprint":false},{"foldername":"fabric-automessage.accesswidener","fingerprint":596709444,"invalidFingerprint":false},{"foldername":"fabric-automessage.fabric.mixins.json","fingerprint":435450200,"invalidFingerprint":false},{"foldername":"fabric-automessage.mixins.json","fingerprint":1498465287,"invalidFingerprint":false},{"foldername":"fabric-automessage.refmap.json","fingerprint":2951851005,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":1018662615,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":838918197,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":54389153,"invalidFingerprint":false},{"foldername":"neoforge-automessage.mixins.json","fingerprint":1052403198,"invalidFingerprint":false},{"foldername":"neoforge-automessage.neoforge.mixins.json","fingerprint":787445502,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":460465719,"invalidFingerprint":false}],"packageFingerprint":786879091,"gameVersion":["1.21","Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":868624,"fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","hashes":[{"type":1,"value":"1c312eb30c8e1bd608d4ea66b1a950f780ee814a"},{"type":2,"value":"0a8755bc91f1982df1cd1e4382bc478a"}]},"dateInstalled":"2026-05-07T21:58:15.4712586Z","dateUpdated":"2026-05-07T21:58:15.4722705Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\automessage-merged-1.21.1-3.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7018836,"fileName":"automessage-merged-1.21.1-3.0.0.jar","fileDate":"2025-09-21T12:01:17.79Z","fileLength":140337,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7018/836/automessage-merged-1.21.1-3.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2716787439,"invalidFingerprint":false},{"foldername":"automessage.png","fingerprint":4070782436,"invalidFingerprint":false},{"foldername":"common","fingerprint":923376612,"invalidFingerprint":false},{"foldername":"common-automessage.mixins.json","fingerprint":2473924825,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":3995689679,"invalidFingerprint":false},{"foldername":"fabric-automessage.accesswidener","fingerprint":596709444,"invalidFingerprint":false},{"foldername":"fabric-automessage.fabric.mixins.json","fingerprint":435450200,"invalidFingerprint":false},{"foldername":"fabric-automessage.mixins.json","fingerprint":1498465287,"invalidFingerprint":false},{"foldername":"fabric-automessage.refmap.json","fingerprint":2951851005,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":1018662615,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":838918197,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":54389153,"invalidFingerprint":false},{"foldername":"neoforge-automessage.mixins.json","fingerprint":1052403198,"invalidFingerprint":false},{"foldername":"neoforge-automessage.neoforge.mixins.json","fingerprint":787445502,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":460465719,"invalidFingerprint":false}],"packageFingerprint":786879091,"gameVersion":["1.21","Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":868624,"fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","hashes":[{"type":1,"value":"1c312eb30c8e1bd608d4ea66b1a950f780ee814a"},{"type":2,"value":"0a8755bc91f1982df1cd1e4382bc478a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"efe8c331-6570-4819-8d8c-f91d81ba883f","modSource":0,"addonID":250398,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Controlling","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/controlling","issuesURL":"https://github.com/jaredlll08/Controlling/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/49/603/256/256/636079972364045115.png","tags":[],"installedFile":{"id":6368976,"fileName":"Controlling-neoforge-1.21.1-19.0.5.jar","fileDate":"2025-03-30T23:44:28.983Z","fileLength":77555,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6368/976/Controlling-neoforge-1.21.1-19.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":858542,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238902293,"invalidFingerprint":false},{"foldername":"com","fingerprint":807691357,"invalidFingerprint":false},{"foldername":"controlling.accesswidener","fingerprint":2385600630,"invalidFingerprint":false},{"foldername":"controlling.neoforge.mixins.json","fingerprint":1419589446,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3762604135,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1119875546,"invalidFingerprint":false},{"foldername":"controlling.mixins.json","fingerprint":2374489773,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1300801978,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1888588519,"invalidFingerprint":false}],"packageFingerprint":1306717928,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":250398,"fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","hashes":[{"type":1,"value":"8a34424fc1428778be2fdbfa4da67b21b70bcbfe"},{"type":2,"value":"7141c2d0bb774dc6e4481be32b685179"}]},"dateInstalled":"2026-05-07T21:58:48.4488998Z","dateUpdated":"2026-05-07T21:58:48.4502324Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Controlling-neoforge-1.21.1-19.0.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6368976,"fileName":"Controlling-neoforge-1.21.1-19.0.5.jar","fileDate":"2025-03-30T23:44:28.983Z","fileLength":77555,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6368/976/Controlling-neoforge-1.21.1-19.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":858542,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238902293,"invalidFingerprint":false},{"foldername":"com","fingerprint":807691357,"invalidFingerprint":false},{"foldername":"controlling.accesswidener","fingerprint":2385600630,"invalidFingerprint":false},{"foldername":"controlling.neoforge.mixins.json","fingerprint":1419589446,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3762604135,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1119875546,"invalidFingerprint":false},{"foldername":"controlling.mixins.json","fingerprint":2374489773,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1300801978,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1888588519,"invalidFingerprint":false}],"packageFingerprint":1306717928,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":250398,"fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","hashes":[{"type":1,"value":"8a34424fc1428778be2fdbfa4da67b21b70bcbfe"},{"type":2,"value":"7141c2d0bb774dc6e4481be32b685179"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"da34e359-6cf7-470c-831e-c410f2ff4039","modSource":0,"addonID":1154622,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Stone Zone)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","authors":[{"id":12753167,"name":"xelbayria"},{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"xelbayria","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/stone-zone","issuesURL":"https://github.com/MehVahdJukaar/StoneZone/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1140/191/256/256/638703438900456513_animated.gif","tags":[],"installedFile":{"id":7824607,"fileName":"stonezone-1.21-2.11.16-neoforge.jar","fileDate":"2026-03-27T20:25:40.373Z","fileLength":818472,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7824/607/stonezone-1.21-2.11.16-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":453925,"type":2},{"addonId":351725,"type":2},{"addonId":384991,"type":2},{"addonId":989479,"type":2},{"addonId":1119394,"type":2},{"addonId":307052,"type":2},{"addonId":558998,"type":2},{"addonId":629153,"type":2},{"addonId":312289,"type":2},{"addonId":363569,"type":2},{"addonId":628539,"type":3},{"addonId":352039,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":243121,"type":2},{"addonId":496913,"type":2},{"addonId":835687,"type":2},{"addonId":860325,"type":2},{"addonId":852663,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1687733529,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2266300976,"invalidFingerprint":false},{"foldername":"architectury_inject_stonezone_common_39181668d93348368fa034c98bfd5f5c_b745f55203e24b4b60a0374bfc1e3e4885a06008b8806e58cd754580d832e4d7stonezone12121116devjar","fingerprint":2993057744,"invalidFingerprint":false},{"foldername":"assets","fingerprint":831461950,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":616016199,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":1276693803,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1154622,"fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","hashes":[{"type":1,"value":"ac55fe6d399a7890f3542168a3b1b668214f0512"},{"type":2,"value":"ab6d5b60854543d0ccc7b5897239e67a"}]},"dateInstalled":"2026-05-07T23:01:09.3818786Z","dateUpdated":"2026-05-07T23:01:09.3840201Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\stonezone-1.21-2.11.16-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7824607,"fileName":"stonezone-1.21-2.11.16-neoforge.jar","fileDate":"2026-03-27T20:25:40.373Z","fileLength":818472,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7824/607/stonezone-1.21-2.11.16-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":453925,"type":2},{"addonId":351725,"type":2},{"addonId":384991,"type":2},{"addonId":989479,"type":2},{"addonId":1119394,"type":2},{"addonId":307052,"type":2},{"addonId":558998,"type":2},{"addonId":629153,"type":2},{"addonId":312289,"type":2},{"addonId":363569,"type":2},{"addonId":628539,"type":3},{"addonId":352039,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":243121,"type":2},{"addonId":496913,"type":2},{"addonId":835687,"type":2},{"addonId":860325,"type":2},{"addonId":852663,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1687733529,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2266300976,"invalidFingerprint":false},{"foldername":"architectury_inject_stonezone_common_39181668d93348368fa034c98bfd5f5c_b745f55203e24b4b60a0374bfc1e3e4885a06008b8806e58cd754580d832e4d7stonezone12121116devjar","fingerprint":2993057744,"invalidFingerprint":false},{"foldername":"assets","fingerprint":831461950,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":616016199,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":1276693803,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1154622,"fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","hashes":[{"type":1,"value":"ac55fe6d399a7890f3542168a3b1b668214f0512"},{"type":2,"value":"ab6d5b60854543d0ccc7b5897239e67a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c845cbb4-96fe-4544-8a57-73355a9caa1c","modSource":0,"addonID":938917,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Accessories","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","authors":[{"id":100277261,"name":"Blodhgarm"}],"primaryAuthor":"Blodhgarm","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/accessories","issuesURL":"https://github.com/wisp-forest/accessories/issues","wikiURL":"https://docs.wispforest.io/accessories/home/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/948/913/256/256/638436487112587498.png","tags":[],"installedFile":{"id":7583320,"fileName":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","fileDate":"2026-02-06T07:37:53.473Z","fileLength":1078697,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7583/320/accessories-neoforge-1.1.0-beta.53%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":532610,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339488834,"invalidFingerprint":false},{"foldername":"accessories-common-common-refmap.json","fingerprint":3038073267,"invalidFingerprint":false},{"foldername":"accessories-common.mixins.json","fingerprint":449082642,"invalidFingerprint":false},{"foldername":"accessories-forge.mixins.json","fingerprint":436225717,"invalidFingerprint":false},{"foldername":"accessories.accesswidener","fingerprint":1192290671,"invalidFingerprint":false},{"foldername":"architectury_inject_accessories_common_7e6e125f19a1421091b1c848fd491425_7a9ea86af8844edd044e972b57ef807d7deb4fcb996c193cbc7e6e17d5b5867faccessoriescommon110beta531211devjar","fingerprint":3374659311,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2343358420,"invalidFingerprint":false},{"foldername":"data","fingerprint":4116913964,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2497594228,"invalidFingerprint":false},{"foldername":"io","fingerprint":64018920,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1114446186,"invalidFingerprint":false},{"foldername":"schemas","fingerprint":3011214421,"invalidFingerprint":false}],"packageFingerprint":2661209689,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":938917,"fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","hashes":[{"type":1,"value":"77d75c2e13cfdf56a45cdd29806c1c97c3d250fc"},{"type":2,"value":"f826cbb52d4d05e069eecda4cff65e30"}]},"dateInstalled":"2026-05-07T22:53:54.077094Z","dateUpdated":"2026-05-07T22:53:54.0788523Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\accessories-neoforge-1.1.0-beta.53+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7583320,"fileName":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","fileDate":"2026-02-06T07:37:53.473Z","fileLength":1078697,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7583/320/accessories-neoforge-1.1.0-beta.53%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":532610,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339488834,"invalidFingerprint":false},{"foldername":"accessories-common-common-refmap.json","fingerprint":3038073267,"invalidFingerprint":false},{"foldername":"accessories-common.mixins.json","fingerprint":449082642,"invalidFingerprint":false},{"foldername":"accessories-forge.mixins.json","fingerprint":436225717,"invalidFingerprint":false},{"foldername":"accessories.accesswidener","fingerprint":1192290671,"invalidFingerprint":false},{"foldername":"architectury_inject_accessories_common_7e6e125f19a1421091b1c848fd491425_7a9ea86af8844edd044e972b57ef807d7deb4fcb996c193cbc7e6e17d5b5867faccessoriescommon110beta531211devjar","fingerprint":3374659311,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2343358420,"invalidFingerprint":false},{"foldername":"data","fingerprint":4116913964,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2497594228,"invalidFingerprint":false},{"foldername":"io","fingerprint":64018920,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1114446186,"invalidFingerprint":false},{"foldername":"schemas","fingerprint":3011214421,"invalidFingerprint":false}],"packageFingerprint":2661209689,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":938917,"fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","hashes":[{"type":1,"value":"77d75c2e13cfdf56a45cdd29806c1c97c3d250fc"},{"type":2,"value":"f826cbb52d4d05e069eecda4cff65e30"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4c90fa85-9017-46f4-9af1-7ba306c7674d","modSource":0,"addonID":940057,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,406,407],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"TerraBlender (NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","authors":[{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/terrablender-neoforge","issuesURL":"https://github.com/Glitchfiend/TerraBlender/","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/907/934/256/256/638359485944942119.png","tags":[],"installedFile":{"id":6054947,"fileName":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","fileDate":"2025-01-05T04:27:14.547Z","fileLength":120364,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6054/947/TerraBlender-neoforge-1.21.1-4.1.0.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1678289793,"invalidFingerprint":false},{"foldername":"terrablender","fingerprint":509644644,"invalidFingerprint":false},{"foldername":"data","fingerprint":489731127,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3556098464,"invalidFingerprint":false},{"foldername":"terrablender_neoforge.mixins.json","fingerprint":1482893982,"invalidFingerprint":false},{"foldername":"tb_icon.png","fingerprint":479935004,"invalidFingerprint":false},{"foldername":"tb_logo.png","fingerprint":2564841619,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":313451693,"invalidFingerprint":false},{"foldername":"terrablender.mixins.json","fingerprint":1091151451,"invalidFingerprint":false},{"foldername":"terrablender.accesswidener","fingerprint":290806959,"invalidFingerprint":false}],"packageFingerprint":4290330137,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":940057,"fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","hashes":[{"type":1,"value":"2016eed89eac0eb0510d2190c3b0b80bf4346191"},{"type":2,"value":"9510cef4ca24d7f6bc3144dbf6693f7d"}]},"dateInstalled":"2026-05-07T22:47:39.9516739Z","dateUpdated":"2026-05-07T22:47:39.9532355Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\TerraBlender-neoforge-1.21.1-4.1.0.8.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6054947,"fileName":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","fileDate":"2025-01-05T04:27:14.547Z","fileLength":120364,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6054/947/TerraBlender-neoforge-1.21.1-4.1.0.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1678289793,"invalidFingerprint":false},{"foldername":"terrablender","fingerprint":509644644,"invalidFingerprint":false},{"foldername":"data","fingerprint":489731127,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3556098464,"invalidFingerprint":false},{"foldername":"terrablender_neoforge.mixins.json","fingerprint":1482893982,"invalidFingerprint":false},{"foldername":"tb_icon.png","fingerprint":479935004,"invalidFingerprint":false},{"foldername":"tb_logo.png","fingerprint":2564841619,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":313451693,"invalidFingerprint":false},{"foldername":"terrablender.mixins.json","fingerprint":1091151451,"invalidFingerprint":false},{"foldername":"terrablender.accesswidener","fingerprint":290806959,"invalidFingerprint":false}],"packageFingerprint":4290330137,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":940057,"fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","hashes":[{"type":1,"value":"2016eed89eac0eb0510d2190c3b0b80bf4346191"},{"type":2,"value":"9510cef4ca24d7f6bc3144dbf6693f7d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f8d47c89-6500-4139-a542-ffa902d8020c","modSource":0,"addonID":1104882,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"TxniLib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/txnilib","issuesURL":"https://github.com/txnimc/TxniLib/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1170/525/256/256/638741611474710951.png","tags":[],"installedFile":{"id":6533725,"fileName":"txnilib-neoforge-1.0.24-1.21.1.jar","fileDate":"2025-05-15T21:54:10.04Z","fileLength":6276522,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6533/725/txnilib-neoforge-1.0.24-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":718857338,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3525083395,"invalidFingerprint":false},{"foldername":"mixins.txnilib.json","fingerprint":464391895,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":3329088537,"invalidFingerprint":false}],"packageFingerprint":806726534,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1104882,"fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","hashes":[{"type":1,"value":"17b1bbb96e922e683a1807a2e7bece603fdc491d"},{"type":2,"value":"69cd87744e40cc444b4176022ec6d17a"}]},"dateInstalled":"2026-05-07T21:58:14.9337143Z","dateUpdated":"2026-05-07T21:58:14.9376003Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\txnilib-neoforge-1.0.24-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6533725,"fileName":"txnilib-neoforge-1.0.24-1.21.1.jar","fileDate":"2025-05-15T21:54:10.04Z","fileLength":6276522,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6533/725/txnilib-neoforge-1.0.24-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":718857338,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3525083395,"invalidFingerprint":false},{"foldername":"mixins.txnilib.json","fingerprint":464391895,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":3329088537,"invalidFingerprint":false}],"packageFingerprint":806726534,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1104882,"fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","hashes":[{"type":1,"value":"17b1bbb96e922e683a1807a2e7bece603fdc491d"},{"type":2,"value":"69cd87744e40cc444b4176022ec6d17a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"37fd489b-6f1a-436c-bf5b-a653c8369471","modSource":0,"addonID":904356,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast IP Ping","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","authors":[{"id":101275287,"name":"Fallen_Breath"}],"primaryAuthor":"Fallen_Breath","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-ip-ping","issuesURL":"https://github.com/Fallen-Breath/fast-ip-ping/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/867/209/256/256/638280200199358443.png","tags":[],"installedFile":{"id":7936390,"fileName":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","fileDate":"2026-04-16T18:16:33.347Z","fileLength":10413,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7936/390/fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4161778165,"invalidFingerprint":false},{"foldername":"LICENSE_fast-ip-ping","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"fastipping.mixins.json","fingerprint":3720741108,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2881503646,"invalidFingerprint":false},{"foldername":"me","fingerprint":3065581413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4257965354,"invalidFingerprint":false}],"packageFingerprint":1798055327,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":904356,"fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","hashes":[{"type":1,"value":"3e1a403f9298db23c163dbd85ab68210b4a8c688"},{"type":2,"value":"d94b835066ce722287652235370464bf"}]},"dateInstalled":"2026-05-07T21:58:51.2705312Z","dateUpdated":"2026-05-07T21:58:51.2715046Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7936390,"fileName":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","fileDate":"2026-04-16T18:16:33.347Z","fileLength":10413,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7936/390/fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4161778165,"invalidFingerprint":false},{"foldername":"LICENSE_fast-ip-ping","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"fastipping.mixins.json","fingerprint":3720741108,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2881503646,"invalidFingerprint":false},{"foldername":"me","fingerprint":3065581413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4257965354,"invalidFingerprint":false}],"packageFingerprint":1798055327,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":904356,"fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","hashes":[{"type":1,"value":"3e1a403f9298db23c163dbd85ab68210b4a8c688"},{"type":2,"value":"d94b835066ce722287652235370464bf"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"28911af6-0a0d-4217-acc4-bbabc316a5d0","modSource":0,"addonID":431203,"gameID":432,"categoryClassID":6552,"categorySection":{"id":288,"gameId":432,"name":"Shaders","packageType":3,"path":"shaderpacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"","gameCategoryId":6552},"categoryIds":[6553,6554],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"MakeUp - Ultra Fast | Shaders","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\shaderpacks","fileNameOnDisk":"MakeUp-UltraFast-9.4e.zip","authors":[{"id":101746556,"name":"XavierFST"}],"primaryAuthor":"XavierFST","primaryCategoryId":6554,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/shaders/makeup-ultra-fast-shader","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1044/516/256/256/638572074817465930.webp","tags":[],"installedFile":{"id":7980983,"fileName":"MakeUp-UltraFast-9.4e.zip","fileDate":"2026-04-25T06:04:36.98Z","fileLength":402763,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7980/983/MakeUp-UltraFast-9.4e.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"shaders","fingerprint":1717399592,"invalidFingerprint":false},{"foldername":"Credits","fingerprint":1197809470,"invalidFingerprint":false},{"foldername":"ForDevelopers.EN.md","fingerprint":1863242517,"invalidFingerprint":false},{"foldername":"helpful.txt","fingerprint":2044483143,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"ParaDesarrolladores.ES.md","fingerprint":3396595915,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":1042804598,"invalidFingerprint":false}],"packageFingerprint":4072554301,"gameVersion":["1.16.3","1.13.1","1.17.1","1.21","1.16.1","1.18.1","1.14.3","1.15","1.16","1.13","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.14.4","1.14.1","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","OptiFine","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.15.2","1.14","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.13.2","1.15.1","1.12.2","Iris","1.16.4","1.14.2","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.13.1","gameVersionName":"1.13.1","gameVersionTypeId":55023},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.14.3","gameVersionName":"1.14.3","gameVersionTypeId":64806},{"gameVersion":"1.15","gameVersionName":"1.15","gameVersionTypeId":68722},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.13","gameVersionName":"1.13","gameVersionTypeId":55023},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.14.4","gameVersionName":"1.14.4","gameVersionTypeId":64806},{"gameVersion":"1.14.1","gameVersionName":"1.14.1","gameVersionTypeId":64806},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"OptiFine","gameVersionTypeId":76871},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.15.2","gameVersionName":"1.15.2","gameVersionTypeId":68722},{"gameVersion":"1.14","gameVersionName":"1.14","gameVersionTypeId":64806},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.13.2","gameVersionName":"1.13.2","gameVersionTypeId":55023},{"gameVersion":"1.15.1","gameVersionName":"1.15.1","gameVersionTypeId":68722},{"gameVersion":"1.12.2","gameVersionName":"1.12.2","gameVersionTypeId":628},{"gameVersion":"","gameVersionName":"Iris","gameVersionTypeId":76871},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.14.2","gameVersionName":"1.14.2","gameVersionTypeId":64806},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":431203,"fileNameOnDisk":"MakeUp-UltraFast-9.4e.zip","hashes":[{"type":1,"value":"37946af829940e921d710fcf89bd444a42ce33d0"},{"type":2,"value":"49bfaa432435bd49c70d443b64b7c6da"}]},"dateInstalled":"2026-05-07T21:58:26.9487649Z","dateUpdated":"2026-05-07T21:58:26.9528807Z","status":3,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\shaderpacks\\MakeUp-UltraFast-9.4e.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8041788,"fileName":"MakeUp-UltraFast-9.5.zip","fileDate":"2026-05-05T06:17:40.013Z","fileLength":397921,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/788/MakeUp-UltraFast-9.5.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"shaders","fingerprint":1238462176,"invalidFingerprint":false},{"foldername":"Credits","fingerprint":1197809470,"invalidFingerprint":false},{"foldername":"ForDevelopers.EN.md","fingerprint":1436727958,"invalidFingerprint":false},{"foldername":"helpful.txt","fingerprint":2044483143,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"ParaDesarrolladores.ES.md","fingerprint":4158765609,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2350326154,"invalidFingerprint":false}],"packageFingerprint":3788180019,"gameVersion":["1.16.3","1.13.1","1.17.1","1.21","1.16.1","1.18.1","1.14.3","1.15","1.16","1.13","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.14.4","1.14.1","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","OptiFine","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.15.2","1.14","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.13.2","1.15.1","1.12.2","Iris","1.16.4","1.14.2","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.13.1","gameVersionName":"1.13.1","gameVersionTypeId":55023},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.14.3","gameVersionName":"1.14.3","gameVersionTypeId":64806},{"gameVersion":"1.15","gameVersionName":"1.15","gameVersionTypeId":68722},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.13","gameVersionName":"1.13","gameVersionTypeId":55023},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.14.4","gameVersionName":"1.14.4","gameVersionTypeId":64806},{"gameVersion":"1.14.1","gameVersionName":"1.14.1","gameVersionTypeId":64806},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"OptiFine","gameVersionTypeId":76871},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.15.2","gameVersionName":"1.15.2","gameVersionTypeId":68722},{"gameVersion":"1.14","gameVersionName":"1.14","gameVersionTypeId":64806},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.13.2","gameVersionName":"1.13.2","gameVersionTypeId":55023},{"gameVersion":"1.15.1","gameVersionName":"1.15.1","gameVersionTypeId":68722},{"gameVersion":"1.12.2","gameVersionName":"1.12.2","gameVersionTypeId":628},{"gameVersion":"","gameVersionName":"Iris","gameVersionTypeId":76871},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.14.2","gameVersionName":"1.14.2","gameVersionTypeId":64806},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":431203,"fileNameOnDisk":"MakeUp-UltraFast-9.5.zip","hashes":[{"type":1,"value":"fb2400acf7260393193e7f95d6a33d55351bd949"},{"type":2,"value":"b953a17db4bad70e6526ecab31d1ebf0"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e8375786-921b-455a-a07a-162f813fe606","modSource":0,"addonID":1216624,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[415,421,6484,412,413],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create: Dragons Plus","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","authors":[{"id":103651564,"name":"DragonsPlus"},{"id":102642294,"name":"RaymondBlaze"}],"primaryAuthor":"DragonsPlus","primaryCategoryId":6484,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create-dragons-plus","issuesURL":"https://github.com/DragonsPlusMinecraft/CreateDragonsPlus/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1195/420/256/256/638771027943462603.png","tags":[],"installedFile":{"id":7970093,"fileName":"CreateDragonsPlus-1.10.0b.jar","fileDate":"2026-04-23T02:10:36.103Z","fileLength":756460,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/93/CreateDragonsPlus-1.10.0b.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":285889198,"invalidFingerprint":false},{"foldername":"plus","fingerprint":2088382533,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2978998256,"invalidFingerprint":false},{"foldername":"data","fingerprint":1124534152,"invalidFingerprint":false},{"foldername":"create_dragons_plus.mixins.json","fingerprint":3053512535,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":350386812,"invalidFingerprint":false},{"foldername":"LICENSING.txt","fingerprint":748253416,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false},{"foldername":"LICENSE-CREATE.txt","fingerprint":1927476733,"invalidFingerprint":false},{"foldername":"create_dragons_plus.simulated.mixins.json","fingerprint":3711695609,"invalidFingerprint":false}],"packageFingerprint":2901045699,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1216624,"fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","hashes":[{"type":1,"value":"e50ae4f50173b12232b8dbd6b85568b4b657c0cf"},{"type":2,"value":"0417f6dc9cf5f4d5fdadc334df8ef289"}]},"dateInstalled":"2026-05-07T22:48:47.2716613Z","dateUpdated":"2026-05-07T22:48:47.2731111Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\CreateDragonsPlus-1.10.0b.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7970093,"fileName":"CreateDragonsPlus-1.10.0b.jar","fileDate":"2026-04-23T02:10:36.103Z","fileLength":756460,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/93/CreateDragonsPlus-1.10.0b.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":285889198,"invalidFingerprint":false},{"foldername":"plus","fingerprint":2088382533,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2978998256,"invalidFingerprint":false},{"foldername":"data","fingerprint":1124534152,"invalidFingerprint":false},{"foldername":"create_dragons_plus.mixins.json","fingerprint":3053512535,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":350386812,"invalidFingerprint":false},{"foldername":"LICENSING.txt","fingerprint":748253416,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false},{"foldername":"LICENSE-CREATE.txt","fingerprint":1927476733,"invalidFingerprint":false},{"foldername":"create_dragons_plus.simulated.mixins.json","fingerprint":3711695609,"invalidFingerprint":false}],"packageFingerprint":2901045699,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1216624,"fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","hashes":[{"type":1,"value":"e50ae4f50173b12232b8dbd6b85568b4b657c0cf"},{"type":2,"value":"0417f6dc9cf5f4d5fdadc334df8ef289"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4a3a1a13-929b-463a-8927-aa9b8eff74a2","modSource":0,"addonID":958881,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,422,5191,406,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Time On Display","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":104539068,"name":"jason13official"}],"primaryAuthor":"Lupin","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/time-on-display","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1043/640/256/256/638570980199473653.webp","tags":[],"installedFile":{"id":5609781,"fileName":"time_on_display-merged-1.21-2.0.0.jar","fileDate":"2024-08-09T00:26:27.71Z","fileLength":86367,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5609/781/time_on_display-merged-1.21-2.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3399074719,"invalidFingerprint":false},{"foldername":"common","fingerprint":2867161478,"invalidFingerprint":false},{"foldername":"common-time_on_display.mixins.json","fingerprint":4191055761,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":819714272,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.fabric.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.refmap.json","fingerprint":801273145,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":798270154,"invalidFingerprint":false},{"foldername":"forge","fingerprint":4078146579,"invalidFingerprint":false},{"foldername":"forge-time_on_display.forge.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"forge-time_on_display.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3493022719,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":3436262722,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.mixins.json","fingerprint":1929102713,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.neoforge.mixins.json","fingerprint":4008966462,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3583625351,"invalidFingerprint":false}],"packageFingerprint":407219464,"gameVersion":["Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":958881,"fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","hashes":[{"type":1,"value":"8d77892c5a990533366119f03be9b8cf15c7febe"},{"type":2,"value":"eeec198fb868f1568472a32342cb4a86"}]},"dateInstalled":"2026-05-07T21:58:07.2287546Z","dateUpdated":"2026-05-07T21:58:07.2299917Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\time_on_display-merged-1.21-2.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5609781,"fileName":"time_on_display-merged-1.21-2.0.0.jar","fileDate":"2024-08-09T00:26:27.71Z","fileLength":86367,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5609/781/time_on_display-merged-1.21-2.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3399074719,"invalidFingerprint":false},{"foldername":"common","fingerprint":2867161478,"invalidFingerprint":false},{"foldername":"common-time_on_display.mixins.json","fingerprint":4191055761,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":819714272,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.fabric.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.refmap.json","fingerprint":801273145,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":798270154,"invalidFingerprint":false},{"foldername":"forge","fingerprint":4078146579,"invalidFingerprint":false},{"foldername":"forge-time_on_display.forge.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"forge-time_on_display.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3493022719,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":3436262722,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.mixins.json","fingerprint":1929102713,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.neoforge.mixins.json","fingerprint":4008966462,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3583625351,"invalidFingerprint":false}],"packageFingerprint":407219464,"gameVersion":["Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":958881,"fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","hashes":[{"type":1,"value":"8d77892c5a990533366119f03be9b8cf15c7febe"},{"type":2,"value":"eeec198fb868f1568472a32342cb4a86"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f657c0cd-babf-4ef8-946d-1af7b6e46542","modSource":0,"addonID":1191845,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,6814,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Redirected","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/redirected","issuesURL":"https://github.com/txnimc/Redirected/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1169/700/256/256/638740760495846032.png","tags":[],"installedFile":{"id":6148845,"fileName":"redirected-neoforge-1.0.0-1.21.1.jar","fileDate":"2025-02-02T07:04:31.317Z","fileLength":217587,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6148/845/redirected-neoforge-1.0.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1104882,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":374013366,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3903574420,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.20.1.json","fingerprint":3497248790,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.21.1.json","fingerprint":2345491289,"invalidFingerprint":false},{"foldername":"mixins.redirected_forge_1.20.1.json","fingerprint":2820300077,"invalidFingerprint":false},{"foldername":"mixins.redirected_neoforge_1.21.1.json","fingerprint":3426188056,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":180397325,"invalidFingerprint":false}],"packageFingerprint":1977061386,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1191845,"fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","hashes":[{"type":1,"value":"2704eeefedf52edc30d68c84e2ee0ccf4eea6da0"},{"type":2,"value":"8cdabfc021f961363b24f1abe57a4fb2"}]},"dateInstalled":"2026-05-07T21:58:48.945266Z","dateUpdated":"2026-05-07T21:58:48.9465221Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\redirected-neoforge-1.0.0-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6148845,"fileName":"redirected-neoforge-1.0.0-1.21.1.jar","fileDate":"2025-02-02T07:04:31.317Z","fileLength":217587,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6148/845/redirected-neoforge-1.0.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1104882,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":374013366,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3903574420,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.20.1.json","fingerprint":3497248790,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.21.1.json","fingerprint":2345491289,"invalidFingerprint":false},{"foldername":"mixins.redirected_forge_1.20.1.json","fingerprint":2820300077,"invalidFingerprint":false},{"foldername":"mixins.redirected_neoforge_1.21.1.json","fingerprint":3426188056,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":180397325,"invalidFingerprint":false}],"packageFingerprint":1977061386,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1191845,"fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","hashes":[{"type":1,"value":"2704eeefedf52edc30d68c84e2ee0ccf4eea6da0"},{"type":2,"value":"8cdabfc021f961363b24f1abe57a4fb2"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3cfb7ab6-c5be-4d7c-a26b-85f00e98bd16","modSource":0,"addonID":944149,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,422,406,426,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"StartInv | Seconds of Immortality!","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/startinv","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/920/239/256/256/638383488361008302.png","tags":[],"installedFile":{"id":5499027,"fileName":"neo_startinv-1.0.0-1.21.jar","fileDate":"2024-07-03T17:39:19.627Z","fileLength":9275,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5499/27/neo_startinv-1.0.0-1.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1714468772,"invalidFingerprint":false},{"foldername":"com","fingerprint":1190132239,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":682857377,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3880423854,"invalidFingerprint":false},{"foldername":"mixins.startinv.json","fingerprint":228722849,"invalidFingerprint":false}],"packageFingerprint":982140947,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":944149,"fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","hashes":[{"type":1,"value":"405274c56f428c5e3c8e5e552626c011696b55ac"},{"type":2,"value":"fe345a0e0a9e25b6395e16df5d0b9fac"}]},"dateInstalled":"2026-05-07T21:58:17.1197581Z","dateUpdated":"2026-05-07T21:58:17.1208073Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\neo_startinv-1.0.0-1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5499027,"fileName":"neo_startinv-1.0.0-1.21.jar","fileDate":"2024-07-03T17:39:19.627Z","fileLength":9275,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5499/27/neo_startinv-1.0.0-1.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1714468772,"invalidFingerprint":false},{"foldername":"com","fingerprint":1190132239,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":682857377,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3880423854,"invalidFingerprint":false},{"foldername":"mixins.startinv.json","fingerprint":228722849,"invalidFingerprint":false}],"packageFingerprint":982140947,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":944149,"fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","hashes":[{"type":1,"value":"405274c56f428c5e3c8e5e552626c011696b55ac"},{"type":2,"value":"fe345a0e0a9e25b6395e16df5d0b9fac"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"27d67f5d-4382-4c34-8423-7d728bbe0011","modSource":0,"addonID":60089,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Mouse Tweaks","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","authors":[{"id":7495712,"name":"YaLTeR"}],"primaryAuthor":"YaLTeR","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks","issuesURL":"https://github.com/YaLTeR/MouseTweaks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/467/691/256/256/637749969243449870.png","tags":[],"installedFile":{"id":5637846,"fileName":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","fileDate":"2024-08-17T15:55:16.403Z","fileLength":73938,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5637/846/MouseTweaks-neoforge-mc1.21-2.26.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1247581823,"invalidFingerprint":false},{"foldername":"yalter","fingerprint":2881444305,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2140027510,"invalidFingerprint":false},{"foldername":"mousetweaks-fabric.mixins.json","fingerprint":3954768689,"invalidFingerprint":false},{"foldername":"mousetweaks.mixins.json","fingerprint":1642826513,"invalidFingerprint":false},{"foldername":"mousetweaks_logo.png","fingerprint":1781016577,"invalidFingerprint":false}],"packageFingerprint":845432825,"gameVersion":["1.21","Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60089,"fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","hashes":[{"type":1,"value":"6dae57f4f50f7808d2ed9a18f6cd1c0d4640c6bc"},{"type":2,"value":"4ab6e808a59fdebecfbc92438b85b470"}]},"dateInstalled":"2026-05-07T21:58:01.3085301Z","dateUpdated":"2026-05-07T21:58:01.309584Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\MouseTweaks-neoforge-mc1.21-2.26.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5637846,"fileName":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","fileDate":"2024-08-17T15:55:16.403Z","fileLength":73938,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5637/846/MouseTweaks-neoforge-mc1.21-2.26.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1247581823,"invalidFingerprint":false},{"foldername":"yalter","fingerprint":2881444305,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2140027510,"invalidFingerprint":false},{"foldername":"mousetweaks-fabric.mixins.json","fingerprint":3954768689,"invalidFingerprint":false},{"foldername":"mousetweaks.mixins.json","fingerprint":1642826513,"invalidFingerprint":false},{"foldername":"mousetweaks_logo.png","fingerprint":1781016577,"invalidFingerprint":false}],"packageFingerprint":845432825,"gameVersion":["1.21","Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60089,"fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","hashes":[{"type":1,"value":"6dae57f4f50f7808d2ed9a18f6cd1c0d4640c6bc"},{"type":2,"value":"4ab6e808a59fdebecfbc92438b85b470"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"5e49e31c-7ab2-4b17-97b1-25bd67b85aad","modSource":0,"addonID":1091339,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814,6821,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AllTheLeaks (Memory Leak Fix)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","authors":[{"id":107406482,"name":"Uncandango"}],"primaryAuthor":"Uncandango","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alltheleaks","issuesURL":"https://github.com/pietro-lopes/AllTheLeaks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1068/365/256/256/638602852129913496.png","tags":[],"installedFile":{"id":7955700,"fileName":"alltheleaks-1.1.8+1.21.1-neoforge.jar","fileDate":"2026-04-20T12:41:05.377Z","fileLength":536828,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7955/700/alltheleaks-1.1.8%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2795963896,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1979001933,"invalidFingerprint":false},{"foldername":"alltheleaks.mixins.json","fingerprint":1753949237,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":82175170,"invalidFingerprint":false}],"packageFingerprint":810386014,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1091339,"fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"f91b11a1cfa718b9291fbe7b80356f17a572577e"},{"type":2,"value":"f13d96d14efa73161caacc6df0aa808a"}]},"dateInstalled":"2026-05-07T21:58:38.241496Z","dateUpdated":"2026-05-07T21:58:38.242485Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alltheleaks-1.1.8+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7955700,"fileName":"alltheleaks-1.1.8+1.21.1-neoforge.jar","fileDate":"2026-04-20T12:41:05.377Z","fileLength":536828,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7955/700/alltheleaks-1.1.8%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2795963896,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1979001933,"invalidFingerprint":false},{"foldername":"alltheleaks.mixins.json","fingerprint":1753949237,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":82175170,"invalidFingerprint":false}],"packageFingerprint":810386014,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1091339,"fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"f91b11a1cfa718b9291fbe7b80356f17a572577e"},{"type":2,"value":"f13d96d14efa73161caacc6df0aa808a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"36f6598d-fc4c-4505-a443-5980f2d38159","modSource":0,"addonID":499980,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Moonlight Lib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/selene","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/402/662/256/256/637610797055895331.png","tags":[],"installedFile":{"id":8037440,"fileName":"moonlight-neoforge-1.21.1-3.0.5.jar","fileDate":"2026-05-04T11:42:02.987Z","fileLength":1573067,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8037/440/moonlight-neoforge-1.21.1-3.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3690277498,"invalidFingerprint":false},{"foldername":"net","fingerprint":2044505660,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4140233105,"invalidFingerprint":false},{"foldername":"moonlight-common.mixins.json","fingerprint":1823906894,"invalidFingerprint":false},{"foldername":"moonlight.accesswidener","fingerprint":394236303,"invalidFingerprint":false},{"foldername":"moonlight.mixins.json","fingerprint":2704494782,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2032883417,"invalidFingerprint":false},{"foldername":"data","fingerprint":534078977,"invalidFingerprint":false},{"foldername":"LICENSE_Moonlight Lib.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":816371809,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":499980,"fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","hashes":[{"type":1,"value":"c37ec1c8f2798354ff37851a5c620ca5d2564c2b"},{"type":2,"value":"5d4835b89314651bd2e3f43e8ce32e40"}]},"dateInstalled":"2026-05-07T21:58:04.8299047Z","dateUpdated":"2026-05-07T22:26:02.093541Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\moonlight-neoforge-1.21.1-3.0.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8037440,"fileName":"moonlight-neoforge-1.21.1-3.0.5.jar","fileDate":"2026-05-04T11:42:02.987Z","fileLength":1573067,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8037/440/moonlight-neoforge-1.21.1-3.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3690277498,"invalidFingerprint":false},{"foldername":"net","fingerprint":2044505660,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4140233105,"invalidFingerprint":false},{"foldername":"moonlight-common.mixins.json","fingerprint":1823906894,"invalidFingerprint":false},{"foldername":"moonlight.accesswidener","fingerprint":394236303,"invalidFingerprint":false},{"foldername":"moonlight.mixins.json","fingerprint":2704494782,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2032883417,"invalidFingerprint":false},{"foldername":"data","fingerprint":534078977,"invalidFingerprint":false},{"foldername":"LICENSE_Moonlight Lib.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":816371809,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":499980,"fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","hashes":[{"type":1,"value":"c37ec1c8f2798354ff37851a5c620ca5d2564c2b"},{"type":2,"value":"5d4835b89314651bd2e3f43e8ce32e40"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3276bc00-6a53-4444-b6ff-aef2eec69f34","modSource":0,"addonID":882495,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"fix GPU memory leak[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fix-gpu-memory-leak","issuesURL":"https://github.com/someaddons/gpumemleakfix/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/841/827/256/256/638236647684351264.png","tags":[],"installedFile":{"id":5513549,"fileName":"gpumemleakfix-1.21-1.8.jar","fileDate":"2024-07-08T12:10:50.6Z","fileLength":6574,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5513/549/gpumemleakfix-1.21-1.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1891078187,"invalidFingerprint":false},{"foldername":"com","fingerprint":1771624309,"invalidFingerprint":false},{"foldername":"gpumemleakfix.mixins.json","fingerprint":510417135,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1348339019,"invalidFingerprint":false}],"packageFingerprint":1193908577,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882495,"fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","hashes":[{"type":1,"value":"1894d2f0dd0c275aea0f1a6265ebd5715569c208"},{"type":2,"value":"96a47a7cff915294a949f73a5f2a8816"}]},"dateInstalled":"2026-05-07T21:58:49.9944301Z","dateUpdated":"2026-05-07T21:58:49.9955648Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\gpumemleakfix-1.21-1.8.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5513549,"fileName":"gpumemleakfix-1.21-1.8.jar","fileDate":"2024-07-08T12:10:50.6Z","fileLength":6574,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5513/549/gpumemleakfix-1.21-1.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1891078187,"invalidFingerprint":false},{"foldername":"com","fingerprint":1771624309,"invalidFingerprint":false},{"foldername":"gpumemleakfix.mixins.json","fingerprint":510417135,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1348339019,"invalidFingerprint":false}],"packageFingerprint":1193908577,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882495,"fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","hashes":[{"type":1,"value":"1894d2f0dd0c275aea0f1a6265ebd5715569c208"},{"type":2,"value":"96a47a7cff915294a949f73a5f2a8816"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ed74ddac-2358-4f81-a709-de19b251b1bf","modSource":0,"addonID":558905,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium/Embeddium Extras","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/magnesium-extras","issuesURL":"https://github.com/txnimc/SodiumExtras/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1066/735/256/256/638600914286319886.png","tags":[],"installedFile":{"id":6394141,"fileName":"sodiumextras-neoforge-1.0.8-1.21.1.jar","fileDate":"2025-04-07T04:44:42.343Z","fileLength":276988,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6394/141/sodiumextras-neoforge-1.0.8-1.21.1.jar","isAlternate":false,"alternateFileId":6394143,"serverPackFileId":0,"dependencies":[{"addonId":1103431,"type":3},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3948137030,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2169881499,"invalidFingerprint":false},{"foldername":"mixins.sodiumextras.json","fingerprint":2195999977,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4133244206,"invalidFingerprint":false}],"packageFingerprint":4051323827,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":558905,"fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","hashes":[{"type":1,"value":"d678f6eb28fec11f3e99bc7f17f5e385703bc44a"},{"type":2,"value":"acbf3c92a89bcd595e7c0c668fc7309f"}]},"dateInstalled":"2026-05-07T21:58:37.5221069Z","dateUpdated":"2026-05-07T21:58:37.5231695Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodiumextras-neoforge-1.0.8-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6394141,"fileName":"sodiumextras-neoforge-1.0.8-1.21.1.jar","fileDate":"2025-04-07T04:44:42.343Z","fileLength":276988,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6394/141/sodiumextras-neoforge-1.0.8-1.21.1.jar","isAlternate":false,"alternateFileId":6394143,"serverPackFileId":0,"dependencies":[{"addonId":1103431,"type":3},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3948137030,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2169881499,"invalidFingerprint":false},{"foldername":"mixins.sodiumextras.json","fingerprint":2195999977,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4133244206,"invalidFingerprint":false}],"packageFingerprint":4051323827,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":558905,"fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","hashes":[{"type":1,"value":"d678f6eb28fec11f3e99bc7f17f5e385703bc44a"},{"type":2,"value":"acbf3c92a89bcd595e7c0c668fc7309f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"df78585a-7d51-4b70-813c-7a2aa4225fbf","modSource":0,"addonID":271740,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Toast Control","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","authors":[{"id":10368195,"name":"Shadows_of_Fire"}],"primaryAuthor":"Shadows_of_Fire","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/toast-control","issuesURL":"https://github.com/Shadows-of-Fire/Toast-Control/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/105/330/256/256/636352185216944005.png","tags":[],"installedFile":{"id":6751464,"fileName":"ToastControl-1.21.1-9.0.1.jar","fileDate":"2025-07-10T07:02:27.877Z","fileLength":21079,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6751/464/ToastControl-1.21.1-9.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":283644,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":276283000,"invalidFingerprint":false},{"foldername":"dev","fingerprint":634000606,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3433595591,"invalidFingerprint":false},{"foldername":"toastcontrol.mixins.json","fingerprint":1861248534,"invalidFingerprint":false}],"packageFingerprint":3258843963,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":271740,"fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","hashes":[{"type":1,"value":"33477c2db0479c9be33d1ca3b2fa47cf6c97988c"},{"type":2,"value":"1f83b8749f48753bb50d9e22e5f6706c"}]},"dateInstalled":"2026-05-07T21:58:54.6980392Z","dateUpdated":"2026-05-07T21:58:54.6990175Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ToastControl-1.21.1-9.0.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6751464,"fileName":"ToastControl-1.21.1-9.0.1.jar","fileDate":"2025-07-10T07:02:27.877Z","fileLength":21079,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6751/464/ToastControl-1.21.1-9.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":283644,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":276283000,"invalidFingerprint":false},{"foldername":"dev","fingerprint":634000606,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3433595591,"invalidFingerprint":false},{"foldername":"toastcontrol.mixins.json","fingerprint":1861248534,"invalidFingerprint":false}],"packageFingerprint":3258843963,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":271740,"fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","hashes":[{"type":1,"value":"33477c2db0479c9be33d1ca3b2fa47cf6c97988c"},{"type":2,"value":"1f83b8749f48753bb50d9e22e5f6706c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"53e0805f-f267-4157-9344-0755b328050a","modSource":0,"addonID":361276,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,409],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lootr (Forge & NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","authors":[{"id":10343357,"name":"Noobanidus"},{"id":101435003,"name":"embeddedt"},{"id":101090122,"name":"ZestyBlaze"}],"primaryAuthor":"Noobanidus","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lootr","issuesURL":"https://github.com/noobanidus/lootr/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1131/830/256/256/638691606432990450.png","tags":[],"installedFile":{"id":8041234,"fileName":"lootr-neoforge-1.21.1-1.11.37.120.jar","fileDate":"2026-05-05T02:13:59Z","fileLength":976023,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/234/lootr-neoforge-1.21.1-1.11.37.120.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2372064542,"invalidFingerprint":false},{"foldername":"noobanidus","fingerprint":3846940814,"invalidFingerprint":false},{"foldername":"lootr-common.mixins.json","fingerprint":827376249,"invalidFingerprint":false},{"foldername":"lootr-neoforge-digsite_workshop.mixins.json","fingerprint":1536792109,"invalidFingerprint":false},{"foldername":"lootr-neoforge.mixins.json","fingerprint":3250557091,"invalidFingerprint":false},{"foldername":".cache","fingerprint":986135317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2326843005,"invalidFingerprint":false},{"foldername":"data","fingerprint":3238902936,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":109395380,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2860865587,"invalidFingerprint":false}],"packageFingerprint":2200001215,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361276,"fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","hashes":[{"type":1,"value":"a8acaf64fb3991526bfe7456189ccde247334265"},{"type":2,"value":"c854cb36df6947d1a8bc222fec365359"}]},"dateInstalled":"2026-05-07T22:46:22.2211682Z","dateUpdated":"2026-05-07T22:46:22.2234087Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootr-neoforge-1.21.1-1.11.37.120.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8041234,"fileName":"lootr-neoforge-1.21.1-1.11.37.120.jar","fileDate":"2026-05-05T02:13:59Z","fileLength":976023,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/234/lootr-neoforge-1.21.1-1.11.37.120.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2372064542,"invalidFingerprint":false},{"foldername":"noobanidus","fingerprint":3846940814,"invalidFingerprint":false},{"foldername":"lootr-common.mixins.json","fingerprint":827376249,"invalidFingerprint":false},{"foldername":"lootr-neoforge-digsite_workshop.mixins.json","fingerprint":1536792109,"invalidFingerprint":false},{"foldername":"lootr-neoforge.mixins.json","fingerprint":3250557091,"invalidFingerprint":false},{"foldername":".cache","fingerprint":986135317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2326843005,"invalidFingerprint":false},{"foldername":"data","fingerprint":3238902936,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":109395380,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2860865587,"invalidFingerprint":false}],"packageFingerprint":2200001215,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361276,"fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","hashes":[{"type":1,"value":"a8acaf64fb3991526bfe7456189ccde247334265"},{"type":2,"value":"c854cb36df6947d1a8bc222fec365359"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ccf23053-f5f0-4b6f-8f66-b3cde6446044","modSource":0,"addonID":886331,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[4465,5193,400,405],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Default Images","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-loading-images","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1496/124/256/256/638971892831575978.webp","tags":[],"installedFile":{"id":7228406,"fileName":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","fileDate":"2025-11-16T12:01:50.41Z","fileLength":50544037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/406/loadingbackgrounds_default_images-1.21.X-4.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2176806187,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2207580623,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1436098848,"invalidFingerprint":false}],"packageFingerprint":3695994406,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":886331,"fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","hashes":[{"type":1,"value":"0bacab4fba302803918bacc6e31540e461919a23"},{"type":2,"value":"a9f51da498a93f84f67abb3221704d9c"}]},"dateInstalled":"2026-05-07T21:58:33.5139953Z","dateUpdated":"2026-05-07T21:58:33.5253651Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_default_images-1.21.X-4.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228406,"fileName":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","fileDate":"2025-11-16T12:01:50.41Z","fileLength":50544037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/406/loadingbackgrounds_default_images-1.21.X-4.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2176806187,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2207580623,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1436098848,"invalidFingerprint":false}],"packageFingerprint":3695994406,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":886331,"fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","hashes":[{"type":1,"value":"0bacab4fba302803918bacc6e31540e461919a23"},{"type":2,"value":"a9f51da498a93f84f67abb3221704d9c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f8e28e63-e630-4b1b-b96a-c7a93f05e738","modSource":0,"addonID":955399,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"GlitchCore","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","authors":[{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/glitchcore","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/925/423/256/256/638393995566142829.png","tags":[],"installedFile":{"id":5660740,"fileName":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","fileDate":"2024-08-25T01:50:50.273Z","fileLength":90918,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5660/740/GlitchCore-neoforge-1.21.1-2.1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1811036338,"invalidFingerprint":false},{"foldername":"glitchcore","fingerprint":2063544425,"invalidFingerprint":false},{"foldername":"glitchcore_logo.png","fingerprint":2312769639,"invalidFingerprint":false},{"foldername":"glitchcore.mixins.json","fingerprint":2847458275,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3711728899,"invalidFingerprint":false},{"foldername":"glitchcore.neoforge.mixins.json","fingerprint":1853363929,"invalidFingerprint":false},{"foldername":"glitchcore_icon_small.png","fingerprint":2023160491,"invalidFingerprint":false},{"foldername":"glitchcore.accesswidener","fingerprint":4145101881,"invalidFingerprint":false}],"packageFingerprint":152279774,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":955399,"fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","hashes":[{"type":1,"value":"8bce11b0b5233146051bb7b7a227247e03fe88b2"},{"type":2,"value":"ec491ad844e966641c5a124913c3c1e7"}]},"dateInstalled":"2026-05-07T22:47:40.2875644Z","dateUpdated":"2026-05-07T22:47:40.2890708Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\GlitchCore-neoforge-1.21.1-2.1.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5660740,"fileName":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","fileDate":"2024-08-25T01:50:50.273Z","fileLength":90918,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5660/740/GlitchCore-neoforge-1.21.1-2.1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1811036338,"invalidFingerprint":false},{"foldername":"glitchcore","fingerprint":2063544425,"invalidFingerprint":false},{"foldername":"glitchcore_logo.png","fingerprint":2312769639,"invalidFingerprint":false},{"foldername":"glitchcore.mixins.json","fingerprint":2847458275,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3711728899,"invalidFingerprint":false},{"foldername":"glitchcore.neoforge.mixins.json","fingerprint":1853363929,"invalidFingerprint":false},{"foldername":"glitchcore_icon_small.png","fingerprint":2023160491,"invalidFingerprint":false},{"foldername":"glitchcore.accesswidener","fingerprint":4145101881,"invalidFingerprint":false}],"packageFingerprint":152279774,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":955399,"fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","hashes":[{"type":1,"value":"8bce11b0b5233146051bb7b7a227247e03fe88b2"},{"type":2,"value":"ec491ad844e966641c5a124913c3c1e7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1eb7f816-7f57-4978-8e40-a7ae124751c2","modSource":0,"addonID":60028,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[436,422,434,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Aquaculture 2","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","authors":[{"id":458081,"name":"Shadow"},{"id":8631507,"name":"Girafi"}],"primaryAuthor":"Shadow","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/aquaculture","issuesURL":"https://github.com/TeamMetallurgy/Aquaculture/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/230/320/256/256/637059909042064016.png","tags":[],"installedFile":{"id":7901588,"fileName":"Aquaculture-1.21.1-2.7.21.jar","fileDate":"2026-04-09T21:20:09.987Z","fileLength":605949,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7901/588/Aquaculture-1.21.1-2.7.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3120780631,"invalidFingerprint":false},{"foldername":"com","fingerprint":3488997465,"invalidFingerprint":false},{"foldername":"assets","fingerprint":489220449,"invalidFingerprint":false},{"foldername":"data","fingerprint":3757468306,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2564931986,"invalidFingerprint":false}],"packageFingerprint":4284657502,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60028,"fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","hashes":[{"type":1,"value":"93c2043c6a5cfbfbfba93321d044bc61d8a6547b"},{"type":2,"value":"53d4d0d0f62c555638c27206087c2476"}]},"dateInstalled":"2026-05-07T22:47:52.715588Z","dateUpdated":"2026-05-07T22:47:52.717004Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Aquaculture-1.21.1-2.7.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7901588,"fileName":"Aquaculture-1.21.1-2.7.21.jar","fileDate":"2026-04-09T21:20:09.987Z","fileLength":605949,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7901/588/Aquaculture-1.21.1-2.7.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3120780631,"invalidFingerprint":false},{"foldername":"com","fingerprint":3488997465,"invalidFingerprint":false},{"foldername":"assets","fingerprint":489220449,"invalidFingerprint":false},{"foldername":"data","fingerprint":3757468306,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2564931986,"invalidFingerprint":false}],"packageFingerprint":4284657502,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60028,"fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","hashes":[{"type":1,"value":"93c2043c6a5cfbfbfba93321d044bc61d8a6547b"},{"type":2,"value":"53d4d0d0f62c555638c27206087c2476"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"abd0256f-6980-4564-a5c0-cee97f90d712","modSource":0,"addonID":419699,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Architectury API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"architectury-13.0.8-neoforge.jar","authors":[{"id":32851078,"name":"shedaniel"},{"id":19463137,"name":"MaxNeedsSnacks"},{"id":57500433,"name":"Juicebus"}],"primaryAuthor":"shedaniel","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/architectury-api","issuesURL":"https://github.com/architectury/architectury/issues","wikiURL":"https://docs.architectury.dev/plugin:get_started","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/313/420/256/256/637408811378175814.png","tags":[],"installedFile":{"id":5786327,"fileName":"architectury-13.0.8-neoforge.jar","fileDate":"2024-10-05T19:24:07.34Z","fileLength":584004,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5786/327/architectury-13.0.8-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2830765833,"invalidFingerprint":false},{"foldername":"architectury-common-refmap.json","fingerprint":2053242975,"invalidFingerprint":false},{"foldername":"architectury-common.mixins.json","fingerprint":3973693202,"invalidFingerprint":false},{"foldername":"architectury.mixins.json","fingerprint":1646327958,"invalidFingerprint":false},{"foldername":"architectury_inject_architectury_common_90b77f7e91db42de8d10e5cc821610bb_5bd1878b82892d39a5055ed8d0e40a74688282c910e605d53cbddbcf6ff84c53architectury1308devjar","fingerprint":2353119672,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3788613633,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":337711864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1096803035,"invalidFingerprint":false}],"packageFingerprint":418634412,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":419699,"fileNameOnDisk":"architectury-13.0.8-neoforge.jar","hashes":[{"type":1,"value":"6ca11d3cc136bf69bb8f4d56982481eb85b5100b"},{"type":2,"value":"7a45a948b525c031ca85d221dfdbed85"}]},"dateInstalled":"2026-05-07T21:58:45.0710902Z","dateUpdated":"2026-05-07T21:58:45.0721519Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\architectury-13.0.8-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5786327,"fileName":"architectury-13.0.8-neoforge.jar","fileDate":"2024-10-05T19:24:07.34Z","fileLength":584004,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5786/327/architectury-13.0.8-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2830765833,"invalidFingerprint":false},{"foldername":"architectury-common-refmap.json","fingerprint":2053242975,"invalidFingerprint":false},{"foldername":"architectury-common.mixins.json","fingerprint":3973693202,"invalidFingerprint":false},{"foldername":"architectury.mixins.json","fingerprint":1646327958,"invalidFingerprint":false},{"foldername":"architectury_inject_architectury_common_90b77f7e91db42de8d10e5cc821610bb_5bd1878b82892d39a5055ed8d0e40a74688282c910e605d53cbddbcf6ff84c53architectury1308devjar","fingerprint":2353119672,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3788613633,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":337711864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1096803035,"invalidFingerprint":false}],"packageFingerprint":418634412,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":419699,"fileNameOnDisk":"architectury-13.0.8-neoforge.jar","hashes":[{"type":1,"value":"6ca11d3cc136bf69bb8f4d56982481eb85b5100b"},{"type":2,"value":"7a45a948b525c031ca85d221dfdbed85"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"911fe5ef-8359-41ec-b3eb-52f730db1639","modSource":0,"addonID":326652,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cupboard","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cupboard-1.21-3.5.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cupboard","issuesURL":"https://github.com/someaddons/cupboard/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/852/567/256/256/638255508280634753.png","tags":[],"installedFile":{"id":7746488,"fileName":"cupboard-1.21-3.5.jar","fileDate":"2026-03-12T10:30:19.31Z","fileLength":26659,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7746/488/cupboard-1.21-3.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1134223964,"invalidFingerprint":false},{"foldername":"com","fingerprint":2916834756,"invalidFingerprint":false},{"foldername":"cupboard.mixins.json","fingerprint":768032476,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3152166936,"invalidFingerprint":false}],"packageFingerprint":3036562125,"gameVersion":["1.21","Client","1.21.5","1.21.4","1.21.1","1.21.3","NeoForge","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":326652,"fileNameOnDisk":"cupboard-1.21-3.5.jar","hashes":[{"type":1,"value":"e5f55c8f9d172048fe6f8b919cda1dbe3cbfbc70"},{"type":2,"value":"48430a7d993b39ac3559f4773acc6678"}]},"dateInstalled":"2026-05-07T21:58:25.3022977Z","dateUpdated":"2026-05-07T21:58:25.303541Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cupboard-1.21-3.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7746488,"fileName":"cupboard-1.21-3.5.jar","fileDate":"2026-03-12T10:30:19.31Z","fileLength":26659,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7746/488/cupboard-1.21-3.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1134223964,"invalidFingerprint":false},{"foldername":"com","fingerprint":2916834756,"invalidFingerprint":false},{"foldername":"cupboard.mixins.json","fingerprint":768032476,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3152166936,"invalidFingerprint":false}],"packageFingerprint":3036562125,"gameVersion":["1.21","Client","1.21.5","1.21.4","1.21.1","1.21.3","NeoForge","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":326652,"fileNameOnDisk":"cupboard-1.21-3.5.jar","hashes":[{"type":1,"value":"e5f55c8f9d172048fe6f8b919cda1dbe3cbfbc70"},{"type":2,"value":"48430a7d993b39ac3559f4773acc6678"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"0e34dde9-e582-4bcc-a5d9-2d60c776ee30","modSource":0,"addonID":412082,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,4558,424,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Supplementaries","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/supplementaries","issuesURL":"https://github.com/MehVahdJukaar/Supplementaries/issues","wikiURL":"https://github.com/MehVahdJukaar/Supplementaries/wiki/Customization","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/358/166/256/256/637518566737953306_animated.gif","tags":[],"installedFile":{"id":8051628,"fileName":"supplementaries-neoforge-1.21.1-3.6.4.jar","fileDate":"2026-05-07T07:08:01.613Z","fileLength":13282562,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8051/628/supplementaries-neoforge-1.21.1-3.6.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1771785152,"invalidFingerprint":false},{"foldername":"net","fingerprint":3364092196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1807538907,"invalidFingerprint":false},{"foldername":"supplementaries-common.mixins.json","fingerprint":2347168856,"invalidFingerprint":false},{"foldername":"supplementaries.accesswidener","fingerprint":644601365,"invalidFingerprint":false},{"foldername":"supplementaries.mixins.json","fingerprint":1992579400,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1204094186,"invalidFingerprint":false},{"foldername":"data","fingerprint":3549520724,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":566625331,"invalidFingerprint":false},{"foldername":"LICENSE_Supplementaries.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":3238514946,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":412082,"fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","hashes":[{"type":1,"value":"54ac028b2a73cca26c021cdccb7328cf0037ff62"},{"type":2,"value":"c445a6b793e996e80305ff882ebed844"}]},"dateInstalled":"2026-05-07T22:45:40.8993192Z","dateUpdated":"2026-05-07T22:45:40.9037583Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\supplementaries-neoforge-1.21.1-3.6.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8051628,"fileName":"supplementaries-neoforge-1.21.1-3.6.4.jar","fileDate":"2026-05-07T07:08:01.613Z","fileLength":13282562,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8051/628/supplementaries-neoforge-1.21.1-3.6.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1771785152,"invalidFingerprint":false},{"foldername":"net","fingerprint":3364092196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1807538907,"invalidFingerprint":false},{"foldername":"supplementaries-common.mixins.json","fingerprint":2347168856,"invalidFingerprint":false},{"foldername":"supplementaries.accesswidener","fingerprint":644601365,"invalidFingerprint":false},{"foldername":"supplementaries.mixins.json","fingerprint":1992579400,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1204094186,"invalidFingerprint":false},{"foldername":"data","fingerprint":3549520724,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":566625331,"invalidFingerprint":false},{"foldername":"LICENSE_Supplementaries.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":3238514946,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":412082,"fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","hashes":[{"type":1,"value":"54ac028b2a73cca26c021cdccb7328cf0037ff62"},{"type":2,"value":"c445a6b793e996e80305ff882ebed844"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"21d46178-505e-40cd-a628-a71335dbdfc2","modSource":0,"addonID":238086,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,421,5314,406,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"KubeJS","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","authors":[{"id":11776558,"name":"LatvianModder"}],"primaryAuthor":"LatvianModder","primaryCategoryId":5314,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/kubejs","issuesURL":"https://kubejs.com/support?source=kubejs","wikiURL":"https://kubejs.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1053/159/256/256/638583716122159056.png","tags":[],"installedFile":{"id":8012065,"fileName":"kubejs-neoforge-2101.7.2-build.363.jar","fileDate":"2026-04-29T22:00:01.697Z","fileLength":2270442,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8012/65/kubejs-neoforge-2101.7.2-build.363.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":416294,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4225922610,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1033092382,"invalidFingerprint":false},{"foldername":"kubejs.classfilter.txt","fingerprint":769867264,"invalidFingerprint":false},{"foldername":"kubejs.mixins.json","fingerprint":4290470743,"invalidFingerprint":false},{"foldername":"kubejs.plugins.txt","fingerprint":1479902872,"invalidFingerprint":false},{"foldername":"kubejs_logo.png","fingerprint":2417335303,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3450518192,"invalidFingerprint":false},{"foldername":"data","fingerprint":1232684477,"invalidFingerprint":false}],"packageFingerprint":3609311698,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":238086,"fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","hashes":[{"type":1,"value":"d4e88254e8c26687d4c6aeb4dfa9c2ad70f260a2"},{"type":2,"value":"b8d47302e577f0ca33d08f46c3e6625b"}]},"dateInstalled":"2026-05-07T22:46:40.7653178Z","dateUpdated":"2026-05-07T22:46:40.7672689Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\kubejs-neoforge-2101.7.2-build.363.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8012065,"fileName":"kubejs-neoforge-2101.7.2-build.363.jar","fileDate":"2026-04-29T22:00:01.697Z","fileLength":2270442,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8012/65/kubejs-neoforge-2101.7.2-build.363.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":416294,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4225922610,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1033092382,"invalidFingerprint":false},{"foldername":"kubejs.classfilter.txt","fingerprint":769867264,"invalidFingerprint":false},{"foldername":"kubejs.mixins.json","fingerprint":4290470743,"invalidFingerprint":false},{"foldername":"kubejs.plugins.txt","fingerprint":1479902872,"invalidFingerprint":false},{"foldername":"kubejs_logo.png","fingerprint":2417335303,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3450518192,"invalidFingerprint":false},{"foldername":"data","fingerprint":1232684477,"invalidFingerprint":false}],"packageFingerprint":3609311698,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":238086,"fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","hashes":[{"type":1,"value":"d4e88254e8c26687d4c6aeb4dfa9c2ad70f260a2"},{"type":2,"value":"b8d47302e577f0ca33d08f46c3e6625b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"5180f6ee-9235-44da-9f3a-10727e10c29f","modSource":0,"addonID":618298,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Core","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-core","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/540/438/256/256/637866039314801108.png","tags":[],"installedFile":{"id":8046952,"fileName":"sophisticatedcore-1.21.1-1.4.38.1847.jar","fileDate":"2026-05-06T07:37:22.877Z","fileLength":1518673,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/952/sophisticatedcore-1.21.1-1.4.38.1847.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4047366804,"invalidFingerprint":false},{"foldername":"net","fingerprint":3117517409,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1532756958,"invalidFingerprint":false},{"foldername":"sophisticatedcore.mixins.json","fingerprint":2078575015,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3640101168,"invalidFingerprint":false},{"foldername":"sophisticatedcore.create.mixins.json","fingerprint":1928847927,"invalidFingerprint":false},{"foldername":"data","fingerprint":1813028607,"invalidFingerprint":false}],"packageFingerprint":2847046695,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":618298,"fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","hashes":[{"type":1,"value":"1a1245e38ede90317d08b75d68f41494a1b97704"},{"type":2,"value":"9ab42d1c8f1e1c694858f3c770bb15a7"}]},"dateInstalled":"2026-05-07T22:44:42.3062255Z","dateUpdated":"2026-05-07T22:44:42.3079085Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedcore-1.21.1-1.4.38.1847.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8046952,"fileName":"sophisticatedcore-1.21.1-1.4.38.1847.jar","fileDate":"2026-05-06T07:37:22.877Z","fileLength":1518673,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/952/sophisticatedcore-1.21.1-1.4.38.1847.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4047366804,"invalidFingerprint":false},{"foldername":"net","fingerprint":3117517409,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1532756958,"invalidFingerprint":false},{"foldername":"sophisticatedcore.mixins.json","fingerprint":2078575015,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3640101168,"invalidFingerprint":false},{"foldername":"sophisticatedcore.create.mixins.json","fingerprint":1928847927,"invalidFingerprint":false},{"foldername":"data","fingerprint":1813028607,"invalidFingerprint":false}],"packageFingerprint":2847046695,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":618298,"fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","hashes":[{"type":1,"value":"1a1245e38ede90317d08b75d68f41494a1b97704"},{"type":2,"value":"9ab42d1c8f1e1c694858f3c770bb15a7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6015b356-12a6-4375-8012-8419b1aa064e","modSource":0,"addonID":388800,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Polymorph (Fabric/Forge/Quilt)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","authors":[{"id":34683772,"name":"TheIllusiveC4"}],"primaryAuthor":"TheIllusiveC4","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/polymorph","issuesURL":"https://github.com/TheIllusiveC4/Polymorph/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/279/271/256/256/637277042531842540.png","tags":[],"installedFile":{"id":6794589,"fileName":"polymorph-neoforge-1.1.0+1.21.1.jar","fileDate":"2025-07-21T10:56:20.123Z","fileLength":174972,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6794/589/polymorph-neoforge-1.1.0%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1898173682,"invalidFingerprint":false},{"foldername":"com","fingerprint":1750886828,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4252131204,"invalidFingerprint":false},{"foldername":"polymorph_icon.png","fingerprint":2565812113,"invalidFingerprint":false},{"foldername":"polymorph.mixins.json","fingerprint":3447760356,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.neoforge.mixins.json","fingerprint":2969094330,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.mixins.json","fingerprint":1413208718,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1851461949,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1157955771,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":4104718648,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":661612897,"invalidFingerprint":false}],"packageFingerprint":2982501720,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":388800,"fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","hashes":[{"type":1,"value":"84f8c539fa326dc723ae62b7a6916d6b01982d07"},{"type":2,"value":"2368e0c92ae882677bbf4b87418656b9"}]},"dateInstalled":"2026-05-07T21:58:06.2033557Z","dateUpdated":"2026-05-07T21:58:06.2044413Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\polymorph-neoforge-1.1.0+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6794589,"fileName":"polymorph-neoforge-1.1.0+1.21.1.jar","fileDate":"2025-07-21T10:56:20.123Z","fileLength":174972,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6794/589/polymorph-neoforge-1.1.0%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1898173682,"invalidFingerprint":false},{"foldername":"com","fingerprint":1750886828,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4252131204,"invalidFingerprint":false},{"foldername":"polymorph_icon.png","fingerprint":2565812113,"invalidFingerprint":false},{"foldername":"polymorph.mixins.json","fingerprint":3447760356,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.neoforge.mixins.json","fingerprint":2969094330,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.mixins.json","fingerprint":1413208718,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1851461949,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1157955771,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":4104718648,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":661612897,"invalidFingerprint":false}],"packageFingerprint":2982501720,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":388800,"fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","hashes":[{"type":1,"value":"84f8c539fa326dc723ae62b7a6916d6b01982d07"},{"type":2,"value":"2368e0c92ae882677bbf4b87418656b9"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"43b4ac96-6fa1-475c-af76-b2a2ab09a9c2","modSource":0,"addonID":254284,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AmbientSounds 6","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","authors":[{"id":8685730,"name":"CreativeMD"}],"primaryAuthor":"CreativeMD","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ambientsounds","issuesURL":"https://github.com/CreativeMD/AmbientSounds/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/65/45/256/256/636158453613581226.png","tags":[],"installedFile":{"id":8043019,"fileName":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","fileDate":"2026-05-05T12:27:30.767Z","fileLength":84811632,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8043/19/AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":257814,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339489981,"invalidFingerprint":false},{"foldername":"team","fingerprint":2058735581,"invalidFingerprint":false},{"foldername":"ambientsounds.mixins.json","fingerprint":3880996333,"invalidFingerprint":false},{"foldername":"ambientsounds.png","fingerprint":3887141381,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3518751924,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":844488719,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3371263586,"invalidFingerprint":false}],"packageFingerprint":169092502,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":254284,"fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","hashes":[{"type":1,"value":"c79ab328b2c46068effebdcb3f26e98dc4404cb0"},{"type":2,"value":"fdd3f4054a8a2716cb4057d81e61a0c7"}]},"dateInstalled":"2026-05-07T22:47:11.6952515Z","dateUpdated":"2026-05-07T22:47:11.7159099Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8043019,"fileName":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","fileDate":"2026-05-05T12:27:30.767Z","fileLength":84811632,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8043/19/AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":257814,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339489981,"invalidFingerprint":false},{"foldername":"team","fingerprint":2058735581,"invalidFingerprint":false},{"foldername":"ambientsounds.mixins.json","fingerprint":3880996333,"invalidFingerprint":false},{"foldername":"ambientsounds.png","fingerprint":3887141381,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3518751924,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":844488719,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3371263586,"invalidFingerprint":false}],"packageFingerprint":169092502,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":254284,"fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","hashes":[{"type":1,"value":"c79ab328b2c46068effebdcb3f26e98dc4404cb0"},{"type":2,"value":"fdd3f4054a8a2716cb4057d81e61a0c7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"0bed0127-f99b-4043-9c3d-00eb3b383da3","modSource":0,"addonID":317780,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,414],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Xaero's World Map","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","authors":[{"id":12362980,"name":"xaero96"}],"primaryAuthor":"xaero96","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map","issuesURL":"https://legacy.curseforge.com/minecraft/mc-mods/xaeros-world-map/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/196/654/256/256/636886857118683130.png","tags":[],"installedFile":{"id":8042208,"fileName":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","fileDate":"2026-05-05T08:36:40.087Z","fileLength":1387011,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8042/208/xaeroworldmap-neoforge-1.21.1-1.40.16.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":263420,"type":2},{"addonId":636608,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2915310817,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1873849846,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565779974,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":91174732,"invalidFingerprint":false},{"foldername":"xaeroworldmap.mixins.json","fingerprint":1689920110,"invalidFingerprint":false},{"foldername":"xaeroworldmap.neoforge.mixins.json","fingerprint":401619445,"invalidFingerprint":false}],"packageFingerprint":2287221288,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":317780,"fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","hashes":[{"type":1,"value":"d0865b6153c4d0feaf1551fb5309884ec3568c03"},{"type":2,"value":"0b76c5c6d2e7598a801f159844f7bfab"}]},"dateInstalled":"2026-05-07T22:44:47.0059371Z","dateUpdated":"2026-05-07T22:44:47.0077218Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\xaeroworldmap-neoforge-1.21.1-1.40.16.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8042208,"fileName":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","fileDate":"2026-05-05T08:36:40.087Z","fileLength":1387011,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8042/208/xaeroworldmap-neoforge-1.21.1-1.40.16.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":263420,"type":2},{"addonId":636608,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2915310817,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1873849846,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565779974,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":91174732,"invalidFingerprint":false},{"foldername":"xaeroworldmap.mixins.json","fingerprint":1689920110,"invalidFingerprint":false},{"foldername":"xaeroworldmap.neoforge.mixins.json","fingerprint":401619445,"invalidFingerprint":false}],"packageFingerprint":2287221288,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":317780,"fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","hashes":[{"type":1,"value":"d0865b6153c4d0feaf1551fb5309884ec3568c03"},{"type":2,"value":"0b76c5c6d2e7598a801f159844f7bfab"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7a3454ae-d110-4a94-bb45-0a688ac475ae","modSource":0,"addonID":223852,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Storage Drawers","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","authors":[{"id":6833007,"name":"Texelsaur"}],"primaryAuthor":"Texelsaur","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/storage-drawers","issuesURL":"https://github.com/jaquadro/StorageDrawers/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/10/842/256/256/635468327818431130.png","tags":[],"installedFile":{"id":6995432,"fileName":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","fileDate":"2025-09-14T09:40:03.98Z","fileLength":1131419,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6995/432/StorageDrawers-neoforge-1.21.1-13.11.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3937469495,"invalidFingerprint":false},{"foldername":"com","fingerprint":408188765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":188157379,"invalidFingerprint":false},{"foldername":"data","fingerprint":3286145630,"invalidFingerprint":false},{"foldername":"storagedrawers.accesswidener","fingerprint":2358561593,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":784390785,"invalidFingerprint":false}],"packageFingerprint":1362863274,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":223852,"fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","hashes":[{"type":1,"value":"5347db4d1150b132841bd124d1608f812bf8076f"},{"type":2,"value":"dabc8395767c993960db28b301bfbcf1"}]},"dateInstalled":"2026-05-07T22:48:43.6707702Z","dateUpdated":"2026-05-07T22:48:43.6722834Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\StorageDrawers-neoforge-1.21.1-13.11.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6995432,"fileName":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","fileDate":"2025-09-14T09:40:03.98Z","fileLength":1131419,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6995/432/StorageDrawers-neoforge-1.21.1-13.11.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3937469495,"invalidFingerprint":false},{"foldername":"com","fingerprint":408188765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":188157379,"invalidFingerprint":false},{"foldername":"data","fingerprint":3286145630,"invalidFingerprint":false},{"foldername":"storagedrawers.accesswidener","fingerprint":2358561593,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":784390785,"invalidFingerprint":false}],"packageFingerprint":1362863274,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":223852,"fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","hashes":[{"type":1,"value":"5347db4d1150b132841bd124d1608f812bf8076f"},{"type":2,"value":"dabc8395767c993960db28b301bfbcf1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6d978328-df74-4659-bc97-da8a304d9abd","modSource":0,"addonID":1037680,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[408,434,422,5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Awesome 3D Mace","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"},{"id":129240526,"name":"lowercasebtw"},{"id":108329762,"name":"Skatric_"}],"primaryAuthor":"Lupin","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/awesome-3d-mace","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1018/233/256/256/638544822272410121.png","tags":[],"installedFile":{"id":7243121,"fileName":"mace3d-1.2.0-1.21.1+neoforge.jar","fileDate":"2025-11-20T18:04:21.317Z","fileLength":188719,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7243/121/mace3d-1.2.0-1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1843129765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2913730749,"invalidFingerprint":false},{"foldername":"dev","fingerprint":2738780732,"invalidFingerprint":false},{"foldername":"mace3d.mixins.json","fingerprint":1705950270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":273960316,"invalidFingerprint":false}],"packageFingerprint":3820136208,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1037680,"fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","hashes":[{"type":1,"value":"47bc853901ab453be4f55c4759d1bc01364d7316"},{"type":2,"value":"0d8747635dd74a25116ae4bef769bc0a"}]},"dateInstalled":"2026-05-07T21:58:42.5750142Z","dateUpdated":"2026-05-07T21:58:42.5758878Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\mace3d-1.2.0-1.21.1+neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7243121,"fileName":"mace3d-1.2.0-1.21.1+neoforge.jar","fileDate":"2025-11-20T18:04:21.317Z","fileLength":188719,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7243/121/mace3d-1.2.0-1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1843129765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2913730749,"invalidFingerprint":false},{"foldername":"dev","fingerprint":2738780732,"invalidFingerprint":false},{"foldername":"mace3d.mixins.json","fingerprint":1705950270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":273960316,"invalidFingerprint":false}],"packageFingerprint":3820136208,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1037680,"fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","hashes":[{"type":1,"value":"47bc853901ab453be4f55c4759d1bc01364d7316"},{"type":2,"value":"0d8747635dd74a25116ae4bef769bc0a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"86a1d40f-236d-4513-b2ef-a0bd06b5370f","modSource":0,"addonID":220318,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[407,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Biomes O' Plenty","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","authors":[{"id":6883388,"name":"Forstride"},{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"Forstride","primaryCategoryId":407,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/biomes-o-plenty","issuesURL":"https://github.com/Glitchfiend/BiomesOPlenty/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/477/194/256/256/637771671789296797.png","tags":[],"installedFile":{"id":7251965,"fileName":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","fileDate":"2025-11-23T04:05:05.193Z","fileLength":22338081,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7251/965/BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":940057,"type":3},{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1375306347,"invalidFingerprint":false},{"foldername":"biomesoplenty","fingerprint":436268774,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1499534005,"invalidFingerprint":false},{"foldername":"biomesoplenty.neoforge.mixins.json","fingerprint":3621304227,"invalidFingerprint":false},{"foldername":"assets","fingerprint":903437356,"invalidFingerprint":false},{"foldername":"biomesoplenty.accesswidener","fingerprint":403888900,"invalidFingerprint":false},{"foldername":"biomesoplenty_logo.png","fingerprint":2745841392,"invalidFingerprint":false},{"foldername":"data","fingerprint":2356029796,"invalidFingerprint":false},{"foldername":"biomesoplenty.mixins.json","fingerprint":3338520145,"invalidFingerprint":false},{"foldername":".cache","fingerprint":1018158453,"invalidFingerprint":false}],"packageFingerprint":2025728047,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":220318,"fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","hashes":[{"type":1,"value":"a0dec78a9c1bb7e0167e5326aaf3c58a94f3aa86"},{"type":2,"value":"5fffd607544c0c158957a5df7a510bd8"}]},"dateInstalled":"2026-05-07T22:47:42.5862646Z","dateUpdated":"2026-05-07T22:47:42.5923713Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7251965,"fileName":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","fileDate":"2025-11-23T04:05:05.193Z","fileLength":22338081,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7251/965/BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":940057,"type":3},{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1375306347,"invalidFingerprint":false},{"foldername":"biomesoplenty","fingerprint":436268774,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1499534005,"invalidFingerprint":false},{"foldername":"biomesoplenty.neoforge.mixins.json","fingerprint":3621304227,"invalidFingerprint":false},{"foldername":"assets","fingerprint":903437356,"invalidFingerprint":false},{"foldername":"biomesoplenty.accesswidener","fingerprint":403888900,"invalidFingerprint":false},{"foldername":"biomesoplenty_logo.png","fingerprint":2745841392,"invalidFingerprint":false},{"foldername":"data","fingerprint":2356029796,"invalidFingerprint":false},{"foldername":"biomesoplenty.mixins.json","fingerprint":3338520145,"invalidFingerprint":false},{"foldername":".cache","fingerprint":1018158453,"invalidFingerprint":false}],"packageFingerprint":2025728047,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":220318,"fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","hashes":[{"type":1,"value":"a0dec78a9c1bb7e0167e5326aaf3c58a94f3aa86"},{"type":2,"value":"5fffd607544c0c158957a5df7a510bd8"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"06ff369f-52a1-4a71-8b93-9a491b047024","modSource":0,"addonID":1315611,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5191,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Accessories Compatibility Layer","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","authors":[{"id":100277261,"name":"Blodhgarm"}],"primaryAuthor":"Blodhgarm","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/accessories-compat-layer","issuesURL":"https://github.com/wisp-forest/accessories-compat-layer/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1375/457/256/256/638892570347250676.png","tags":[],"installedFile":{"id":7585673,"fileName":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","fileDate":"2026-02-06T19:18:03.92Z","fileLength":405416,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7585/673/accessories_compat_layer-neoforge-0.1.12%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":532610,"type":3},{"addonId":938917,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":719714238,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common-common-refmap.json","fingerprint":1309914895,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common.mixins.json","fingerprint":2389349121,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-curios.mixins.json","fingerprint":2234185362,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-neoforge.mixins.json","fingerprint":3477667976,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-trinkets.mixins.json","fingerprint":3631708226,"invalidFingerprint":false},{"foldername":"accessories_compat_layer.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402476106,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":118629613,"invalidFingerprint":false},{"foldername":"io","fingerprint":2666805157,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2036385988,"invalidFingerprint":false}],"packageFingerprint":3503433516,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1315611,"fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","hashes":[{"type":1,"value":"59dd35650925d72f5158816caf895f3d9fa0edf4"},{"type":2,"value":"f6465aa6e300ef9048dd782fa1d29cca"}]},"dateInstalled":"2026-05-07T22:53:55.7971451Z","dateUpdated":"2026-05-07T22:53:55.7986521Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\accessories_compat_layer-neoforge-0.1.12+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7585673,"fileName":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","fileDate":"2026-02-06T19:18:03.92Z","fileLength":405416,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7585/673/accessories_compat_layer-neoforge-0.1.12%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":532610,"type":3},{"addonId":938917,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":719714238,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common-common-refmap.json","fingerprint":1309914895,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common.mixins.json","fingerprint":2389349121,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-curios.mixins.json","fingerprint":2234185362,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-neoforge.mixins.json","fingerprint":3477667976,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-trinkets.mixins.json","fingerprint":3631708226,"invalidFingerprint":false},{"foldername":"accessories_compat_layer.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402476106,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":118629613,"invalidFingerprint":false},{"foldername":"io","fingerprint":2666805157,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2036385988,"invalidFingerprint":false}],"packageFingerprint":3503433516,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1315611,"fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","hashes":[{"type":1,"value":"59dd35650925d72f5158816caf895f3d9fa0edf4"},{"type":2,"value":"f6465aa6e300ef9048dd782fa1d29cca"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ee707879-a427-47ee-9eef-135c96a00388","modSource":0,"addonID":361579,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"spark","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"spark-1.10.124-neoforge.jar","authors":[{"id":54676657,"name":"Iucko"}],"primaryAuthor":"Iucko","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/spark","issuesURL":"https://github.com/lucko/spark/issues","wikiURL":"https://spark.lucko.me/docs","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/495/151/256/256/637808085409071880.png","tags":[],"installedFile":{"id":6225208,"fileName":"spark-1.10.124-neoforge.jar","fileDate":"2025-02-23T11:38:31.027Z","fileLength":3642581,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6225/208/spark-1.10.124-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2169941584,"invalidFingerprint":false},{"foldername":"me","fingerprint":620895083,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":875227375,"invalidFingerprint":false},{"foldername":"spark-native","fingerprint":433455606,"invalidFingerprint":false},{"foldername":"win32-x86","fingerprint":2564852001,"invalidFingerprint":false},{"foldername":"win32-x86-64","fingerprint":2158727245,"invalidFingerprint":false}],"packageFingerprint":3447435049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361579,"fileNameOnDisk":"spark-1.10.124-neoforge.jar","hashes":[{"type":1,"value":"9430cc2ab64ff89d698be593769fb9f9ee4efae6"},{"type":2,"value":"a61dd250e618f8fd62fc6b0943831c50"}]},"dateInstalled":"2026-05-07T21:58:55.9444532Z","dateUpdated":"2026-05-07T21:58:55.9462454Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\spark-1.10.124-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6225208,"fileName":"spark-1.10.124-neoforge.jar","fileDate":"2025-02-23T11:38:31.027Z","fileLength":3642581,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6225/208/spark-1.10.124-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2169941584,"invalidFingerprint":false},{"foldername":"me","fingerprint":620895083,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":875227375,"invalidFingerprint":false},{"foldername":"spark-native","fingerprint":433455606,"invalidFingerprint":false},{"foldername":"win32-x86","fingerprint":2564852001,"invalidFingerprint":false},{"foldername":"win32-x86-64","fingerprint":2158727245,"invalidFingerprint":false}],"packageFingerprint":3447435049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361579,"fileNameOnDisk":"spark-1.10.124-neoforge.jar","hashes":[{"type":1,"value":"9430cc2ab64ff89d698be593769fb9f9ee4efae6"},{"type":2,"value":"a61dd250e618f8fd62fc6b0943831c50"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"68ffa61f-2ddc-4b75-bbd9-5b7c32e1e96b","modSource":0,"addonID":531761,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Balm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/balm","issuesURL":"https://github.com/TwelveIterations/Balm/issues","wikiURL":"https://balm.twelveiterations.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1107/117/256/256/638657111836546584.png","tags":[],"installedFile":{"id":7420963,"fileName":"balm-neoforge-1.21.1-21.0.56.jar","fileDate":"2026-01-05T13:50:26.647Z","fileLength":739709,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7420/963/balm-neoforge-1.21.1-21.0.56.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4013853730,"invalidFingerprint":false},{"foldername":"net","fingerprint":2433240582,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":320221365,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2093007951,"invalidFingerprint":false},{"foldername":"balm.neoforge.mixins.json","fingerprint":3931949274,"invalidFingerprint":false},{"foldername":"data","fingerprint":3917391617,"invalidFingerprint":false},{"foldername":"balm.png","fingerprint":3535347704,"invalidFingerprint":false},{"foldername":"wthit_plugins.json","fingerprint":2086325127,"invalidFingerprint":false},{"foldername":"balm.mixins.json","fingerprint":451320591,"invalidFingerprint":false},{"foldername":"LICENSE_Balm","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1850182331,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":531761,"fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","hashes":[{"type":1,"value":"c1c1d4859c7943c7d1c181c07fa7273a1d56df15"},{"type":2,"value":"7ab16721c9a8bb96666233d8ef46b47d"}]},"dateInstalled":"2026-05-07T21:58:06.7251958Z","dateUpdated":"2026-05-07T21:58:06.7263838Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\balm-neoforge-1.21.1-21.0.56.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7420963,"fileName":"balm-neoforge-1.21.1-21.0.56.jar","fileDate":"2026-01-05T13:50:26.647Z","fileLength":739709,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7420/963/balm-neoforge-1.21.1-21.0.56.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4013853730,"invalidFingerprint":false},{"foldername":"net","fingerprint":2433240582,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":320221365,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2093007951,"invalidFingerprint":false},{"foldername":"balm.neoforge.mixins.json","fingerprint":3931949274,"invalidFingerprint":false},{"foldername":"data","fingerprint":3917391617,"invalidFingerprint":false},{"foldername":"balm.png","fingerprint":3535347704,"invalidFingerprint":false},{"foldername":"wthit_plugins.json","fingerprint":2086325127,"invalidFingerprint":false},{"foldername":"balm.mixins.json","fingerprint":451320591,"invalidFingerprint":false},{"foldername":"LICENSE_Balm","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1850182331,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":531761,"fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","hashes":[{"type":1,"value":"c1c1d4859c7943c7d1c181c07fa7273a1d56df15"},{"type":2,"value":"7ab16721c9a8bb96666233d8ef46b47d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"06aea849-7169-442d-8af0-effdc435542c","modSource":0,"addonID":1016013,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[402,394,405,403,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Chests","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Chests - 1.1.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":394,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-chests","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1302/596/256/256/638846733472264521.webp","tags":[],"installedFile":{"id":7451276,"fileName":"Realistic Chests - 1.1.zip","fileDate":"2026-01-12T18:12:27.543Z","fileLength":475866,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/276/Realistic%20Chests%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2291289666,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3660398786,"invalidFingerprint":false}],"packageFingerprint":916013278,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1016013,"fileNameOnDisk":"Realistic Chests - 1.1.zip","hashes":[{"type":1,"value":"22960c0ddc700e0debf1acb70b60b751af8ab38e"},{"type":2,"value":"c5849bd0460bcf3c7752d8d6864f6dae"}]},"dateInstalled":"2026-05-07T21:58:35.515544Z","dateUpdated":"2026-05-07T21:58:35.5174269Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Chests - 1.1.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7451276,"fileName":"Realistic Chests - 1.1.zip","fileDate":"2026-01-12T18:12:27.543Z","fileLength":475866,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/276/Realistic%20Chests%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2291289666,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3660398786,"invalidFingerprint":false}],"packageFingerprint":916013278,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1016013,"fileNameOnDisk":"Realistic Chests - 1.1.zip","hashes":[{"type":1,"value":"22960c0ddc700e0debf1acb70b60b751af8ab38e"},{"type":2,"value":"c5849bd0460bcf3c7752d8d6864f6dae"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6852120c-5547-4998-be13-3902682a8c4b","modSource":0,"addonID":448233,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Entity Culling Fabric/Forge","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","authors":[{"id":100212189,"name":"tr7zw"}],"primaryAuthor":"tr7zw","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entityculling","issuesURL":"https://github.com/tr7zw/EntityCulling/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/345/318/256/256/637492631463701682.png","tags":[],"installedFile":{"id":8053771,"fileName":"entityculling-neoforge-1.10.2-mc1.21.1.jar","fileDate":"2026-05-07T17:02:06.093Z","fileLength":1582824,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8053/771/entityculling-neoforge-1.10.2-mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2096466311,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1929528592,"invalidFingerprint":false},{"foldername":"LICENSE-EntityCulling","fingerprint":3421239066,"invalidFingerprint":false},{"foldername":"assets","fingerprint":225464463,"invalidFingerprint":false},{"foldername":"com","fingerprint":1200952869,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3474774877,"invalidFingerprint":false},{"foldername":"entityculling.mixins.json","fingerprint":2732222196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1128112900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1336019042,"invalidFingerprint":false}],"packageFingerprint":1090075427,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":448233,"fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","hashes":[{"type":1,"value":"6c6f885e0359c2b0601cbec76fda406caeb49cca"},{"type":2,"value":"88831a176ed788b91d9c881a70a86902"}]},"dateInstalled":"2026-05-07T21:58:02.953484Z","dateUpdated":"2026-05-07T22:25:59.3890691Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entityculling-neoforge-1.10.2-mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8053771,"fileName":"entityculling-neoforge-1.10.2-mc1.21.1.jar","fileDate":"2026-05-07T17:02:06.093Z","fileLength":1582824,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8053/771/entityculling-neoforge-1.10.2-mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2096466311,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1929528592,"invalidFingerprint":false},{"foldername":"LICENSE-EntityCulling","fingerprint":3421239066,"invalidFingerprint":false},{"foldername":"assets","fingerprint":225464463,"invalidFingerprint":false},{"foldername":"com","fingerprint":1200952869,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3474774877,"invalidFingerprint":false},{"foldername":"entityculling.mixins.json","fingerprint":2732222196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1128112900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1336019042,"invalidFingerprint":false}],"packageFingerprint":1090075427,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":448233,"fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","hashes":[{"type":1,"value":"6c6f885e0359c2b0601cbec76fda406caeb49cca"},{"type":2,"value":"88831a176ed788b91d9c881a70a86902"}]},"allowModDistribution":false,"exportDisabledReason":0,"groupId":null},{"instanceID":"034eca0f-b951-4e92-b6cf-77c8e505482b","modSource":0,"addonID":1386611,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[5193,404,400,405,403],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better GUI - Workbench, Villagers...","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":114802045,"name":"yusuf26"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/better-vanilla-gui","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1524/317/256/256/638989765415539180.webp","tags":[],"installedFile":{"id":7819803,"fileName":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","fileDate":"2026-03-26T22:54:16.04Z","fileLength":12423207,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7819/803/Better%20Vanilla%20GUI%20(With%20OptiGUI)%20-%20MC%201.21.1%20-%203.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"Credits.txt","fingerprint":2159287669,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4120494466,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1348194029,"invalidFingerprint":false},{"foldername":"respackopts.json5","fingerprint":4034398857,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1902362250,"invalidFingerprint":false}],"packageFingerprint":2249827972,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1386611,"fileNameOnDisk":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","hashes":[{"type":1,"value":"55d241004872ac30f6deaa5b5accdb08d2d3ac9b"},{"type":2,"value":"9ef853347ecf2c4f1dae8bccb982a6af"}]},"dateInstalled":"2026-05-07T21:58:13.7767189Z","dateUpdated":"2026-05-07T21:58:14.3882714Z","status":3,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7819808,"fileName":"Better Vanilla GUI (Without OptiGUI) - MC 1.21.1 - 3.1.0.zip","fileDate":"2026-03-26T22:54:55.433Z","fileLength":12423207,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7819/808/Better%20Vanilla%20GUI%20(Without%20OptiGUI)%20-%20MC%201.21.1%20-%203.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"Credits.txt","fingerprint":2159287669,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4120494466,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1348194029,"invalidFingerprint":false},{"foldername":"respackopts.json5","fingerprint":4034398857,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1902362250,"invalidFingerprint":false}],"packageFingerprint":3074793684,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1386611,"fileNameOnDisk":"Better Vanilla GUI (Without OptiGUI) - MC 1.21.1 - 3.1.0.zip","hashes":[{"type":1,"value":"1136fdacdf63dae37993d77730b99001310c1dfa"},{"type":2,"value":"3b98e99ffffefddb76e22c969b5613e1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"76842d4c-e98d-4a96-b37a-b0b42a27fd27","modSource":0,"addonID":1103431,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium/Embeddium Options API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sodium-options-api","issuesURL":"https://github.com/txnimc/SodiumOptionsAPI/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1080/739/256/256/638620165439711976.png","tags":[],"installedFile":{"id":6100815,"fileName":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","fileDate":"2025-01-18T20:48:18.213Z","fileLength":309122,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6100/815/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","isAlternate":false,"alternateFileId":6100821,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":937528710,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1038961657,"invalidFingerprint":false},{"foldername":"licenses","fingerprint":4180073098,"invalidFingerprint":false},{"foldername":"mixins.sodiumoptionsapi.json","fingerprint":997596813,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1740227982,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4153736018,"invalidFingerprint":false}],"packageFingerprint":2527579799,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1103431,"fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","hashes":[{"type":1,"value":"5d014d031fa77ab600e07835b032ef4dcb79b442"},{"type":2,"value":"1411af8defb5136119d3cf706d3d9cd8"}]},"dateInstalled":"2026-05-07T21:58:41.8857856Z","dateUpdated":"2026-05-07T21:58:41.88701Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6100815,"fileName":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","fileDate":"2025-01-18T20:48:18.213Z","fileLength":309122,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6100/815/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","isAlternate":false,"alternateFileId":6100821,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":937528710,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1038961657,"invalidFingerprint":false},{"foldername":"licenses","fingerprint":4180073098,"invalidFingerprint":false},{"foldername":"mixins.sodiumoptionsapi.json","fingerprint":997596813,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1740227982,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4153736018,"invalidFingerprint":false}],"packageFingerprint":2527579799,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1103431,"fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","hashes":[{"type":1,"value":"5d014d031fa77ab600e07835b032ef4dcb79b442"},{"type":2,"value":"1411af8defb5136119d3cf706d3d9cd8"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"09cbcabc-2070-4df6-8154-f9a33ed43a8e","modSource":0,"addonID":416294,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5314],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Rhino","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"rhino-2101.2.7-build.81.jar","authors":[{"id":11776558,"name":"LatvianModder"}],"primaryAuthor":"LatvianModder","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/rhino","issuesURL":"https://kubejs.com/support?source=rhino","wikiURL":"https://kubejs.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1053/155/256/256/638583713150199979.png","tags":[],"installedFile":{"id":7104526,"fileName":"rhino-2101.2.7-build.81.jar","fileDate":"2025-10-13T22:22:58.843Z","fileLength":882032,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7104/526/rhino-2101.2.7-build.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":965621183,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3693405486,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":178108278,"invalidFingerprint":false},{"foldername":"rhino_logo.png","fingerprint":1543393451,"invalidFingerprint":false}],"packageFingerprint":3887879530,"gameVersion":["1.21","Fabric","1.21.4","Forge","1.21.1","1.21.3","NeoForge","1.21.2","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":416294,"fileNameOnDisk":"rhino-2101.2.7-build.81.jar","hashes":[{"type":1,"value":"5dcc80079095706645d567353095297948a41eea"},{"type":2,"value":"050aad61e018a810b0f183ad50e084c6"}]},"dateInstalled":"2026-05-07T22:46:40.2391884Z","dateUpdated":"2026-05-07T22:46:40.2410542Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\rhino-2101.2.7-build.81.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7104526,"fileName":"rhino-2101.2.7-build.81.jar","fileDate":"2025-10-13T22:22:58.843Z","fileLength":882032,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7104/526/rhino-2101.2.7-build.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":965621183,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3693405486,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":178108278,"invalidFingerprint":false},{"foldername":"rhino_logo.png","fingerprint":1543393451,"invalidFingerprint":false}],"packageFingerprint":3887879530,"gameVersion":["1.21","Fabric","1.21.4","Forge","1.21.1","1.21.3","NeoForge","1.21.2","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":416294,"fileNameOnDisk":"rhino-2101.2.7-build.81.jar","hashes":[{"type":1,"value":"5dcc80079095706645d567353095297948a41eea"},{"type":2,"value":"050aad61e018a810b0f183ad50e084c6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"65556eb6-04d2-4b0f-bd66-62841d5c73c2","modSource":0,"addonID":348521,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cloth Config API (Fabric/Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","authors":[{"id":32851078,"name":"shedaniel"},{"id":101070148,"name":"LinkieIsBetterThanK9"}],"primaryAuthor":"shedaniel","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cloth-config","issuesURL":"https://github.com/shedaniel/ClothConfig/issues","wikiURL":"https://shedaniel.gitbook.io/cloth-config/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/282/467/256/256/637289313020452406.png","tags":[],"installedFile":{"id":5729127,"fileName":"cloth-config-15.0.140-neoforge.jar","fileDate":"2024-09-16T17:18:01.157Z","fileLength":1163890,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5729/127/cloth-config-15.0.140-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2767812205,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":4008471873,"invalidFingerprint":false},{"foldername":"architectury_inject_clothconfig_common_d551de04735c42148ec07a78c43007d1_c487a9cf12e7d5bea169da255b814f03602bdeb8b51cff67162252c24f285789clothconfig150140devjar","fingerprint":2775278757,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1622707384,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2356087988,"invalidFingerprint":false},{"foldername":"me","fingerprint":1406389870,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":524945892,"invalidFingerprint":false}],"packageFingerprint":1440957232,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348521,"fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","hashes":[{"type":1,"value":"c3e5733ba4503b102589a026000fd5ce0212f6f2"},{"type":2,"value":"4c3757160403fcccb8ad468c2ea22862"}]},"dateInstalled":"2026-05-07T21:57:59.1039313Z","dateUpdated":"2026-05-07T21:57:59.1054777Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cloth-config-15.0.140-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5729127,"fileName":"cloth-config-15.0.140-neoforge.jar","fileDate":"2024-09-16T17:18:01.157Z","fileLength":1163890,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5729/127/cloth-config-15.0.140-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2767812205,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":4008471873,"invalidFingerprint":false},{"foldername":"architectury_inject_clothconfig_common_d551de04735c42148ec07a78c43007d1_c487a9cf12e7d5bea169da255b814f03602bdeb8b51cff67162252c24f285789clothconfig150140devjar","fingerprint":2775278757,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1622707384,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2356087988,"invalidFingerprint":false},{"foldername":"me","fingerprint":1406389870,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":524945892,"invalidFingerprint":false}],"packageFingerprint":1440957232,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348521,"fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","hashes":[{"type":1,"value":"c3e5733ba4503b102589a026000fd5ce0212f6f2"},{"type":2,"value":"4c3757160403fcccb8ad468c2ea22862"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"45e59325-0a84-4965-a0a8-993b2da2df24","modSource":0,"addonID":532610,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"oωo (owo-lib)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","authors":[{"id":35371227,"name":"gliscowo"}],"primaryAuthor":"gliscowo","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/owo-lib","issuesURL":"https://github.com/glisco03/owo-lib/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/439/260/256/256/637686200233061049.png","tags":[],"installedFile":{"id":6785734,"fileName":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","fileDate":"2025-07-19T00:45:21.91Z","fileLength":1221583,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6785/734/owo-lib-neoforge-0.12.15.5-beta.1%2b1.21.jar","isAlternate":false,"alternateFileId":6785735,"serverPackFileId":0,"dependencies":[{"addonId":889079,"type":1}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":819452121,"invalidFingerprint":false},{"foldername":"LICENSE_owo-lib-neoforge","fingerprint":516078654,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":3662089215,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1509669401,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":785070536,"invalidFingerprint":false},{"foldername":"io","fingerprint":2600215563,"invalidFingerprint":false},{"foldername":"owo.accesswidener","fingerprint":2477971041,"invalidFingerprint":false},{"foldername":"owo.mixins.json","fingerprint":3665693971,"invalidFingerprint":false}],"packageFingerprint":990455198,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":532610,"fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","hashes":[{"type":1,"value":"48dda11a6710591cf162bdbedf982ea21dd1f2ed"},{"type":2,"value":"4c8323c3d0493f7e82a2287e5ca9df7f"}]},"dateInstalled":"2026-05-07T22:53:53.5284585Z","dateUpdated":"2026-05-07T22:53:53.5304907Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6785734,"fileName":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","fileDate":"2025-07-19T00:45:21.91Z","fileLength":1221583,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6785/734/owo-lib-neoforge-0.12.15.5-beta.1%2b1.21.jar","isAlternate":false,"alternateFileId":6785735,"serverPackFileId":0,"dependencies":[{"addonId":889079,"type":1}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":819452121,"invalidFingerprint":false},{"foldername":"LICENSE_owo-lib-neoforge","fingerprint":516078654,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":3662089215,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1509669401,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":785070536,"invalidFingerprint":false},{"foldername":"io","fingerprint":2600215563,"invalidFingerprint":false},{"foldername":"owo.accesswidener","fingerprint":2477971041,"invalidFingerprint":false},{"foldername":"owo.mixins.json","fingerprint":3665693971,"invalidFingerprint":false}],"packageFingerprint":990455198,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":532610,"fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","hashes":[{"type":1,"value":"48dda11a6710591cf162bdbedf982ea21dd1f2ed"},{"type":2,"value":"4c8323c3d0493f7e82a2287e5ca9df7f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"309086e2-d220-4bb9-8726-2e146ce43ce9","modSource":0,"addonID":888288,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,4465,5193],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Structures","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-structures","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1492/409/256/256/638969816572464931.webp","tags":[],"installedFile":{"id":7228395,"fileName":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:59:48.38Z","fileLength":55570868,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/395/loadingbackgrounds_structures-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1336439579,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1952494468,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":173428093,"invalidFingerprint":false}],"packageFingerprint":2703244904,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888288,"fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"6a56a36686a55ed9d6e4b9d8b9f36d04338495d9"},{"type":2,"value":"c04bf18745d4dbe53cb0cef4396bf1bc"}]},"dateInstalled":"2026-05-07T21:58:24.7645391Z","dateUpdated":"2026-05-07T21:58:24.7798674Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_structures-1.21.X-3.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228395,"fileName":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:59:48.38Z","fileLength":55570868,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/395/loadingbackgrounds_structures-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1336439579,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1952494468,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":173428093,"invalidFingerprint":false}],"packageFingerprint":2703244904,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888288,"fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"6a56a36686a55ed9d6e4b9d8b9f36d04338495d9"},{"type":2,"value":"c04bf18745d4dbe53cb0cef4396bf1bc"}]},"allowModDistribution":false,"exportDisabledReason":0,"groupId":null},{"instanceID":"2f71fc3d-2235-4097-8ca2-2ee7c3d19b1b","modSource":0,"addonID":257814,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"CreativeCore","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","authors":[{"id":8685730,"name":"CreativeMD"}],"primaryAuthor":"CreativeMD","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/creativecore","issuesURL":"https://github.com/CreativeMD/CreativeCore/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/86/225/256/256/636207446427836220.png","tags":[],"installedFile":{"id":8004779,"fileName":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","fileDate":"2026-04-28T11:32:11.477Z","fileLength":1216443,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8004/779/CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","isAlternate":false,"alternateFileId":8004780,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3247265611,"invalidFingerprint":false},{"foldername":"team","fingerprint":2262564845,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402582953,"invalidFingerprint":false},{"foldername":"creativecore.forge.mixins.json","fingerprint":3478165571,"invalidFingerprint":false},{"foldername":"creativecore.mixins.json","fingerprint":1356086701,"invalidFingerprint":false},{"foldername":"creativecore.png","fingerprint":1124175186,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565355498,"invalidFingerprint":false}],"packageFingerprint":1531775076,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":257814,"fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","hashes":[{"type":1,"value":"c3f1aa493ce0d3d60ba76e2b2d6b1dd65f60bde6"},{"type":2,"value":"294370b4063e84654bc9c662a33b6a5b"}]},"dateInstalled":"2026-05-07T22:47:03.7274599Z","dateUpdated":"2026-05-07T22:47:03.7288977Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8004779,"fileName":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","fileDate":"2026-04-28T11:32:11.477Z","fileLength":1216443,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8004/779/CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","isAlternate":false,"alternateFileId":8004780,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3247265611,"invalidFingerprint":false},{"foldername":"team","fingerprint":2262564845,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402582953,"invalidFingerprint":false},{"foldername":"creativecore.forge.mixins.json","fingerprint":3478165571,"invalidFingerprint":false},{"foldername":"creativecore.mixins.json","fingerprint":1356086701,"invalidFingerprint":false},{"foldername":"creativecore.png","fingerprint":1124175186,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565355498,"invalidFingerprint":false}],"packageFingerprint":1531775076,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":257814,"fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","hashes":[{"type":1,"value":"c3f1aa493ce0d3d60ba76e2b2d6b1dd65f60bde6"},{"type":2,"value":"294370b4063e84654bc9c662a33b6a5b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"788a31fb-efa0-4544-b446-68757634d7bd","modSource":0,"addonID":291874,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[416,407,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Serene Seasons","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","authors":[{"id":9704465,"name":"TheAdubbz"},{"id":6883388,"name":"Forstride"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":416,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/serene-seasons","issuesURL":"https://github.com/Glitchfiend/SereneSeasons/issues","wikiURL":"https://github.com/Glitchfiend/SereneSeasons/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/881/200/256/256/638311173747555092.png","tags":[],"installedFile":{"id":6182596,"fileName":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","fileDate":"2025-02-11T19:35:48.86Z","fileLength":159205,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6182/596/SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1976747111,"invalidFingerprint":false},{"foldername":"sereneseasons","fingerprint":902611544,"invalidFingerprint":false},{"foldername":"sereneseasons.accesswidener","fingerprint":2881013965,"invalidFingerprint":false},{"foldername":"sereneseasons.neoforge.mixins.json","fingerprint":275329139,"invalidFingerprint":false},{"foldername":"data","fingerprint":1943920533,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2737650996,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1630887287,"invalidFingerprint":false},{"foldername":"sereneseasons.mixins.json","fingerprint":1526950209,"invalidFingerprint":false},{"foldername":"sereneseasons_logo.png","fingerprint":2591895052,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1101028231,"invalidFingerprint":false}],"packageFingerprint":341671071,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":291874,"fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","hashes":[{"type":1,"value":"8b9034d4c43f880b1f1ebdd3943219de0b0bc4c5"},{"type":2,"value":"2928f502140c1ff72adf2df7642d9ba6"}]},"dateInstalled":"2026-05-07T22:48:12.7793975Z","dateUpdated":"2026-05-07T22:48:13.1968922Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\SereneSeasons-neoforge-1.21.1-10.1.0.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6182596,"fileName":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","fileDate":"2025-02-11T19:35:48.86Z","fileLength":159205,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6182/596/SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1976747111,"invalidFingerprint":false},{"foldername":"sereneseasons","fingerprint":902611544,"invalidFingerprint":false},{"foldername":"sereneseasons.accesswidener","fingerprint":2881013965,"invalidFingerprint":false},{"foldername":"sereneseasons.neoforge.mixins.json","fingerprint":275329139,"invalidFingerprint":false},{"foldername":"data","fingerprint":1943920533,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2737650996,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1630887287,"invalidFingerprint":false},{"foldername":"sereneseasons.mixins.json","fingerprint":1526950209,"invalidFingerprint":false},{"foldername":"sereneseasons_logo.png","fingerprint":2591895052,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1101028231,"invalidFingerprint":false}],"packageFingerprint":341671071,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":291874,"fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","hashes":[{"type":1,"value":"8b9034d4c43f880b1f1ebdd3943219de0b0bc4c5"},{"type":2,"value":"2928f502140c1ff72adf2df7642d9ba6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"137eceb0-638e-405d-98e5-115d4a71a82f","modSource":0,"addonID":422301,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Backpacks","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-backpacks","issuesURL":"https://github.com/P3pp3rF1y/SophisticatedBackpacks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/375/56/256/256/637549610342642859.png","tags":[],"installedFile":{"id":8034895,"fileName":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","fileDate":"2026-05-03T21:56:40.073Z","fileLength":1023758,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/895/sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2},{"addonId":618298,"type":3},{"addonId":235577,"type":2},{"addonId":309927,"type":2},{"addonId":513769,"type":2},{"addonId":233071,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":944465999,"invalidFingerprint":false},{"foldername":"net","fingerprint":3077487566,"invalidFingerprint":false},{"foldername":"assets","fingerprint":792390393,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1102936719,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2552684475,"invalidFingerprint":false},{"foldername":"data","fingerprint":3427607510,"invalidFingerprint":false}],"packageFingerprint":1820929664,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":422301,"fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","hashes":[{"type":1,"value":"52cd2b8ddbb79509b5b268849658097ebb8ed947"},{"type":2,"value":"8dfae39d2266f457798791c74deff8e6"}]},"dateInstalled":"2026-05-07T22:44:42.7361296Z","dateUpdated":"2026-05-07T22:44:42.7381227Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedbackpacks-1.21.1-3.25.44.1736.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8034895,"fileName":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","fileDate":"2026-05-03T21:56:40.073Z","fileLength":1023758,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/895/sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2},{"addonId":618298,"type":3},{"addonId":235577,"type":2},{"addonId":309927,"type":2},{"addonId":513769,"type":2},{"addonId":233071,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":944465999,"invalidFingerprint":false},{"foldername":"net","fingerprint":3077487566,"invalidFingerprint":false},{"foldername":"assets","fingerprint":792390393,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1102936719,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2552684475,"invalidFingerprint":false},{"foldername":"data","fingerprint":3427607510,"invalidFingerprint":false}],"packageFingerprint":1820929664,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":422301,"fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","hashes":[{"type":1,"value":"52cd2b8ddbb79509b5b268849658097ebb8ed947"},{"type":2,"value":"8dfae39d2266f457798791c74deff8e6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4bf64d1f-7e22-4911-8b36-9c4e06f6f123","modSource":0,"addonID":245755,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,422,419,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Waystones","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":414,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/waystones","issuesURL":"https://github.com/TwelveIterations/Waystones/issues","wikiURL":"https://mods.twelveiterations.com/mc/waystones","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1107/108/256/256/638657104456838765.png","tags":[],"installedFile":{"id":7966157,"fileName":"waystones-neoforge-1.21.1-21.1.30.jar","fileDate":"2026-04-22T10:25:41.083Z","fileLength":877356,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/157/waystones-neoforge-1.21.1-21.1.30.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2418406938,"invalidFingerprint":false},{"foldername":"net","fingerprint":14642118,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4230722188,"invalidFingerprint":false},{"foldername":"data","fingerprint":3199261378,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4101434448,"invalidFingerprint":false},{"foldername":"waystones.png","fingerprint":3621685521,"invalidFingerprint":false},{"foldername":"waystones.mixins.json","fingerprint":1757013245,"invalidFingerprint":false},{"foldername":"waystones.neoforge.mixins.json","fingerprint":3074898549,"invalidFingerprint":false},{"foldername":"waila_plugins.json","fingerprint":2657459217,"invalidFingerprint":false},{"foldername":"LICENSE_Waystones","fingerprint":3262730626,"invalidFingerprint":false}],"packageFingerprint":2011091434,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":245755,"fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","hashes":[{"type":1,"value":"1321fbbe1484498b481ef05b6aef374b07fe6a23"},{"type":2,"value":"9863a0076b33e3fa7b066d9a87099580"}]},"dateInstalled":"2026-05-07T22:44:38.9149136Z","dateUpdated":"2026-05-07T22:44:38.9181841Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\waystones-neoforge-1.21.1-21.1.30.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7966157,"fileName":"waystones-neoforge-1.21.1-21.1.30.jar","fileDate":"2026-04-22T10:25:41.083Z","fileLength":877356,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/157/waystones-neoforge-1.21.1-21.1.30.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2418406938,"invalidFingerprint":false},{"foldername":"net","fingerprint":14642118,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4230722188,"invalidFingerprint":false},{"foldername":"data","fingerprint":3199261378,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4101434448,"invalidFingerprint":false},{"foldername":"waystones.png","fingerprint":3621685521,"invalidFingerprint":false},{"foldername":"waystones.mixins.json","fingerprint":1757013245,"invalidFingerprint":false},{"foldername":"waystones.neoforge.mixins.json","fingerprint":3074898549,"invalidFingerprint":false},{"foldername":"waila_plugins.json","fingerprint":2657459217,"invalidFingerprint":false},{"foldername":"LICENSE_Waystones","fingerprint":3262730626,"invalidFingerprint":false}],"packageFingerprint":2011091434,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":245755,"fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","hashes":[{"type":1,"value":"1321fbbe1484498b481ef05b6aef374b07fe6a23"},{"type":2,"value":"9863a0076b33e3fa7b066d9a87099580"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"31c6aa14-0156-48ae-8dcc-b09896fd8d6d","modSource":0,"addonID":398521,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[436,424,416],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Farmer's Delight","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","authors":[{"id":101274836,"name":"vectorwing"}],"primaryAuthor":"vectorwing","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/farmers-delight","issuesURL":"https://github.com/vectorwing/FarmersDelight/issues","wikiURL":"https://github.com/vectorwing/FarmersDelight/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/396/11/256/256/637595005615179370.png","tags":[],"installedFile":{"id":8007613,"fileName":"FarmersDelight-1.21.1-1.3.1.jar","fileDate":"2026-04-28T23:36:59.26Z","fileLength":3124506,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8007/613/FarmersDelight-1.21.1-1.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":906165429,"invalidFingerprint":false},{"foldername":"vectorwing","fingerprint":2588209880,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2450840978,"invalidFingerprint":false},{"foldername":"data","fingerprint":3387193386,"invalidFingerprint":false},{"foldername":"farmersdelight.mixins.json","fingerprint":3352035160,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1179971505,"invalidFingerprint":false}],"packageFingerprint":4238055937,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":398521,"fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","hashes":[{"type":1,"value":"49477fafca740e7ae348d934b552fb313358e8fe"},{"type":2,"value":"ca20746e84b96587248b08ae9bc7a4a1"}]},"dateInstalled":"2026-05-07T22:45:09.6199455Z","dateUpdated":"2026-05-07T22:45:09.6222045Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\FarmersDelight-1.21.1-1.3.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8007613,"fileName":"FarmersDelight-1.21.1-1.3.1.jar","fileDate":"2026-04-28T23:36:59.26Z","fileLength":3124506,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8007/613/FarmersDelight-1.21.1-1.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":906165429,"invalidFingerprint":false},{"foldername":"vectorwing","fingerprint":2588209880,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2450840978,"invalidFingerprint":false},{"foldername":"data","fingerprint":3387193386,"invalidFingerprint":false},{"foldername":"farmersdelight.mixins.json","fingerprint":3352035160,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1179971505,"invalidFingerprint":false}],"packageFingerprint":4238055937,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":398521,"fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","hashes":[{"type":1,"value":"49477fafca740e7ae348d934b552fb313358e8fe"},{"type":2,"value":"ca20746e84b96587248b08ae9bc7a4a1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9c572686-ffe7-491f-9cd0-f58d99416968","modSource":0,"addonID":248787,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,436],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AppleSkin","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","authors":[{"id":13914149,"name":"squeek502"}],"primaryAuthor":"squeek502","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/appleskin","issuesURL":"https://github.com/squeek502/AppleSkin/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/47/527/256/256/636066936394500688.png","tags":[],"installedFile":{"id":7854442,"fileName":"appleskin-neoforge-mc1.21-3.0.9.jar","fileDate":"2026-04-01T04:44:43.28Z","fileLength":75804,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/442/appleskin-neoforge-mc1.21-3.0.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1402117717,"invalidFingerprint":false},{"foldername":"squeek","fingerprint":1948646999,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3071333817,"invalidFingerprint":false},{"foldername":"appleskin.png","fingerprint":1383794256,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3550300041,"invalidFingerprint":false}],"packageFingerprint":3551532297,"gameVersion":["1.21","1.21.1","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":248787,"fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","hashes":[{"type":1,"value":"81cf0e668f991f83ac8820c386fbd6c9c3602246"},{"type":2,"value":"db5fe7619d502cf5b9bc972a955cd3bc"}]},"dateInstalled":"2026-05-07T22:35:20.55543Z","dateUpdated":"2026-05-07T22:35:20.5570005Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\appleskin-neoforge-mc1.21-3.0.9.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7854442,"fileName":"appleskin-neoforge-mc1.21-3.0.9.jar","fileDate":"2026-04-01T04:44:43.28Z","fileLength":75804,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/442/appleskin-neoforge-mc1.21-3.0.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1402117717,"invalidFingerprint":false},{"foldername":"squeek","fingerprint":1948646999,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3071333817,"invalidFingerprint":false},{"foldername":"appleskin.png","fingerprint":1383794256,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3550300041,"invalidFingerprint":false}],"packageFingerprint":3551532297,"gameVersion":["1.21","1.21.1","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":248787,"fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","hashes":[{"type":1,"value":"81cf0e668f991f83ac8820c386fbd6c9c3602246"},{"type":2,"value":"db5fe7619d502cf5b9bc972a955cd3bc"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"a85a4d49-1a04-4356-a810-bd97a79c4ec3","modSource":0,"addonID":969926,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,404,4465,393],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Beautiful Enchanted Books","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":101158803,"name":"arkadyaaa"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/beautiful-enchanted-books","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1034/7/256/256/638557790324640117.png","tags":[],"installedFile":{"id":7186843,"fileName":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","fileDate":"2025-11-04T20:34:51.733Z","fileLength":1481276,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7186/843/Beautiful%20Enchanted%20Books%20-%20MC%201.21.1%20-%208.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.png","fingerprint":3621463897,"invalidFingerprint":false},{"foldername":"assets","fingerprint":941511318,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4269189600,"invalidFingerprint":false}],"packageFingerprint":2251500048,"gameVersion":["1.21","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":969926,"fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","hashes":[{"type":1,"value":"2365ef13a4b01c11ae4341eb346a707d5500fdf8"},{"type":2,"value":"3c22aaa8f4a662c3234227957afea625"}]},"dateInstalled":"2026-05-07T21:58:46.2791336Z","dateUpdated":"2026-05-07T21:58:46.2803882Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7186843,"fileName":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","fileDate":"2025-11-04T20:34:51.733Z","fileLength":1481276,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7186/843/Beautiful%20Enchanted%20Books%20-%20MC%201.21.1%20-%208.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.png","fingerprint":3621463897,"invalidFingerprint":false},{"foldername":"assets","fingerprint":941511318,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4269189600,"invalidFingerprint":false}],"packageFingerprint":2251500048,"gameVersion":["1.21","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":969926,"fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","hashes":[{"type":1,"value":"2365ef13a4b01c11ae4341eb346a707d5500fdf8"},{"type":2,"value":"3c22aaa8f4a662c3234227957afea625"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8776050d-fdc8-4235-828d-e02f193f3a0c","modSource":0,"addonID":882539,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6814,421,424,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"},{"id":108329762,"name":"Skatric_"}],"primaryAuthor":"Lupin","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loading-backgrounds","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/982/463/256/256/638490256256247666.png","tags":[],"installedFile":{"id":6843634,"fileName":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","fileDate":"2025-08-03T17:17:35.27Z","fileLength":173392,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6843/634/loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3035020781,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3048128871,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-icon.png","fingerprint":1658491222,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-mixins.json","fingerprint":3354045684,"invalidFingerprint":false},{"foldername":"lupin-loadingbackgrounds-common-1.20.2-common-refmap.json","fingerprint":2995555857,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2499582814,"invalidFingerprint":false}],"packageFingerprint":1461452846,"gameVersion":["1.20.2","1.21","1.20.5","NeoForge","1.20.3","1.20.6","1.20.4","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882539,"fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","hashes":[{"type":1,"value":"4a84d25201376f369045e4bec5263c7f0666b457"},{"type":2,"value":"de2b469a6bc78a5c27b435d16f464949"}]},"dateInstalled":"2026-05-07T21:58:34.2411747Z","dateUpdated":"2026-05-07T21:58:34.2425137Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6843634,"fileName":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","fileDate":"2025-08-03T17:17:35.27Z","fileLength":173392,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6843/634/loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3035020781,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3048128871,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-icon.png","fingerprint":1658491222,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-mixins.json","fingerprint":3354045684,"invalidFingerprint":false},{"foldername":"lupin-loadingbackgrounds-common-1.20.2-common-refmap.json","fingerprint":2995555857,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2499582814,"invalidFingerprint":false}],"packageFingerprint":1461452846,"gameVersion":["1.20.2","1.21","1.20.5","NeoForge","1.20.3","1.20.6","1.20.4","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882539,"fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","hashes":[{"type":1,"value":"4a84d25201376f369045e4bec5263c7f0666b457"},{"type":2,"value":"de2b469a6bc78a5c27b435d16f464949"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"60f000a4-8192-4db9-8f18-5196b8c227b7","modSource":0,"addonID":233019,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AI Improvements","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","authors":[{"id":7270863,"name":"QueenOfMissiles"}],"primaryAuthor":"QueenOfMissiles","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ai-improvements","issuesURL":"https://github.com/BuiltBrokenModding/AI-Improvements/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/21/699/256/256/635731173265581096.png","tags":[],"installedFile":{"id":5426792,"fileName":"AI-Improvements-1.21-0.5.3.jar","fileDate":"2024-06-14T06:55:01.61Z","fileLength":28984,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5426/792/AI-Improvements-1.21-0.5.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1822189550,"invalidFingerprint":false},{"foldername":"com","fingerprint":3430159950,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1560577833,"invalidFingerprint":false}],"packageFingerprint":3163557722,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":233019,"fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","hashes":[{"type":1,"value":"b4a8e11384454bcc341043b251db7fb5afdfdf45"},{"type":2,"value":"fd80ae9f154ac230e60fb138f9b5453f"}]},"dateInstalled":"2026-05-07T21:58:04.1076106Z","dateUpdated":"2026-05-07T21:58:04.1087471Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\AI-Improvements-1.21-0.5.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5426792,"fileName":"AI-Improvements-1.21-0.5.3.jar","fileDate":"2024-06-14T06:55:01.61Z","fileLength":28984,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5426/792/AI-Improvements-1.21-0.5.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1822189550,"invalidFingerprint":false},{"foldername":"com","fingerprint":3430159950,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1560577833,"invalidFingerprint":false}],"packageFingerprint":3163557722,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":233019,"fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","hashes":[{"type":1,"value":"b4a8e11384454bcc341043b251db7fb5afdfdf45"},{"type":2,"value":"fd80ae9f154ac230e60fb138f9b5453f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"03b7e0bd-80be-46be-95aa-3b73c0d83c88","modSource":0,"addonID":459701,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,423,5191,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Catalogue","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","authors":[{"id":7244595,"name":"MrCrayfish"}],"primaryAuthor":"MrCrayfish","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/catalogue","issuesURL":"https://github.com/MrCrayfish/Catalogue/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/871/330/256/256/638288815001830113.png","tags":[],"installedFile":{"id":6926815,"fileName":"catalogue-neoforge-1.21.1-1.11.2.jar","fileDate":"2025-08-25T14:04:06.81Z","fileLength":302750,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/815/catalogue-neoforge-1.21.1-1.11.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":457570,"type":2}],"isAvailable":true,"modules":[{"foldername":"LICENSE_catalogue","fingerprint":2228520401,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3157043706,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3435018633,"invalidFingerprint":false},{"foldername":"com","fingerprint":2403037888,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":817107357,"invalidFingerprint":false}],"packageFingerprint":3329807613,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":459701,"fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","hashes":[{"type":1,"value":"6d67f855c20bc6392763cfb22e1152da4e8015b4"},{"type":2,"value":"cc87e5716eb52398b2c46e4032126de4"}]},"dateInstalled":"2026-05-07T21:58:36.0434778Z","dateUpdated":"2026-05-07T21:58:36.0448444Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\catalogue-neoforge-1.21.1-1.11.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6926815,"fileName":"catalogue-neoforge-1.21.1-1.11.2.jar","fileDate":"2025-08-25T14:04:06.81Z","fileLength":302750,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/815/catalogue-neoforge-1.21.1-1.11.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":457570,"type":2}],"isAvailable":true,"modules":[{"foldername":"LICENSE_catalogue","fingerprint":2228520401,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3157043706,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3435018633,"invalidFingerprint":false},{"foldername":"com","fingerprint":2403037888,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":817107357,"invalidFingerprint":false}],"packageFingerprint":3329807613,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":459701,"fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","hashes":[{"type":1,"value":"6d67f855c20bc6392763cfb22e1152da4e8015b4"},{"type":2,"value":"cc87e5716eb52398b2c46e4032126de4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9d02c643-5f4f-4ad0-ae2a-757688a06a4d","modSource":0,"addonID":1289099,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Gems Realm)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","authors":[{"id":12753167,"name":"xelbayria"}],"primaryAuthor":"xelbayria","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/gems-realm","issuesURL":"https://github.com/Xelbayria/GemsRealm/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1320/59/256/256/638858307611587571_animated.gif","tags":[],"installedFile":{"id":8020040,"fileName":"gemsrealm-1.21-2.11.3-neoforge.jar","fileDate":"2026-05-01T08:22:58.097Z","fileLength":872536,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8020/40/gemsrealm-1.21-2.11.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":860325,"type":2},{"addonId":453925,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":846508,"type":2},{"addonId":628539,"type":3},{"addonId":1310308,"type":2},{"addonId":610032,"type":2},{"addonId":351725,"type":2},{"addonId":363569,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1237135732,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2319941563,"invalidFingerprint":false},{"foldername":"architectury_inject_gemsrealm_common_4c4400bb4b1e4c5fa00fc9adf57c0b57_f2ff59cb25e56c2daec52ba02a5830ce884d4301be3a88de3b8c2fbf426568cdgemsrealm1212113devjar","fingerprint":1200949374,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1840774418,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":2062508550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":60683870,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1289099,"fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","hashes":[{"type":1,"value":"f5103b91488597ccc856aa85285f9ec6958f34bc"},{"type":2,"value":"5017cc8ea580a21ce97a7c41101fc2e7"}]},"dateInstalled":"2026-05-07T23:01:12.5446519Z","dateUpdated":"2026-05-07T23:01:12.5466407Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\gemsrealm-1.21-2.11.3-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8020040,"fileName":"gemsrealm-1.21-2.11.3-neoforge.jar","fileDate":"2026-05-01T08:22:58.097Z","fileLength":872536,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8020/40/gemsrealm-1.21-2.11.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":860325,"type":2},{"addonId":453925,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":846508,"type":2},{"addonId":628539,"type":3},{"addonId":1310308,"type":2},{"addonId":610032,"type":2},{"addonId":351725,"type":2},{"addonId":363569,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1237135732,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2319941563,"invalidFingerprint":false},{"foldername":"architectury_inject_gemsrealm_common_4c4400bb4b1e4c5fa00fc9adf57c0b57_f2ff59cb25e56c2daec52ba02a5830ce884d4301be3a88de3b8c2fbf426568cdgemsrealm1212113devjar","fingerprint":1200949374,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1840774418,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":2062508550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":60683870,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1289099,"fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","hashes":[{"type":1,"value":"f5103b91488597ccc856aa85285f9ec6958f34bc"},{"type":2,"value":"5017cc8ea580a21ce97a7c41101fc2e7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9117b92d-0d1e-457a-bc49-b499a18872fd","modSource":0,"addonID":548115,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,4558,5191,412],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Alternate Current","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","authors":[{"id":101963199,"name":"SpaceWalkerRS"}],"primaryAuthor":"SpaceWalkerRS","primaryCategoryId":4558,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alternate-current","issuesURL":"https://github.com/SpaceWalkerRS/alternate-current/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/456/903/256/256/637728514120819434.png","tags":[],"installedFile":{"id":5665477,"fileName":"alternate_current-mc1.21-1.9.0.jar","fileDate":"2024-08-26T15:08:51.89Z","fileLength":50425,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5665/477/alternate_current-mc1.21-1.9.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3580729026,"invalidFingerprint":false},{"foldername":"alternate","fingerprint":1771629927,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1819287746,"invalidFingerprint":false},{"foldername":"alternate-current.mixins.json","fingerprint":3359494202,"invalidFingerprint":false}],"packageFingerprint":4040730689,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":548115,"fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","hashes":[{"type":1,"value":"1201c14362f2bad7062d315f8a9b26afbabd2c9c"},{"type":2,"value":"27530bb4fcd327476406d6e3caf94523"}]},"dateInstalled":"2026-05-07T21:58:47.6913027Z","dateUpdated":"2026-05-07T21:58:47.692377Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alternate_current-mc1.21-1.9.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5665477,"fileName":"alternate_current-mc1.21-1.9.0.jar","fileDate":"2024-08-26T15:08:51.89Z","fileLength":50425,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5665/477/alternate_current-mc1.21-1.9.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3580729026,"invalidFingerprint":false},{"foldername":"alternate","fingerprint":1771629927,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1819287746,"invalidFingerprint":false},{"foldername":"alternate-current.mixins.json","fingerprint":3359494202,"invalidFingerprint":false}],"packageFingerprint":4040730689,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":548115,"fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","hashes":[{"type":1,"value":"1201c14362f2bad7062d315f8a9b26afbabd2c9c"},{"type":2,"value":"27530bb4fcd327476406d6e3caf94523"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f84cb194-d746-4b16-b3c0-b2c4322310bb","modSource":0,"addonID":511319,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Reese's Sodium Options","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","authors":[{"id":101292193,"name":"FlashyReese"}],"primaryAuthor":"FlashyReese","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/reeses-sodium-options","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/414/599/256/256/637636962431399112.png","tags":[],"installedFile":{"id":6091021,"fileName":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","fileDate":"2025-01-15T20:35:53.37Z","fileLength":78451,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6091/21/reeses-sodium-options-neoforge-1.8.3%2bmc1.21.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":447673,"type":2},{"addonId":455508,"type":2},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1745742539,"invalidFingerprint":false},{"foldername":"me","fingerprint":577932017,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1671116850,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":222260298,"invalidFingerprint":false},{"foldername":"reeses-sodium-options.mixins.json","fingerprint":307738624,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":4014633969,"invalidFingerprint":false}],"packageFingerprint":3206533594,"gameVersion":["1.21","1.21.5","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":511319,"fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","hashes":[{"type":1,"value":"b03d05495be28d8cef7a34872941bb8d703d60e6"},{"type":2,"value":"f3a0d7f31993d6f34e90f816f82cbcaf"}]},"dateInstalled":"2026-05-07T21:58:45.6371147Z","dateUpdated":"2026-05-07T21:58:45.6383847Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6091021,"fileName":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","fileDate":"2025-01-15T20:35:53.37Z","fileLength":78451,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6091/21/reeses-sodium-options-neoforge-1.8.3%2bmc1.21.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":447673,"type":2},{"addonId":455508,"type":2},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1745742539,"invalidFingerprint":false},{"foldername":"me","fingerprint":577932017,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1671116850,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":222260298,"invalidFingerprint":false},{"foldername":"reeses-sodium-options.mixins.json","fingerprint":307738624,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":4014633969,"invalidFingerprint":false}],"packageFingerprint":3206533594,"gameVersion":["1.21","1.21.5","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":511319,"fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","hashes":[{"type":1,"value":"b03d05495be28d8cef7a34872941bb8d703d60e6"},{"type":2,"value":"f3a0d7f31993d6f34e90f816f82cbcaf"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"23fb3f55-390f-4c90-afb9-16311f04afc5","modSource":0,"addonID":688768,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6484,412,426,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create: Enchantment Industry","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","authors":[{"id":103651564,"name":"DragonsPlus"},{"id":101665330,"name":"MarbleGate"},{"id":102642294,"name":"RaymondBlaze"}],"primaryAuthor":"DragonsPlus","primaryCategoryId":6484,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create-enchantment-industry","issuesURL":"https://github.com/DragonsPlusMinecraft/CreateEnchantmentIndustry/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1224/199/256/256/638802282774958966.png","tags":[],"installedFile":{"id":7970748,"fileName":"create-enchantment-industry-2.3.1.jar","fileDate":"2026-04-23T05:38:15.267Z","fileLength":684729,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/748/create-enchantment-industry-2.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1216624,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":911849162,"invalidFingerprint":false},{"foldername":"plus","fingerprint":1655801640,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3754098218,"invalidFingerprint":false},{"foldername":"create_enchantment_industry.mixins.json","fingerprint":2866782084,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":833838587,"invalidFingerprint":false},{"foldername":"data","fingerprint":3417059926,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false}],"packageFingerprint":2385602194,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":688768,"fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","hashes":[{"type":1,"value":"e9a57b322459bda9905e4287d2582ad600909b11"},{"type":2,"value":"726c75329cdaa2fdfb1cb07b2f12e034"}]},"dateInstalled":"2026-05-07T22:48:47.8275882Z","dateUpdated":"2026-05-07T22:48:47.8290574Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\create-enchantment-industry-2.3.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7970748,"fileName":"create-enchantment-industry-2.3.1.jar","fileDate":"2026-04-23T05:38:15.267Z","fileLength":684729,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/748/create-enchantment-industry-2.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1216624,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":911849162,"invalidFingerprint":false},{"foldername":"plus","fingerprint":1655801640,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3754098218,"invalidFingerprint":false},{"foldername":"create_enchantment_industry.mixins.json","fingerprint":2866782084,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":833838587,"invalidFingerprint":false},{"foldername":"data","fingerprint":3417059926,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false}],"packageFingerprint":2385602194,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":688768,"fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","hashes":[{"type":1,"value":"e9a57b322459bda9905e4287d2582ad600909b11"},{"type":2,"value":"726c75329cdaa2fdfb1cb07b2f12e034"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3be4275e-ccaa-4243-be83-7d01bf345e41","modSource":0,"addonID":1109361,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,403,404,393,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Animals","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Animals - 4.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-animals","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1099/937/256/256/638647010872522095.png","tags":[],"installedFile":{"id":7890871,"fileName":"Realistic Animals - 4.0.zip","fileDate":"2026-04-07T17:05:26.007Z","fileLength":364263,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/871/Realistic%20Animals%20-%204.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1620957069,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3479019965,"invalidFingerprint":false}],"packageFingerprint":313675047,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109361,"fileNameOnDisk":"Realistic Animals - 4.0.zip","hashes":[{"type":1,"value":"1244bd6127251904f010d917dd143b0a0d4f8066"},{"type":2,"value":"425f6c838dc74e13c35141c7ce4dbad1"}]},"dateInstalled":"2026-05-07T21:58:44.0032835Z","dateUpdated":"2026-05-07T21:58:44.0049813Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Animals - 4.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7890871,"fileName":"Realistic Animals - 4.0.zip","fileDate":"2026-04-07T17:05:26.007Z","fileLength":364263,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/871/Realistic%20Animals%20-%204.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1620957069,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3479019965,"invalidFingerprint":false}],"packageFingerprint":313675047,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109361,"fileNameOnDisk":"Realistic Animals - 4.0.zip","hashes":[{"type":1,"value":"1244bd6127251904f010d917dd143b0a0d4f8066"},{"type":2,"value":"425f6c838dc74e13c35141c7ce4dbad1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"88285737-628e-4af3-bbed-4d7f7a421176","modSource":0,"addonID":551586,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,409,422,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"L_Ender 's Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","authors":[{"id":102522496,"name":"mcl_ender"}],"primaryAuthor":"mcl_ender","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lendercataclysm","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/460/870/256/256/637739722679428303.png","tags":[],"installedFile":{"id":7908490,"fileName":"L_Ender's Cataclysm 1.21.1-3.27.jar","fileDate":"2026-04-11T04:44:09.66Z","fileLength":73346519,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7908/490/L_Ender%27s%20Cataclysm%201.21.1-3.27.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":1001614,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2561796072,"invalidFingerprint":false},{"foldername":"com","fingerprint":1489347563,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1941882570,"invalidFingerprint":false},{"foldername":"cataclysm.mixins.json","fingerprint":1376117912,"invalidFingerprint":false},{"foldername":"data","fingerprint":2168082264,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1286228978,"invalidFingerprint":false}],"packageFingerprint":2946987299,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551586,"fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","hashes":[{"type":1,"value":"f34a5e3994fff1953c631b87b3dfa89ed62c26dc"},{"type":2,"value":"2d2a331b023c5569d2a7793a46b8ccb6"}]},"dateInstalled":"2026-05-07T22:51:48.2490835Z","dateUpdated":"2026-05-07T22:51:48.2658186Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\L_Ender's Cataclysm 1.21.1-3.27.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7908490,"fileName":"L_Ender's Cataclysm 1.21.1-3.27.jar","fileDate":"2026-04-11T04:44:09.66Z","fileLength":73346519,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7908/490/L_Ender%27s%20Cataclysm%201.21.1-3.27.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":1001614,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2561796072,"invalidFingerprint":false},{"foldername":"com","fingerprint":1489347563,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1941882570,"invalidFingerprint":false},{"foldername":"cataclysm.mixins.json","fingerprint":1376117912,"invalidFingerprint":false},{"foldername":"data","fingerprint":2168082264,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1286228978,"invalidFingerprint":false}],"packageFingerprint":2946987299,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551586,"fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","hashes":[{"type":1,"value":"f34a5e3994fff1953c631b87b3dfa89ed62c26dc"},{"type":2,"value":"2d2a331b023c5569d2a7793a46b8ccb6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"531f3de7-e387-433f-afa3-73ab11488469","modSource":0,"addonID":485681,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[410,435,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Chunky (Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","authors":[{"id":43770124,"name":"pop4959"}],"primaryAuthor":"pop4959","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator-forge","issuesURL":"https://github.com/pop4959/Chunky/issues","wikiURL":"https://github.com/pop4959/Chunky/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/385/932/256/256/637574074357834213.png","tags":[],"installedFile":{"id":6383261,"fileName":"Chunky-NeoForge-1.4.23.jar","fileDate":"2025-04-04T06:52:00.777Z","fileLength":340572,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6383/261/Chunky-NeoForge-1.4.23.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3902992925,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":455959045,"invalidFingerprint":false},{"foldername":"lang","fingerprint":1106760030,"invalidFingerprint":false},{"foldername":"org","fingerprint":4219575363,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3497244563,"invalidFingerprint":false},{"foldername":"version.properties","fingerprint":3786076894,"invalidFingerprint":false}],"packageFingerprint":233801764,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":485681,"fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","hashes":[{"type":1,"value":"ab0c74743a653020fe2dfc4986b43e893947f3e9"},{"type":2,"value":"c461f3132c48d7bc71a9f2b307273a88"}]},"dateInstalled":"2026-05-07T21:58:17.8223864Z","dateUpdated":"2026-05-07T21:58:17.8235759Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Chunky-NeoForge-1.4.23.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6383261,"fileName":"Chunky-NeoForge-1.4.23.jar","fileDate":"2025-04-04T06:52:00.777Z","fileLength":340572,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6383/261/Chunky-NeoForge-1.4.23.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3902992925,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":455959045,"invalidFingerprint":false},{"foldername":"lang","fingerprint":1106760030,"invalidFingerprint":false},{"foldername":"org","fingerprint":4219575363,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3497244563,"invalidFingerprint":false},{"foldername":"version.properties","fingerprint":3786076894,"invalidFingerprint":false}],"packageFingerprint":233801764,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":485681,"fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","hashes":[{"type":1,"value":"ab0c74743a653020fe2dfc4986b43e893947f3e9"},{"type":2,"value":"c461f3132c48d7bc71a9f2b307273a88"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2f9f3341-228e-472f-87b8-cb52c5f4cef8","modSource":0,"addonID":283644,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Placebo","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","authors":[{"id":10368195,"name":"Shadows_of_Fire"}],"primaryAuthor":"Shadows_of_Fire","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/placebo","issuesURL":"https://github.com/Shadows-of-Fire/Placebo/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/134/260/256/256/636490526725752670.png","tags":[],"installedFile":{"id":6926281,"fileName":"Placebo-1.21.1-9.9.1.jar","fileDate":"2025-08-25T10:59:44.943Z","fileLength":324056,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/281/Placebo-1.21.1-9.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1393014458,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1358407876,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3944127840,"invalidFingerprint":false},{"foldername":"placebo.mixins.json","fingerprint":2415682722,"invalidFingerprint":false}],"packageFingerprint":2914591491,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":283644,"fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","hashes":[{"type":1,"value":"1c2b8c38066d6f36209c5dadee25c184ef65202e"},{"type":2,"value":"cc725fc5406d3af893484cfbba06f6ed"}]},"dateInstalled":"2026-05-07T21:58:43.1184776Z","dateUpdated":"2026-05-07T21:58:43.1197119Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Placebo-1.21.1-9.9.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6926281,"fileName":"Placebo-1.21.1-9.9.1.jar","fileDate":"2025-08-25T10:59:44.943Z","fileLength":324056,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/281/Placebo-1.21.1-9.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1393014458,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1358407876,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3944127840,"invalidFingerprint":false},{"foldername":"placebo.mixins.json","fingerprint":2415682722,"invalidFingerprint":false}],"packageFingerprint":2914591491,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":283644,"fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","hashes":[{"type":1,"value":"1c2b8c38066d6f36209c5dadee25c184ef65202e"},{"type":2,"value":"cc725fc5406d3af893484cfbba06f6ed"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b044f96d-c9f4-4bb8-b32f-722dda834723","modSource":0,"addonID":639842,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,5191,421,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better Combat [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","authors":[{"id":103343666,"name":"daedelus_dev"}],"primaryAuthor":"daedelus_dev","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/better-combat-by-daedelus","issuesURL":"https://github.com/ZsoltMolnarrr/BetterCombat/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/566/413/256/256/637925434672465483.png","tags":[],"installedFile":{"id":7721843,"fileName":"bettercombat-neoforge-2.3.2+1.21.1.jar","fileDate":"2026-03-07T00:07:02.223Z","fileLength":1041845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7721/843/bettercombat-neoforge-2.3.2%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3},{"addonId":658587,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":369848084,"invalidFingerprint":false},{"foldername":"architectury_inject_bettercombat_common_9d2909d1bdc740dc9068c5095b3e016f_b9bc9fc20502f9be054ebf38606fc1f0e67f2294ec4967cb549764635c89d610bettercombatcommon2321211devjar","fingerprint":1588863865,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2801934907,"invalidFingerprint":false},{"foldername":"bettercombat-common-common-refmap.json","fingerprint":1121318103,"invalidFingerprint":false},{"foldername":"bettercombat.mixins.json","fingerprint":532072833,"invalidFingerprint":false},{"foldername":"data","fingerprint":3859456340,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2872503917,"invalidFingerprint":false},{"foldername":"net","fingerprint":1996889433,"invalidFingerprint":false}],"packageFingerprint":4062790500,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":639842,"fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","hashes":[{"type":1,"value":"f752fbbf81027948ef4ab0fc0066260ccf574179"},{"type":2,"value":"c474bddc1a32e216eb6b0986b8a1eb51"}]},"dateInstalled":"2026-05-07T22:48:14.1675365Z","dateUpdated":"2026-05-07T22:48:14.1690836Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\bettercombat-neoforge-2.3.2+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7721843,"fileName":"bettercombat-neoforge-2.3.2+1.21.1.jar","fileDate":"2026-03-07T00:07:02.223Z","fileLength":1041845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7721/843/bettercombat-neoforge-2.3.2%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3},{"addonId":658587,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":369848084,"invalidFingerprint":false},{"foldername":"architectury_inject_bettercombat_common_9d2909d1bdc740dc9068c5095b3e016f_b9bc9fc20502f9be054ebf38606fc1f0e67f2294ec4967cb549764635c89d610bettercombatcommon2321211devjar","fingerprint":1588863865,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2801934907,"invalidFingerprint":false},{"foldername":"bettercombat-common-common-refmap.json","fingerprint":1121318103,"invalidFingerprint":false},{"foldername":"bettercombat.mixins.json","fingerprint":532072833,"invalidFingerprint":false},{"foldername":"data","fingerprint":3859456340,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2872503917,"invalidFingerprint":false},{"foldername":"net","fingerprint":1996889433,"invalidFingerprint":false}],"packageFingerprint":4062790500,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":639842,"fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","hashes":[{"type":1,"value":"f752fbbf81027948ef4ab0fc0066260ccf574179"},{"type":2,"value":"c474bddc1a32e216eb6b0986b8a1eb51"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2fe50a9c-af8c-47a3-99de-438bcd66e58a","modSource":0,"addonID":951499,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast Async World Save[Forge/Neo/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-async-world-save-forge-fabric","issuesURL":"https://github.com/someaddons/FastAsyncWorldSave/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/920/973/256/256/638384996050010285.png","tags":[],"installedFile":{"id":6935204,"fileName":"fastasyncworldsave-1.21-2.6.jar","fileDate":"2025-08-27T19:36:35.293Z","fileLength":11050,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6935/204/fastasyncworldsave-1.21-2.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4202243576,"invalidFingerprint":false},{"foldername":"com","fingerprint":2002104558,"invalidFingerprint":false},{"foldername":"fastasyncworldsave.mixins.json","fingerprint":2089655399,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3185219565,"invalidFingerprint":false}],"packageFingerprint":1703092068,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":951499,"fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","hashes":[{"type":1,"value":"87e019715314631f2c8288cf7c73a52a61b2d61b"},{"type":2,"value":"4df9371b5466dfbb56c375f4963f2845"}]},"dateInstalled":"2026-05-07T21:58:19.0103569Z","dateUpdated":"2026-05-07T21:58:19.0118457Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fastasyncworldsave-1.21-2.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6935204,"fileName":"fastasyncworldsave-1.21-2.6.jar","fileDate":"2025-08-27T19:36:35.293Z","fileLength":11050,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6935/204/fastasyncworldsave-1.21-2.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4202243576,"invalidFingerprint":false},{"foldername":"com","fingerprint":2002104558,"invalidFingerprint":false},{"foldername":"fastasyncworldsave.mixins.json","fingerprint":2089655399,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3185219565,"invalidFingerprint":false}],"packageFingerprint":1703092068,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":951499,"fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","hashes":[{"type":1,"value":"87e019715314631f2c8288cf7c73a52a61b2d61b"},{"type":2,"value":"4df9371b5466dfbb56c375f4963f2845"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null}],"installedGamePrerequisites":[],"wasNameManuallyChanged":false,"wasGameVersionTypeIdManuallyChanged":false} \ No newline at end of file +{"baseModLoader":{"forgeVersion":"21.1.226","name":"neoforge-21.1.226","type":6,"downloadUrl":"","filename":"neoforge-21.1.226.jar","installMethod":6,"latest":false,"recommended":false,"versionJson":"{\"assetIndex\":null,\"id\":\"neoforge-21.1.226\",\"time\":\"2026-04-11T13:05:21.8144125\",\"releaseTime\":\"2026-04-11T13:05:21.8144125\",\"type\":\"release\",\"minecraftArguments\":null,\"minimumLauncherVersion\":0,\"assets\":null,\"inheritsFrom\":\"1.21.1\",\"jar\":null,\"logging\":null,\"libraries\":[{\"name\":\"net.neoforged.fancymodloader:earlydisplay:4.0.42\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"sha1\":\"46555dbfff14e9e052f1f693aed14d542a74e111\",\"size\":261718},\"classifiers\":null}},{\"name\":\"net.neoforged.fancymodloader:loader:4.0.42\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"sha1\":\"76e15f98bf676fb44b36c5e776f52a55581ec43a\",\"size\":504899},\"classifiers\":null}},{\"name\":\"net.neoforged.accesstransformers:at-modlauncher:10.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"sha1\":\"5aba50202aceead086bc09fbc2751c9f05cb4890\",\"size\":2347},\"classifiers\":null}},{\"name\":\"net.neoforged:accesstransformers:10.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"sha1\":\"fd83b5725f76eae9115e9355fa1c456a6a441400\",\"size\":67234},\"classifiers\":null}},{\"name\":\"net.neoforged:bus:8.0.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"sha1\":\"5b2d33285ab5d1554e9798ad98c40d6ea3868bd5\",\"size\":30340},\"classifiers\":null}},{\"name\":\"net.neoforged:coremods:7.0.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"sha1\":\"09147e6f638b4272b3bd5fc8f92ad37802512c6c\",\"size\":22659},\"classifiers\":null}},{\"name\":\"cpw.mods:modlauncher:11.0.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"sha1\":\"b8f0d49294f733fdb6173931b263553e943dc950\",\"size\":116486},\"classifiers\":null}},{\"name\":\"net.neoforged:mergetool:2.0.0:api\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"sha1\":\"52fe1949be64e3303aabaaa21e315f551db9c9f4\",\"size\":2550},\"classifiers\":null}},{\"name\":\"com.electronwill.night-config:toml:3.8.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"sha1\":\"90b2fd6efcb4a7d5b9810cf78f9d824994d717f2\",\"size\":39516},\"classifiers\":null}},{\"name\":\"com.electronwill.night-config:core:3.8.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"sha1\":\"b442a95f09e349927f5a945ecb594455870fcf4f\",\"size\":382911},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarSelector:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"sha1\":\"fb3cc7a58af22ad2880adb98af6d518128c47dae\",\"size\":17168},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarMetadata:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"sha1\":\"f8da03683dc81694556dc3e177c5e3bb77ae6fcb\",\"size\":15648},\"classifiers\":null}},{\"name\":\"org.apache.maven:maven-artifact:3.8.5\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"sha1\":\"4433f50c07debefaed0553bd0068f4f48d449313\",\"size\":58077},\"classifiers\":null}},{\"name\":\"net.jodah:typetools:0.6.3\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"sha1\":\"a01aaa6ddaea9ec07ec4f209487b7a46a526283a\",\"size\":18281},\"classifiers\":null}},{\"name\":\"net.minecrell:terminalconsoleappender:1.3.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"sha1\":\"b562e9bb61235c9520e26282cdee71f8f802d1fc\",\"size\":16949},\"classifiers\":null}},{\"name\":\"net.fabricmc:sponge-mixin:0.15.2+mixin.0.8.7\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"sha1\":\"2af2f021d8e02a0220dc27a7a72b4666d66d44ca\",\"size\":1494751},\"classifiers\":null}},{\"name\":\"org.openjdk.nashorn:nashorn-core:15.4\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"sha1\":\"f67f5ffaa5f5130cf6fb9b133da00c7df3b532a5\",\"size\":2167292},\"classifiers\":null}},{\"name\":\"org.apache.commons:commons-lang3:3.14.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"sha1\":\"1ed471194b02f2c6cb734a0cd6f6f107c673afae\",\"size\":657952},\"classifiers\":null}},{\"name\":\"cpw.mods:bootstraplauncher:2.0.2\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"sha1\":\"1a2d076cbc33b0520cbacd591224427b2a20047d\",\"size\":11116},\"classifiers\":null}},{\"name\":\"cpw.mods:securejarhandler:3.0.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"sha1\":\"c0ef95cecd8699a0449053ac7d9c160748d902cd\",\"size\":103765},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-commons:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"sha1\":\"36e4d212970388e5bd2c5180292012502df461bb\",\"size\":73498},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-util:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"sha1\":\"395f1c1f035258511f27bc9b2583d76e4b143f59\",\"size\":94559},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-analysis:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"sha1\":\"b9747a320844b6cb1eacd90d8ecfd260a16c01d3\",\"size\":35151},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm-tree:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"sha1\":\"018419ca5b77a2f81097c741e7872e6ab8d2f40d\",\"size\":51934},\"classifiers\":null}},{\"name\":\"org.ow2.asm:asm:9.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/ow2/asm/asm/9.8/asm-9.8.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/ow2/asm/asm/9.8/asm-9.8.jar\",\"sha1\":\"dc19ecb3f7889b7860697215cae99c0f9b6f6b4b\",\"size\":126113},\"classifiers\":null}},{\"name\":\"net.neoforged:JarJarFileSystems:0.4.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"sha1\":\"78f59f89defcd032ed788b151ca6a0d40ace796a\",\"size\":31807},\"classifiers\":null}},{\"name\":\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"url\":\"https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"sha1\":\"4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\",\"size\":78146},\"classifiers\":null}},{\"name\":\"org.slf4j:slf4j-api:2.0.9\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"url\":\"https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"sha1\":\"7cf2726fdcfbc8610f9a71fb3ed639871f315340\",\"size\":64579},\"classifiers\":null}},{\"name\":\"org.antlr:antlr4-runtime:4.13.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"sha1\":\"17125bae1d965624e265ef49552f6465a2bfa307\",\"size\":326305},\"classifiers\":null}},{\"name\":\"com.mojang:logging:1.2.7\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"url\":\"https://libraries.minecraft.net/com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"sha1\":\"24cb95ffb0e3433fd6e844c04e68009e504ca1c0\",\"size\":15343},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-slf4j2-impl:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"sha1\":\"d7e6693c2606cb7e7335047d7bb96dec52db5665\",\"size\":27364},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-core:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"sha1\":\"7183a25510a02ad00cc6a95d3b3d2a7d3c5a8dc4\",\"size\":1900022},\"classifiers\":null}},{\"name\":\"org.apache.logging.log4j:log4j-api:2.22.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"sha1\":\"bea6fede6328fabafd7e68363161a7ea6605abd1\",\"size\":335001},\"classifiers\":null}},{\"name\":\"org.jline:jline-reader:3.20.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"sha1\":\"8f15415b022a25b473e8e16c28ae913186ffb9c4\",\"size\":171052},\"classifiers\":null}},{\"name\":\"org.jline:jline-terminal:3.20.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"sha1\":\"d0ddcc708ddf527a3454c941b7b9225cc83a15ff\",\"size\":228481},\"classifiers\":null}},{\"name\":\"commons-io:commons-io:2.15.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"url\":\"https://libraries.minecraft.net/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"sha1\":\"f11560da189ab563a5c8e351941415430e9304ea\",\"size\":501218},\"classifiers\":null}},{\"name\":\"net.minecraftforge:srgutils:0.4.15\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"sha1\":\"ca408b131759478f164e010fae0d73997e125fb5\",\"size\":69393},\"classifiers\":null}},{\"name\":\"com.google.guava:guava:32.1.2-jre\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"sha1\":\"5e64ec7e056456bef3a4bc4c6fdaef71e8ab6318\",\"size\":3041591},\"classifiers\":null}},{\"name\":\"com.google.guava:failureaccess:1.0.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"sha1\":\"1dcf1de382a0bf95a3d8b0849546c88bac1292c9\",\"size\":4617},\"classifiers\":null}},{\"name\":\"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"url\":\"https://libraries.minecraft.net/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"sha1\":\"b421526c5f297295adef1c886e5246c39d4ac629\",\"size\":2199},\"classifiers\":null}},{\"name\":\"com.google.code.findbugs:jsr305:3.0.2\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"url\":\"https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"sha1\":\"25ea2e8b0c338a877313bd4672d3fe056ea78f0d\",\"size\":19936},\"classifiers\":null}},{\"name\":\"org.checkerframework:checker-qual:3.33.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"url\":\"https://libraries.minecraft.net/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"sha1\":\"de2b60b62da487644fc11f734e73c8b0b431238f\",\"size\":223979},\"classifiers\":null}},{\"name\":\"com.google.errorprone:error_prone_annotations:2.18.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"url\":\"https://libraries.minecraft.net/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"sha1\":\"89b684257096f548fa39a7df9fdaa409d4d4df91\",\"size\":16017},\"classifiers\":null}},{\"name\":\"com.google.j2objc:j2objc-annotations:2.8\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"url\":\"https://libraries.minecraft.net/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"sha1\":\"c85270e307e7b822f1086b93689124b89768e273\",\"size\":9301},\"classifiers\":null}},{\"name\":\"com.google.code.gson:gson:2.10.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"sha1\":\"b3add478d4382b78ea20b1671390a858002feb6c\",\"size\":283367},\"classifiers\":null}},{\"name\":\"org.codehaus.plexus:plexus-utils:3.3.0\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"sha1\":\"cf43b5391de623b36fe066a21127baef82c64022\",\"size\":263253},\"classifiers\":null}},{\"name\":\"com.machinezoo.noexception:noexception:1.7.1\",\"url\":null,\"serverreq\":null,\"clientreq\":null,\"natives\":null,\"extract\":null,\"rules\":null,\"downloads\":{\"artifact\":{\"path\":\"com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"url\":\"https://neoforged.forgecdn.net/releases/com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"sha1\":\"b65330c98e38a1f915fa54a6e5eca496505e3f0a\",\"size\":250861},\"classifiers\":null}}],\"mainClass\":\"cpw.mods.bootstraplauncher.BootstrapLauncher\",\"arguments\":{\"game\":[\"--fml.neoForgeVersion\",\"21.1.226\",\"--fml.fmlVersion\",\"4.0.42\",\"--fml.mcVersion\",\"1.21.1\",\"--fml.neoFormVersion\",\"20240808.144430\",\"--launchTarget\",\"forgeclient\"],\"jvm\":[\"-Djava.net.preferIPv6Addresses=system\",\"-DignoreList=client-extra,${version_name}.jar\",\"-DlibraryDirectory=${library_directory}\",\"-p\",\"${library_directory}/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar${classpath_separator}${library_directory}/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar${classpath_separator}${library_directory}/org/ow2/asm/asm/9.8/asm-9.8.jar${classpath_separator}${library_directory}/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"--add-modules\",\"ALL-MODULE-PATH\",\"--add-opens\",\"java.base/java.util.jar=cpw.mods.securejarhandler\",\"--add-opens\",\"java.base/java.lang.invoke=cpw.mods.securejarhandler\",\"--add-exports\",\"java.base/sun.security.util=cpw.mods.securejarhandler\",\"--add-exports\",\"jdk.naming.dns/com.sun.jndi.dns=java.naming\"]}}","librariesInstallLocation":"{0}//libraries//net//neoforged//neoforge//21.1.226","minecraftVersion":"1.21.1","installProfileJson":"{\"spec\":1,\"profile\":\"NeoForge\",\"version\":\"neoforge-21.1.226\",\"minecraft\":\"1.21.1\",\"json\":\"/version.json\",\"logo\":\"/big_logo.png\",\"welcome\":\"Welcome to the simple NeoForge installer\",\"path\":\"net.neoforged:neoforge:21.1.226\",\"data\":{\"MAPPINGS\":{\"client\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings@txt]\",\"server\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings@txt]\"},\"MOJMAPS\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:mappings@txt]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:mappings@txt]\"},\"MERGED_MAPPINGS\":{\"client\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings-merged@txt]\",\"server\":\"[net.neoforged:neoform:1.21.1-20240808.144430:mappings-merged@txt]\"},\"BINPATCH\":{\"client\":\"/data/client.lzma\",\"server\":\"/data/server.lzma\"},\"MC_UNPACKED\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:unpacked]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:unpacked]\"},\"MC_SLIM\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:slim]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:slim]\"},\"MC_EXTRA\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:extra]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:extra]\"},\"MC_SRG\":{\"client\":\"[net.minecraft:client:1.21.1-20240808.144430:srg]\",\"server\":\"[net.minecraft:server:1.21.1-20240808.144430:srg]\"},\"PATCHED\":{\"client\":\"[net.neoforged:neoforge:21.1.226:client]\",\"server\":\"[net.neoforged:neoforge:21.1.226:server]\"},\"MCP_VERSION\":{\"client\":\"'1.21.1-20240808.144430'\",\"server\":\"'1.21.1-20240808.144430'\"},\"SIDE\":{\"client\":\"client\",\"server\":\"server\"}},\"processors\":[{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"MCP_DATA\",\"--input\",\"[net.neoforged:neoform:1.21.1-20240808.144430@zip]\",\"--output\",\"{MAPPINGS}\",\"--key\",\"mappings\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"DOWNLOAD_MOJMAPS\",\"--version\",\"1.21.1\",\"--side\",\"{SIDE}\",\"--output\",\"{MOJMAPS}\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:installertools:2.1.2\",\"classpath\":[\"net.neoforged.installertools:installertools:2.1.2\",\"net.neoforged:srgutils:1.0.0\",\"net.md-5:SpecialSource:1.11.0\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"com.google.code.gson:gson:2.8.9\",\"de.siegmar:fastcsv:2.0.0\",\"org.ow2.asm:asm-commons:9.3\",\"net.neoforged.installertools:cli-utils:2.1.2\",\"com.google.guava:guava:20.0\",\"com.opencsv:opencsv:4.4\",\"org.ow2.asm:asm-analysis:9.3\",\"org.ow2.asm:asm-tree:9.3\",\"org.ow2.asm:asm:9.3\",\"org.apache.commons:commons-text:1.3\",\"org.apache.commons:commons-lang3:3.8.1\",\"commons-beanutils:commons-beanutils:1.9.3\",\"org.apache.commons:commons-collections4:4.2\",\"commons-logging:commons-logging:1.2\",\"commons-collections:commons-collections:3.2.2\"],\"args\":[\"--task\",\"MERGE_MAPPING\",\"--left\",\"{MAPPINGS}\",\"--right\",\"{MOJMAPS}\",\"--output\",\"{MERGED_MAPPINGS}\",\"--classes\",\"--fields\",\"--methods\",\"--reverse-right\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:jarsplitter:2.1.2\",\"classpath\":[\"net.neoforged.installertools:jarsplitter:2.1.2\",\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"net.neoforged:srgutils:1.0.0\",\"net.neoforged.installertools:cli-utils:2.1.2\"],\"args\":[\"--input\",\"{MINECRAFT_JAR}\",\"--slim\",\"{MC_SLIM}\",\"--extra\",\"{MC_EXTRA}\",\"--srg\",\"{MERGED_MAPPINGS}\"],\"sides\":[\"client\"]},{\"jar\":\"net.neoforged:AutoRenamingTool:2.0.3:all\",\"classpath\":[\"net.neoforged:AutoRenamingTool:2.0.3:all\"],\"args\":[\"--input\",\"{MC_SLIM}\",\"--output\",\"{MC_SRG}\",\"--names\",\"{MERGED_MAPPINGS}\",\"--ann-fix\",\"--ids-fix\",\"--src-fix\",\"--record-fix\"],\"sides\":null},{\"jar\":\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\",\"classpath\":[\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\"],\"args\":[\"--clean\",\"{MC_SRG}\",\"--output\",\"{PATCHED}\",\"--apply\",\"{BINPATCH}\"],\"sides\":null}],\"libraries\":[{\"name\":\"net.neoforged.fancymodloader:earlydisplay:4.0.42\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"46555dbfff14e9e052f1f693aed14d542a74e111\",\"size\":261718,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\",\"path\":\"net/neoforged/fancymodloader/earlydisplay/4.0.42/earlydisplay-4.0.42.jar\"}}},{\"name\":\"net.neoforged.fancymodloader:loader:4.0.42\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"76e15f98bf676fb44b36c5e776f52a55581ec43a\",\"size\":504899,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\",\"path\":\"net/neoforged/fancymodloader/loader/4.0.42/loader-4.0.42.jar\"}}},{\"name\":\"net.neoforged.accesstransformers:at-modlauncher:10.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5aba50202aceead086bc09fbc2751c9f05cb4890\",\"size\":2347,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\",\"path\":\"net/neoforged/accesstransformers/at-modlauncher/10.0.1/at-modlauncher-10.0.1.jar\"}}},{\"name\":\"net.neoforged:accesstransformers:10.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"fd83b5725f76eae9115e9355fa1c456a6a441400\",\"size\":67234,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\",\"path\":\"net/neoforged/accesstransformers/10.0.1/accesstransformers-10.0.1.jar\"}}},{\"name\":\"net.neoforged:bus:8.0.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5b2d33285ab5d1554e9798ad98c40d6ea3868bd5\",\"size\":30340,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/bus/8.0.5/bus-8.0.5.jar\",\"path\":\"net/neoforged/bus/8.0.5/bus-8.0.5.jar\"}}},{\"name\":\"net.neoforged:coremods:7.0.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"09147e6f638b4272b3bd5fc8f92ad37802512c6c\",\"size\":22659,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\",\"path\":\"net/neoforged/coremods/7.0.3/coremods-7.0.3.jar\"}}},{\"name\":\"cpw.mods:modlauncher:11.0.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b8f0d49294f733fdb6173931b263553e943dc950\",\"size\":116486,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\",\"path\":\"cpw/mods/modlauncher/11.0.5/modlauncher-11.0.5.jar\"}}},{\"name\":\"net.neoforged:mergetool:2.0.0:api\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"52fe1949be64e3303aabaaa21e315f551db9c9f4\",\"size\":2550,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\",\"path\":\"net/neoforged/mergetool/2.0.0/mergetool-2.0.0-api.jar\"}}},{\"name\":\"com.electronwill.night-config:toml:3.8.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"90b2fd6efcb4a7d5b9810cf78f9d824994d717f2\",\"size\":39516,\"url\":\"https://maven.neoforged.net/releases/com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\",\"path\":\"com/electronwill/night-config/toml/3.8.3/toml-3.8.3.jar\"}}},{\"name\":\"com.electronwill.night-config:core:3.8.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b442a95f09e349927f5a945ecb594455870fcf4f\",\"size\":382911,\"url\":\"https://maven.neoforged.net/releases/com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\",\"path\":\"com/electronwill/night-config/core/3.8.3/core-3.8.3.jar\"}}},{\"name\":\"net.neoforged:JarJarSelector:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"fb3cc7a58af22ad2880adb98af6d518128c47dae\",\"size\":17168,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\",\"path\":\"net/neoforged/JarJarSelector/0.4.1/JarJarSelector-0.4.1.jar\"}}},{\"name\":\"net.neoforged:JarJarMetadata:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f8da03683dc81694556dc3e177c5e3bb77ae6fcb\",\"size\":15648,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\",\"path\":\"net/neoforged/JarJarMetadata/0.4.1/JarJarMetadata-0.4.1.jar\"}}},{\"name\":\"org.apache.maven:maven-artifact:3.8.5\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4433f50c07debefaed0553bd0068f4f48d449313\",\"size\":58077,\"url\":\"https://maven.neoforged.net/releases/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\",\"path\":\"org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar\"}}},{\"name\":\"net.jodah:typetools:0.6.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"a01aaa6ddaea9ec07ec4f209487b7a46a526283a\",\"size\":18281,\"url\":\"https://maven.neoforged.net/releases/net/jodah/typetools/0.6.3/typetools-0.6.3.jar\",\"path\":\"net/jodah/typetools/0.6.3/typetools-0.6.3.jar\"}}},{\"name\":\"net.minecrell:terminalconsoleappender:1.3.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b562e9bb61235c9520e26282cdee71f8f802d1fc\",\"size\":16949,\"url\":\"https://maven.neoforged.net/releases/net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\",\"path\":\"net/minecrell/terminalconsoleappender/1.3.0/terminalconsoleappender-1.3.0.jar\"}}},{\"name\":\"net.fabricmc:sponge-mixin:0.15.2+mixin.0.8.7\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"2af2f021d8e02a0220dc27a7a72b4666d66d44ca\",\"size\":1494751,\"url\":\"https://maven.neoforged.net/releases/net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\",\"path\":\"net/fabricmc/sponge-mixin/0.15.2+mixin.0.8.7/sponge-mixin-0.15.2+mixin.0.8.7.jar\"}}},{\"name\":\"org.openjdk.nashorn:nashorn-core:15.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f67f5ffaa5f5130cf6fb9b133da00c7df3b532a5\",\"size\":2167292,\"url\":\"https://maven.neoforged.net/releases/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\",\"path\":\"org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar\"}}},{\"name\":\"org.apache.commons:commons-lang3:3.14.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1ed471194b02f2c6cb734a0cd6f6f107c673afae\",\"size\":657952,\"url\":\"https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\",\"path\":\"org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar\"}}},{\"name\":\"cpw.mods:bootstraplauncher:2.0.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1a2d076cbc33b0520cbacd591224427b2a20047d\",\"size\":11116,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\",\"path\":\"cpw/mods/bootstraplauncher/2.0.2/bootstraplauncher-2.0.2.jar\"}}},{\"name\":\"cpw.mods:securejarhandler:3.0.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c0ef95cecd8699a0449053ac7d9c160748d902cd\",\"size\":103765,\"url\":\"https://maven.neoforged.net/releases/cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\",\"path\":\"cpw/mods/securejarhandler/3.0.8/securejarhandler-3.0.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-commons:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"36e4d212970388e5bd2c5180292012502df461bb\",\"size\":73498,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\",\"path\":\"org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-util:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"395f1c1f035258511f27bc9b2583d76e4b143f59\",\"size\":94559,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\",\"path\":\"org/ow2/asm/asm-util/9.8/asm-util-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-analysis:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b9747a320844b6cb1eacd90d8ecfd260a16c01d3\",\"size\":35151,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\",\"path\":\"org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm-tree:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"018419ca5b77a2f81097c741e7872e6ab8d2f40d\",\"size\":51934,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\",\"path\":\"org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar\"}}},{\"name\":\"org.ow2.asm:asm:9.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"dc19ecb3f7889b7860697215cae99c0f9b6f6b4b\",\"size\":126113,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm/9.8/asm-9.8.jar\",\"path\":\"org/ow2/asm/asm/9.8/asm-9.8.jar\"}}},{\"name\":\"net.neoforged:JarJarFileSystems:0.4.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"78f59f89defcd032ed788b151ca6a0d40ace796a\",\"size\":31807,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\",\"path\":\"net/neoforged/JarJarFileSystems/0.4.1/JarJarFileSystems-0.4.1.jar\"}}},{\"name\":\"net.sf.jopt-simple:jopt-simple:5.0.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\",\"size\":78146,\"url\":\"https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\",\"path\":\"net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar\"}}},{\"name\":\"org.slf4j:slf4j-api:2.0.9\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"7cf2726fdcfbc8610f9a71fb3ed639871f315340\",\"size\":64579,\"url\":\"https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\",\"path\":\"org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar\"}}},{\"name\":\"org.antlr:antlr4-runtime:4.13.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"17125bae1d965624e265ef49552f6465a2bfa307\",\"size\":326305,\"url\":\"https://maven.neoforged.net/releases/org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\",\"path\":\"org/antlr/antlr4-runtime/4.13.1/antlr4-runtime-4.13.1.jar\"}}},{\"name\":\"com.mojang:logging:1.2.7\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"24cb95ffb0e3433fd6e844c04e68009e504ca1c0\",\"size\":15343,\"url\":\"https://libraries.minecraft.net/com/mojang/logging/1.2.7/logging-1.2.7.jar\",\"path\":\"com/mojang/logging/1.2.7/logging-1.2.7.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-slf4j2-impl:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d7e6693c2606cb7e7335047d7bb96dec52db5665\",\"size\":27364,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-slf4j2-impl/2.22.1/log4j-slf4j2-impl-2.22.1.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-core:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"7183a25510a02ad00cc6a95d3b3d2a7d3c5a8dc4\",\"size\":1900022,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-core/2.22.1/log4j-core-2.22.1.jar\"}}},{\"name\":\"org.apache.logging.log4j:log4j-api:2.22.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"bea6fede6328fabafd7e68363161a7ea6605abd1\",\"size\":335001,\"url\":\"https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\",\"path\":\"org/apache/logging/log4j/log4j-api/2.22.1/log4j-api-2.22.1.jar\"}}},{\"name\":\"org.jline:jline-reader:3.20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8f15415b022a25b473e8e16c28ae913186ffb9c4\",\"size\":171052,\"url\":\"https://maven.neoforged.net/releases/org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\",\"path\":\"org/jline/jline-reader/3.20.0/jline-reader-3.20.0.jar\"}}},{\"name\":\"org.jline:jline-terminal:3.20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d0ddcc708ddf527a3454c941b7b9225cc83a15ff\",\"size\":228481,\"url\":\"https://maven.neoforged.net/releases/org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\",\"path\":\"org/jline/jline-terminal/3.20.0/jline-terminal-3.20.0.jar\"}}},{\"name\":\"commons-io:commons-io:2.15.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"f11560da189ab563a5c8e351941415430e9304ea\",\"size\":501218,\"url\":\"https://libraries.minecraft.net/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\",\"path\":\"commons-io/commons-io/2.15.1/commons-io-2.15.1.jar\"}}},{\"name\":\"net.minecraftforge:srgutils:0.4.15\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"ca408b131759478f164e010fae0d73997e125fb5\",\"size\":69393,\"url\":\"https://maven.neoforged.net/releases/net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\",\"path\":\"net/minecraftforge/srgutils/0.4.15/srgutils-0.4.15.jar\"}}},{\"name\":\"com.google.guava:guava:32.1.2-jre\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"5e64ec7e056456bef3a4bc4c6fdaef71e8ab6318\",\"size\":3041591,\"url\":\"https://libraries.minecraft.net/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\",\"path\":\"com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar\"}}},{\"name\":\"com.google.guava:failureaccess:1.0.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1dcf1de382a0bf95a3d8b0849546c88bac1292c9\",\"size\":4617,\"url\":\"https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\",\"path\":\"com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar\"}}},{\"name\":\"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b421526c5f297295adef1c886e5246c39d4ac629\",\"size\":2199,\"url\":\"https://libraries.minecraft.net/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\",\"path\":\"com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar\"}}},{\"name\":\"com.google.code.findbugs:jsr305:3.0.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"25ea2e8b0c338a877313bd4672d3fe056ea78f0d\",\"size\":19936,\"url\":\"https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\",\"path\":\"com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar\"}}},{\"name\":\"org.checkerframework:checker-qual:3.33.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"de2b60b62da487644fc11f734e73c8b0b431238f\",\"size\":223979,\"url\":\"https://libraries.minecraft.net/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\",\"path\":\"org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar\"}}},{\"name\":\"com.google.errorprone:error_prone_annotations:2.18.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"89b684257096f548fa39a7df9fdaa409d4d4df91\",\"size\":16017,\"url\":\"https://libraries.minecraft.net/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\",\"path\":\"com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar\"}}},{\"name\":\"com.google.j2objc:j2objc-annotations:2.8\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c85270e307e7b822f1086b93689124b89768e273\",\"size\":9301,\"url\":\"https://libraries.minecraft.net/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\",\"path\":\"com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar\"}}},{\"name\":\"com.google.code.gson:gson:2.10.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b3add478d4382b78ea20b1671390a858002feb6c\",\"size\":283367,\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\",\"path\":\"com/google/code/gson/gson/2.10.1/gson-2.10.1.jar\"}}},{\"name\":\"org.codehaus.plexus:plexus-utils:3.3.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"cf43b5391de623b36fe066a21127baef82c64022\",\"size\":263253,\"url\":\"https://maven.neoforged.net/releases/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\",\"path\":\"org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar\"}}},{\"name\":\"com.machinezoo.noexception:noexception:1.7.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b65330c98e38a1f915fa54a6e5eca496505e3f0a\",\"size\":250861,\"url\":\"https://maven.neoforged.net/releases/com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\",\"path\":\"com/machinezoo/noexception/noexception/1.7.1/noexception-1.7.1.jar\"}}},{\"name\":\"net.neoforged:neoform:1.21.1-20240808.144430@zip\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"811e2bd86fa2cda2812e5e8e51d718ea8bd6d3f4\",\"size\":1683830,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/neoform/1.21.1-20240808.144430/neoform-1.21.1-20240808.144430.zip\",\"path\":\"net/neoforged/neoform/1.21.1-20240808.144430/neoform-1.21.1-20240808.144430.zip\"}}},{\"name\":\"net.neoforged.installertools:binarypatcher:2.1.2:fatjar\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"759b63ef393ed80418ec1ea4d233cd6152d02637\",\"size\":624217,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/binarypatcher/2.1.2/binarypatcher-2.1.2-fatjar.jar\",\"path\":\"net/neoforged/installertools/binarypatcher/2.1.2/binarypatcher-2.1.2-fatjar.jar\"}}},{\"name\":\"net.neoforged:AutoRenamingTool:2.0.3:all\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"d9890c71b4366f886c2b1006782043a6a6816eb6\",\"size\":746919,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/AutoRenamingTool/2.0.3/AutoRenamingTool-2.0.3-all.jar\",\"path\":\"net/neoforged/AutoRenamingTool/2.0.3/AutoRenamingTool-2.0.3-all.jar\"}}},{\"name\":\"net.neoforged.installertools:installertools:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"72524c0362f812d8aa4cdb4c03e9b45e2b71ae3b\",\"size\":83543,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/installertools/2.1.2/installertools-2.1.2.jar\",\"path\":\"net/neoforged/installertools/installertools/2.1.2/installertools-2.1.2.jar\"}}},{\"name\":\"net.neoforged:srgutils:1.0.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b9fe6cdab494983217cbc14cc6f92c8e6c616526\",\"size\":71421,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/srgutils/1.0.0/srgutils-1.0.0.jar\",\"path\":\"net/neoforged/srgutils/1.0.0/srgutils-1.0.0.jar\"}}},{\"name\":\"net.md-5:SpecialSource:1.11.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"43b84c4bb8d01cf90a29dfeec1c958a4b64baf46\",\"size\":88737,\"url\":\"https://maven.neoforged.net/releases/net/md-5/SpecialSource/1.11.0/SpecialSource-1.11.0.jar\",\"path\":\"net/md-5/SpecialSource/1.11.0/SpecialSource-1.11.0.jar\"}}},{\"name\":\"com.google.code.gson:gson:2.8.9\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8a432c1d6825781e21a02db2e2c33c5fde2833b9\",\"size\":258075,\"url\":\"https://libraries.minecraft.net/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar\",\"path\":\"com/google/code/gson/gson/2.8.9/gson-2.8.9.jar\"}}},{\"name\":\"de.siegmar:fastcsv:2.0.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"b615f26c03edeac966618b93b9ee4f4eed50aae1\",\"size\":29476,\"url\":\"https://maven.neoforged.net/releases/de/siegmar/fastcsv/2.0.0/fastcsv-2.0.0.jar\",\"path\":\"de/siegmar/fastcsv/2.0.0/fastcsv-2.0.0.jar\"}}},{\"name\":\"org.ow2.asm:asm-commons:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"1f2a432d1212f5c352ae607d7b61dcae20c20af5\",\"size\":72716,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar\",\"path\":\"org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar\"}}},{\"name\":\"net.neoforged.installertools:cli-utils:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"e5a3115eb9e299117472675946be8a72e4990ad6\",\"size\":9379,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/cli-utils/2.1.2/cli-utils-2.1.2.jar\",\"path\":\"net/neoforged/installertools/cli-utils/2.1.2/cli-utils-2.1.2.jar\"}}},{\"name\":\"com.google.guava:guava:20.0\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"89507701249388e1ed5ddcf8c41f4ce1be7831ef\",\"size\":2442625,\"url\":\"https://maven.neoforged.net/releases/com/google/guava/guava/20.0/guava-20.0.jar\",\"path\":\"com/google/guava/guava/20.0/guava-20.0.jar\"}}},{\"name\":\"com.opencsv:opencsv:4.4\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"525932a1edf46c9ca75aa9c83d31dc180c186865\",\"size\":167167,\"url\":\"https://maven.neoforged.net/releases/com/opencsv/opencsv/4.4/opencsv-4.4.jar\",\"path\":\"com/opencsv/opencsv/4.4/opencsv-4.4.jar\"}}},{\"name\":\"org.ow2.asm:asm-analysis:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4b071f211b37c38e0e9f5998550197c8593f6ad8\",\"size\":34276,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar\",\"path\":\"org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar\"}}},{\"name\":\"org.ow2.asm:asm-tree:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"78d2ecd61318b5a58cd04fb237636c0e86b77d97\",\"size\":52669,\"url\":\"https://maven.neoforged.net/releases/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar\",\"path\":\"org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar\"}}},{\"name\":\"org.ow2.asm:asm:9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8e6300ef51c1d801a7ed62d07cd221aca3a90640\",\"size\":122176,\"url\":\"https://libraries.minecraft.net/org/ow2/asm/asm/9.3/asm-9.3.jar\",\"path\":\"org/ow2/asm/asm/9.3/asm-9.3.jar\"}}},{\"name\":\"org.apache.commons:commons-text:1.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"9abf61708a66ab5e55f6169a200dbfc584b546d9\",\"size\":182954,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-text/1.3/commons-text-1.3.jar\",\"path\":\"org/apache/commons/commons-text/1.3/commons-text-1.3.jar\"}}},{\"name\":\"org.apache.commons:commons-lang3:3.8.1\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"6505a72a097d9270f7a9e7bf42c4238283247755\",\"size\":501879,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar\",\"path\":\"org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar\"}}},{\"name\":\"commons-beanutils:commons-beanutils:1.9.3\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"c845703de334ddc6b4b3cd26835458cb1cba1f3d\",\"size\":246174,\"url\":\"https://maven.neoforged.net/releases/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar\",\"path\":\"commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar\"}}},{\"name\":\"org.apache.commons:commons-collections4:4.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"54ebea0a5b653d3c680131e73fe807bb8f78c4ed\",\"size\":752798,\"url\":\"https://maven.neoforged.net/releases/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar\",\"path\":\"org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar\"}}},{\"name\":\"commons-logging:commons-logging:1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4bfc12adfe4842bf07b657f0369c4cb522955686\",\"size\":61829,\"url\":\"https://libraries.minecraft.net/commons-logging/commons-logging/1.2/commons-logging-1.2.jar\",\"path\":\"commons-logging/commons-logging/1.2/commons-logging-1.2.jar\"}}},{\"name\":\"commons-collections:commons-collections:3.2.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5\",\"size\":588337,\"url\":\"https://maven.neoforged.net/releases/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar\",\"path\":\"commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar\"}}},{\"name\":\"net.neoforged.installertools:jarsplitter:2.1.2\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"8a7916be0a0e589897beab7c839072631067e48e\",\"size\":7790,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/installertools/jarsplitter/2.1.2/jarsplitter-2.1.2.jar\",\"path\":\"net/neoforged/installertools/jarsplitter/2.1.2/jarsplitter-2.1.2.jar\"}}},{\"name\":\"net.neoforged:neoforge:21.1.226:universal\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"974b795706c79f69f6274baf6b10f5912f27b558\",\"size\":3528068,\"url\":\"https://maven.neoforged.net/releases/net/neoforged/neoforge/21.1.226/neoforge-21.1.226-universal.jar\",\"path\":\"net/neoforged/neoforge/21.1.226/neoforge-21.1.226-universal.jar\"}}},{\"name\":\"net.neoforged:neoforge:21.1.226:clientdata@lzma\",\"url\":null,\"downloads\":{\"artifact\":{\"sha1\":\"4c0c8fb03f552dd9834f83f090b669c0aa063c79\",\"size\":0,\"url\":\"https://modloaders.forgecdn.net/647622546/maven/net/neoforged/neoforge/21.1.226/neoforge-21.1.226-clientdata.lzma\",\"path\":\"net/neoforged/neoforge/21.1.226/neoforge-21.1.226-clientdata.lzma\"}}}],\"serverJarPath\":\"{LIBRARY_DIR}/net/minecraft/server/{MINECRAFT_VERSION}/server-{MINECRAFT_VERSION}.jar\"}"},"isUnlocked":true,"javaArgsOverride":null,"lastPlayed":"0001-01-01T00:00:00","playedCount":0,"timePlayed":0,"manifest":{"minecraft":{"version":"1.21.1","additionalJavaArgs":null,"modLoaders":[{"id":"neoforge-21.1.226","primary":true}],"libraries":null,"recommendedRam":null},"manifestType":"minecraftModpack","manifestVersion":1,"name":"More FPS [NEOFORGE] - MC 1.21.1 ","version":" 33.1.0","author":"","description":null,"projectID":null,"files":[{"projectID":856906,"fileID":7392199,"required":true,"isLocked":false},{"projectID":455508,"fileID":6661598,"required":true,"isLocked":false},{"projectID":429235,"fileID":7524151,"required":true,"isLocked":false},{"projectID":348521,"fileID":5729127,"required":true,"isLocked":false},{"projectID":907856,"fileID":6165711,"required":true,"isLocked":false},{"projectID":1084468,"fileID":7205496,"required":true,"isLocked":false},{"projectID":634062,"fileID":5885735,"required":true,"isLocked":false},{"projectID":60089,"fileID":5637846,"required":true,"isLocked":false},{"projectID":844662,"fileID":7998618,"required":true,"isLocked":false},{"projectID":448233,"fileID":7900085,"required":true,"isLocked":false},{"projectID":401648,"fileID":5873258,"required":true,"isLocked":false},{"projectID":233019,"fileID":5426792,"required":true,"isLocked":false},{"projectID":499980,"fileID":7943878,"required":true,"isLocked":false},{"projectID":232131,"fileID":7966181,"required":true,"isLocked":false},{"projectID":388800,"fileID":6794589,"required":true,"isLocked":false},{"projectID":531761,"fileID":7420963,"required":true,"isLocked":false},{"projectID":958881,"fileID":5609781,"required":true,"isLocked":false},{"projectID":1046692,"fileID":5605495,"required":true,"isLocked":false},{"projectID":888328,"fileID":7228353,"required":true,"isLocked":false},{"projectID":1386611,"fileID":7819803,"required":true,"isLocked":false},{"projectID":1104882,"fileID":6533725,"required":true,"isLocked":false},{"projectID":868624,"fileID":7018836,"required":true,"isLocked":false},{"projectID":949555,"fileID":7338300,"required":true,"isLocked":false},{"projectID":831663,"fileID":7926632,"required":true,"isLocked":false},{"projectID":944149,"fileID":5499027,"required":true,"isLocked":false},{"projectID":485681,"fileID":6383261,"required":true,"isLocked":false},{"projectID":832882,"fileID":7962596,"required":true,"isLocked":false},{"projectID":951499,"fileID":6935204,"required":true,"isLocked":false},{"projectID":888288,"fileID":7228395,"required":true,"isLocked":false},{"projectID":326652,"fileID":7746488,"required":true,"isLocked":false},{"projectID":367706,"fileID":7256741,"required":true,"isLocked":false},{"projectID":938643,"fileID":5453382,"required":true,"isLocked":false},{"projectID":431203,"fileID":7980983,"required":true,"isLocked":false},{"projectID":858542,"fileID":5831692,"required":true,"isLocked":false},{"projectID":635427,"fileID":5444189,"required":true,"isLocked":false},{"projectID":886331,"fileID":7228406,"required":true,"isLocked":false},{"projectID":882539,"fileID":6843634,"required":true,"isLocked":false},{"projectID":394468,"fileID":6382651,"required":true,"isLocked":false},{"projectID":1016013,"fileID":7451276,"required":true,"isLocked":false},{"projectID":459701,"fileID":6926815,"required":true,"isLocked":false},{"projectID":1109370,"fileID":7890874,"required":true,"isLocked":false},{"projectID":558905,"fileID":6394141,"required":true,"isLocked":false},{"projectID":1091339,"fileID":7955700,"required":true,"isLocked":false},{"projectID":790626,"fileID":8003021,"required":true,"isLocked":false},{"projectID":256717,"fileID":5623731,"required":true,"isLocked":false},{"projectID":456640,"fileID":5571339,"required":true,"isLocked":false},{"projectID":582327,"fileID":6296628,"required":true,"isLocked":false},{"projectID":335493,"fileID":7546938,"required":true,"isLocked":false},{"projectID":1103431,"fileID":6100815,"required":true,"isLocked":false},{"projectID":1037680,"fileID":7243121,"required":true,"isLocked":false},{"projectID":283644,"fileID":6926281,"required":true,"isLocked":false},{"projectID":1109361,"fileID":7890871,"required":true,"isLocked":false},{"projectID":686911,"fileID":7537795,"required":true,"isLocked":false},{"projectID":419699,"fileID":5786327,"required":true,"isLocked":false},{"projectID":511319,"fileID":6091021,"required":true,"isLocked":false},{"projectID":969926,"fileID":7186843,"required":true,"isLocked":false},{"projectID":883287,"fileID":7305762,"required":true,"isLocked":false},{"projectID":548115,"fileID":5665477,"required":true,"isLocked":false},{"projectID":250398,"fileID":6368976,"required":true,"isLocked":false},{"projectID":1191845,"fileID":6148845,"required":true,"isLocked":false},{"projectID":360438,"fileID":7740400,"required":true,"isLocked":false},{"projectID":882495,"fileID":5513549,"required":true,"isLocked":false},{"projectID":568563,"fileID":7930620,"required":true,"isLocked":false},{"projectID":904356,"fileID":7936390,"required":true,"isLocked":false},{"projectID":888790,"fileID":7920161,"required":true,"isLocked":false},{"projectID":470193,"fileID":7367221,"required":true,"isLocked":false},{"projectID":410295,"fileID":5453385,"required":true,"isLocked":false},{"projectID":968432,"fileID":7974611,"required":true,"isLocked":false},{"projectID":271740,"fileID":6751464,"required":true,"isLocked":false},{"projectID":1007509,"fileID":7451279,"required":true,"isLocked":false},{"projectID":361579,"fileID":6225208,"required":true,"isLocked":false},{"projectID":551520,"fileID":5723250,"required":true,"isLocked":false}],"overrides":"overrides"},"fileDate":"2026-05-01T16:54:22.527Z","installedModpack":{"instanceID":"1983b919-23d6-41e6-a7bc-3fa6324e75b4","modSource":0,"addonID":447596,"gameID":432,"categoryClassID":4471,"categorySection":{"id":11,"gameId":432,"name":"Modpacks","packageType":5,"path":"downloads","initialInclusionPattern":"$^","gameCategoryId":4471},"categoryIds":[4481,4483,4484,5128],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"More FPS [FORGE] - Increase FPS & Shaders (1.21 UPDATE)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\downloads","fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":107529259,"name":"TeamLUP"}],"primaryAuthor":"Lupin","primaryCategoryId":5128,"packageType":5,"webSiteURL":"https://www.curseforge.com/minecraft/modpacks/more-fps-modpack","issuesURL":null,"wikiURL":"https://discord.gg/X8VY5WMbe4","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/925/477/256/256/638394086482222171.png","tags":[],"installedFile":{"id":8022028,"fileName":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","fileDate":"2026-05-01T16:54:22.527Z","fileLength":7232520,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8022/28/More%20FPS%20%5bNEOFORGE%5d%20-%20MC%201.21.1%20-%2033.1.0.zip","isAlternate":false,"alternateFileId":8022033,"serverPackFileId":8022033,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"manifest.json","fingerprint":387849279,"invalidFingerprint":false},{"foldername":"modlist.html","fingerprint":3050746127,"invalidFingerprint":false},{"foldername":"overrides","fingerprint":4152035634,"invalidFingerprint":false}],"packageFingerprint":3009081461,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":447596,"fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","hashes":[{"type":1,"value":"7535e639fb8f6f81108e12978f8e8dfc168ce26e"},{"type":2,"value":"72e8116d8affcdb3cca94963e587a980"}]},"dateInstalled":"2026-05-07T21:59:35.7668316Z","dateUpdated":"2026-05-07T21:59:35.7668316Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":[],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8022028,"fileName":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","fileDate":"2026-05-01T16:54:22.527Z","fileLength":7232520,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8022/28/More%20FPS%20%5bNEOFORGE%5d%20-%20MC%201.21.1%20-%2033.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":8022033,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"manifest.json","fingerprint":387849279,"invalidFingerprint":false},{"foldername":"modlist.html","fingerprint":3050746127,"invalidFingerprint":false},{"foldername":"overrides","fingerprint":4152035634,"invalidFingerprint":false}],"packageFingerprint":3009081461,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":447596,"fileNameOnDisk":"More FPS [NEOFORGE] - MC 1.21.1 - 33.1.0.zip","hashes":[{"type":1,"value":"7535e639fb8f6f81108e12978f8e8dfc168ce26e"},{"type":2,"value":"72e8116d8affcdb3cca94963e587a980"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},"projectID":447596,"fileID":8022028,"customAuthor":null,"modpackOverrides":["config\\aiimprovements-common.toml","config\\alltheleaks.json","config\\automessage-client.json","config\\automessage-common.toml","config\\automessage-server.json","config\\automessage_README.txt","config\\badoptimizations.txt","config\\balm-client.toml","config\\balm-common-1.toml.bak","config\\balm-common.toml","config\\betterf3.toml","config\\betterfpsdist.json","config\\bhmenu-client-1.toml.bak","config\\bhmenu-client.toml","config\\catalogue.properties","config\\catalogue_favourites.txt","config\\chunksending.json","config\\connectivity.json","config\\cupboard.json","config\\defaultoptions-common.toml","config\\dynamic_fps.json","config\\entityculling.json","config\\entity_model_features.json","config\\entity_texture_features.json","config\\etf_warnings.json","config\\euphoria_patcher.properties","config\\fastpaintings-common.toml","config\\ferritecore-mixin.toml","config\\fml.toml","config\\immediatelyfast.json","config\\iris-excluded.json","config\\iris.properties","config\\leaky.json","config\\limitedchunks.json","config\\lithium.properties","config\\loadingbackgrounds-config.json","config\\loadingbackgrounds.json","config\\modernfix-common.toml","config\\modernfix-mixins.properties","config\\monolib-common.toml","config\\monolib-server.json","config\\monolib.toml","config\\moonlight-client-1.toml.bak","config\\moonlight-client-2.toml.bak","config\\moonlight-client.toml","config\\moonlight-common-1.toml.bak","config\\moonlight-common-2.toml.bak","config\\moonlight-common-3.toml.bak","config\\moonlight-common-4.toml.bak","config\\moonlight-common.toml","config\\MouseTweaks.cfg","config\\neoforge-client.toml","config\\neoforge-common.toml","config\\neoforge-server.toml","config\\neruina.json","config\\placebo.cfg","config\\recipeessentials.json","config\\smoothchunk.json","config\\sodium-extra-options.json","config\\sodium-extra.properties","config\\sodium-fingerprint.json","config\\sodium-mixins.properties","config\\sodium-options.json","config\\sodiumextras-client.toml","config\\startinv.json","config\\structureessentials.json","config\\time_on_display.toml","config\\toastcontrol-client-1.toml.bak","config\\toastcontrol-client.toml","config\\transition.json","config\\trender.json","config\\chunky\\config.json","config\\defaultoptions\\keybindings.txt","config\\defaultoptions\\options.txt","config\\fabric\\indigo-renderer.properties","config\\fancymenu\\config.txt","config\\fancymenu\\customizablemenus.txt","config\\fancymenu\\custom_gui_screens.txt","config\\fancymenu\\legacy_checklist.txt","config\\fancymenu\\menu_identifiers.db","config\\fancymenu\\options.txt","config\\fancymenu\\user_variables.db","config\\messages\\client_messages.json","config\\messages\\server_messages.json","config\\NoChatReports\\NCR-Client.json","config\\NoChatReports\\NCR-Common.json","config\\NoChatReports\\NCR-Encryption.json","config\\NoChatReports\\NCR-ServerPreferences.json","config\\NoChatReports\\README.md","config\\fancymenu\\assets\\bg.png","config\\fancymenu\\assets\\mods.png","config\\fancymenu\\assets\\modshov.png","config\\fancymenu\\assets\\multiplayer.png","config\\fancymenu\\assets\\multiplayerhov.png","config\\fancymenu\\assets\\options.png","config\\fancymenu\\assets\\optionshov.png","config\\fancymenu\\assets\\quitgame.png","config\\fancymenu\\assets\\quitgamehov.png","config\\fancymenu\\assets\\rentaserver.png","config\\fancymenu\\assets\\rentaserverhov.png","config\\fancymenu\\assets\\sidepanel.png","config\\fancymenu\\assets\\singleplayer.png","config\\fancymenu\\assets\\singleplayerhov.png","config\\fancymenu\\assets\\title.png","config\\fancymenu\\customization\\morefps.txt","config\\fancymenu\\locals\\de_de.local","config\\fancymenu\\locals\\en_us.local","config\\fancymenu\\locals\\pl_pl.local","config\\fancymenu\\locals\\pt_br.local","config\\fancymenu\\locals\\ru_ru.local","config\\fancymenu\\locals\\uk_ua.local","config\\fancymenu\\locals\\zh_cn.local","config\\fancymenu\\ui_themes\\dark.json","config\\fancymenu\\ui_themes\\light.json","config\\konkrete\\locals\\de_de.local","config\\konkrete\\locals\\en_us.local","config\\konkrete\\locals\\pl_pl.local","config\\konkrete\\locals\\pt_br.local","config\\fancymenu\\layout_editor\\widgets\\element_layer_control.lewidget"],"isMemoryOverride":false,"allocatedMemory":0,"profileImagePath":null,"groupId":null,"isVanilla":false,"guid":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","gameTypeID":432,"installPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\","name":"PupaMLupa","cachedScans":[],"isValid":true,"lastPreviousMatchUpdate":"2026-05-07T21:55:58.4744049Z","lastRefreshAttempt":"2026-05-08T00:59:38.7732561+03:00","isEnabled":true,"gameVersion":"1.21.1","gameVersionFlavor":null,"gameVersionTypeId":null,"preferenceAlternateFile":false,"preferenceAutoInstallUpdates":false,"preferenceDeleteOrphanedDependencies":false,"preferenceDeleteSavedVariables":false,"preferenceReleaseType":2,"preferenceModdingFolderPath":null,"syncProfile":{"PreferenceEnabled":false,"PreferenceAutoSync":true,"PreferenceAutoDelete":false,"PreferenceBackupSavedVariables":false,"GameInstanceGuid":"00000000-0000-0000-0000-000000000000","SyncProfileID":0,"SavedVariablesProfile":null,"LastSyncDate":"0001-01-01T00:00:00"},"installDate":"2026-05-07T21:59:35.7818004Z","installedAddons":[{"instanceID":"b17b4dc8-faf4-4253-9424-1ffbcb38a7b7","modSource":0,"addonID":455508,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Iris Shaders","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","authors":[{"id":44226090,"name":"coderbot"},{"id":101521578,"name":"IMS21"}],"primaryAuthor":"coderbot","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/irisshaders","issuesURL":"https://github.com/IrisShaders/Iris/issues","wikiURL":"https://shaders.properties","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1002/450/256/256/638522657871453967.png","tags":[],"installedFile":{"id":6661598,"fileName":"iris-neoforge-1.8.12+mc1.21.1.jar","fileDate":"2025-06-17T15:53:15.717Z","fileLength":2438548,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6661/598/iris-neoforge-1.8.12%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":363713120,"invalidFingerprint":false},{"foldername":"de","fingerprint":1235506475,"invalidFingerprint":false},{"foldername":"kroppeb","fingerprint":1426760369,"invalidFingerprint":false},{"foldername":"net","fingerprint":844079386,"invalidFingerprint":false},{"foldername":"mixins.iris.forge.json","fingerprint":3583208795,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1468664341,"invalidFingerprint":false},{"foldername":"centerDepth.fsh","fingerprint":1579026811,"invalidFingerprint":false},{"foldername":"centerDepth.vsh","fingerprint":462961270,"invalidFingerprint":false},{"foldername":"colorSpace.csh","fingerprint":1494857400,"invalidFingerprint":false},{"foldername":"colorSpace.vsh","fingerprint":1398698219,"invalidFingerprint":false},{"foldername":"iris-logo.png","fingerprint":4158814395,"invalidFingerprint":false},{"foldername":"mixins.iris.bettermipmaps.json","fingerprint":1338334829,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.dh.json","fingerprint":3824861719,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.sodium.json","fingerprint":1868836443,"invalidFingerprint":false},{"foldername":"mixins.iris.devenvironment.json","fingerprint":3953555104,"invalidFingerprint":false},{"foldername":"mixins.iris.fantastic.json","fingerprint":2829550645,"invalidFingerprint":false},{"foldername":"mixins.iris.fixes.maxfpscrash.json","fingerprint":3430149842,"invalidFingerprint":false},{"foldername":"mixins.iris.integrationtest.json","fingerprint":3729550497,"invalidFingerprint":false},{"foldername":"mixins.iris.vertexformat.json","fingerprint":4029359364,"invalidFingerprint":false},{"foldername":"iris-batched-entity-rendering.mixins.json","fingerprint":2191366913,"invalidFingerprint":false},{"foldername":"iris.accesswidener","fingerprint":1956991535,"invalidFingerprint":false},{"foldername":"mixins.iris.json","fingerprint":146795907,"invalidFingerprint":false}],"packageFingerprint":2055048874,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":455508,"fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","hashes":[{"type":1,"value":"a3e6355915c7d3b2bc392724795113e51d289378"},{"type":2,"value":"6c1122aa7c2b1a4f24831e394c5b513f"}]},"dateInstalled":"2026-05-07T21:57:57.3736059Z","dateUpdated":"2026-05-07T21:57:57.3750905Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\iris-neoforge-1.8.12+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6661598,"fileName":"iris-neoforge-1.8.12+mc1.21.1.jar","fileDate":"2025-06-17T15:53:15.717Z","fileLength":2438548,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6661/598/iris-neoforge-1.8.12%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":363713120,"invalidFingerprint":false},{"foldername":"de","fingerprint":1235506475,"invalidFingerprint":false},{"foldername":"kroppeb","fingerprint":1426760369,"invalidFingerprint":false},{"foldername":"net","fingerprint":844079386,"invalidFingerprint":false},{"foldername":"mixins.iris.forge.json","fingerprint":3583208795,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1468664341,"invalidFingerprint":false},{"foldername":"centerDepth.fsh","fingerprint":1579026811,"invalidFingerprint":false},{"foldername":"centerDepth.vsh","fingerprint":462961270,"invalidFingerprint":false},{"foldername":"colorSpace.csh","fingerprint":1494857400,"invalidFingerprint":false},{"foldername":"colorSpace.vsh","fingerprint":1398698219,"invalidFingerprint":false},{"foldername":"iris-logo.png","fingerprint":4158814395,"invalidFingerprint":false},{"foldername":"mixins.iris.bettermipmaps.json","fingerprint":1338334829,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.dh.json","fingerprint":3824861719,"invalidFingerprint":false},{"foldername":"mixins.iris.compat.sodium.json","fingerprint":1868836443,"invalidFingerprint":false},{"foldername":"mixins.iris.devenvironment.json","fingerprint":3953555104,"invalidFingerprint":false},{"foldername":"mixins.iris.fantastic.json","fingerprint":2829550645,"invalidFingerprint":false},{"foldername":"mixins.iris.fixes.maxfpscrash.json","fingerprint":3430149842,"invalidFingerprint":false},{"foldername":"mixins.iris.integrationtest.json","fingerprint":3729550497,"invalidFingerprint":false},{"foldername":"mixins.iris.vertexformat.json","fingerprint":4029359364,"invalidFingerprint":false},{"foldername":"iris-batched-entity-rendering.mixins.json","fingerprint":2191366913,"invalidFingerprint":false},{"foldername":"iris.accesswidener","fingerprint":1956991535,"invalidFingerprint":false},{"foldername":"mixins.iris.json","fingerprint":146795907,"invalidFingerprint":false}],"packageFingerprint":2055048874,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":455508,"fileNameOnDisk":"iris-neoforge-1.8.12+mc1.21.1.jar","hashes":[{"type":1,"value":"a3e6355915c7d3b2bc392724795113e51d289378"},{"type":2,"value":"6c1122aa7c2b1a4f24831e394c5b513f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"43502a53-954e-42f6-8386-097c3ba3eec9","modSource":0,"addonID":1149272,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[409,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loot Integrations: Integrated Dungeons, Villages & Strongholds & Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootintegrations_integrated-1.5.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loot-integrations-integrated-dungeons-villages","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1126/239/256/256/638683941791600422.png","tags":[],"installedFile":{"id":7920258,"fileName":"lootintegrations_integrated-1.5.jar","fileDate":"2026-04-13T10:32:39.94Z","fileLength":7789,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/258/lootintegrations_integrated-1.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":580689,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2349347913,"invalidFingerprint":false},{"foldername":"data","fingerprint":2628461826,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":793984062,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4087799276,"invalidFingerprint":false}],"packageFingerprint":1572255234,"gameVersion":["Fabric","1.20.1","Forge","1.21.1","1.18.2","1.19.2","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1149272,"fileNameOnDisk":"lootintegrations_integrated-1.5.jar","hashes":[{"type":1,"value":"12c262276385db1dc3188fbcb1aedff15550208b"},{"type":2,"value":"467d62a29712ea5a97d7f500c6a7203b"}]},"dateInstalled":"2026-05-07T23:25:30.8170433Z","dateUpdated":"2026-05-07T23:25:30.8201407Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootintegrations_integrated-1.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7920258,"fileName":"lootintegrations_integrated-1.5.jar","fileDate":"2026-04-13T10:32:39.94Z","fileLength":7789,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/258/lootintegrations_integrated-1.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":580689,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2349347913,"invalidFingerprint":false},{"foldername":"data","fingerprint":2628461826,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":793984062,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4087799276,"invalidFingerprint":false}],"packageFingerprint":1572255234,"gameVersion":["Fabric","1.20.1","Forge","1.21.1","1.18.2","1.19.2","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1149272,"fileNameOnDisk":"lootintegrations_integrated-1.5.jar","hashes":[{"type":1,"value":"12c262276385db1dc3188fbcb1aedff15550208b"},{"type":2,"value":"467d62a29712ea5a97d7f500c6a7203b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b4d8a66d-4009-4add-b84e-2c9175db2074","modSource":0,"addonID":1501234,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ParCool+ / Compatibility Addon NeoForge Edition","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","authors":[{"id":102433514,"name":"Semillakan6"}],"primaryAuthor":"Semillakan6","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/parcool-compatibility-addon-neoforge-edition","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1737/796/256/256/639106257095240167.png","tags":[],"installedFile":{"id":7854851,"fileName":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","fileDate":"2026-04-01T07:38:01.587Z","fileLength":16611,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/851/ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":482378,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":446425705,"invalidFingerprint":false},{"foldername":"com","fingerprint":472463969,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4267552386,"invalidFingerprint":false},{"foldername":"parcool_compat_addon.mixins.json","fingerprint":3127149447,"invalidFingerprint":false}],"packageFingerprint":2988163184,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1501234,"fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","hashes":[{"type":1,"value":"4f2232b04b4af124b9ae146b55a6a0f461183425"},{"type":2,"value":"11ec92f2edb4b3f8cf599aea591cb35a"}]},"dateInstalled":"2026-05-07T22:51:11.1957384Z","dateUpdated":"2026-05-07T22:51:11.1970283Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7854851,"fileName":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","fileDate":"2026-04-01T07:38:01.587Z","fileLength":16611,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/851/ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":482378,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":446425705,"invalidFingerprint":false},{"foldername":"com","fingerprint":472463969,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4267552386,"invalidFingerprint":false},{"foldername":"parcool_compat_addon.mixins.json","fingerprint":3127149447,"invalidFingerprint":false}],"packageFingerprint":2988163184,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1501234,"fileNameOnDisk":"ParCool-CompatibilityAddon-1.21.1-3.4.3.1-1.1.jar","hashes":[{"type":1,"value":"4f2232b04b4af124b9ae146b55a6a0f461183425"},{"type":2,"value":"11ec92f2edb4b3f8cf599aea591cb35a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"707c8f5c-4e32-4b7c-b42e-77a3dbc6f78f","modSource":0,"addonID":582327,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Server Performance - Smooth Chunk Save[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"smoothchunk-1.21-4.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/smooth-chunk-save","issuesURL":"https://github.com/someaddons/smoothchunksave/issues/new/choose","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/536/807/256/256/637859186206116434.png","tags":[],"installedFile":{"id":6296628,"fileName":"smoothchunk-1.21-4.1.jar","fileDate":"2025-03-12T16:48:47.343Z","fileLength":12852,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6296/628/smoothchunk-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":43914751,"invalidFingerprint":false},{"foldername":"com","fingerprint":1082524879,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"smoothchunk.mixins.json","fingerprint":3179092955,"invalidFingerprint":false}],"packageFingerprint":2270201149,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":582327,"fileNameOnDisk":"smoothchunk-1.21-4.1.jar","hashes":[{"type":1,"value":"f54d5d352e15560240f151a7d054096a33a58f4a"},{"type":2,"value":"a3c55088f5e9b228e8e94ae20e639a7a"}]},"dateInstalled":"2026-05-07T21:58:40.6387809Z","dateUpdated":"2026-05-07T21:58:40.639963Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\smoothchunk-1.21-4.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6296628,"fileName":"smoothchunk-1.21-4.1.jar","fileDate":"2025-03-12T16:48:47.343Z","fileLength":12852,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6296/628/smoothchunk-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":43914751,"invalidFingerprint":false},{"foldername":"com","fingerprint":1082524879,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"smoothchunk.mixins.json","fingerprint":3179092955,"invalidFingerprint":false}],"packageFingerprint":2270201149,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":582327,"fileNameOnDisk":"smoothchunk-1.21-4.1.jar","hashes":[{"type":1,"value":"f54d5d352e15560240f151a7d054096a33a58f4a"},{"type":2,"value":"a3c55088f5e9b228e8e94ae20e639a7a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c7adbbf7-c887-4952-ad08-186dcd848a15","modSource":0,"addonID":635427,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Yeetus Experimentus","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","authors":[{"id":8306579,"name":"Sunekaer"}],"primaryAuthor":"Sunekaer","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/yeetusexperimentus","issuesURL":"https://github.com/nanite/Yeetus-Experimentus/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/561/302/256/256/637913385213961485.png","tags":[],"installedFile":{"id":5444189,"fileName":"yeetusexperimentus-neoforge-87.0.0.jar","fileDate":"2024-06-19T12:03:09.493Z","fileLength":570057,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5444/189/yeetusexperimentus-neoforge-87.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3563913969,"invalidFingerprint":false},{"foldername":"architectury_inject_YeetusExperimentus_common_87278c651eb6494eb842d847c6e84245_705d449c25ee74798e52710df095f841aea12a5527e61e8b088dd96607c2bac0yeetusexperimentus8700devjar","fingerprint":1310090446,"invalidFingerprint":false},{"foldername":"com","fingerprint":3908371297,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1677690403,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common-refmap.json","fingerprint":2414894560,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common.mixins.json","fingerprint":3967622980,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-logo.png","fingerprint":2629488239,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-neo.mixins.json","fingerprint":1125902222,"invalidFingerprint":false},{"foldername":"yeetusexperimentus.accesswidener","fingerprint":1095485847,"invalidFingerprint":false}],"packageFingerprint":767515430,"gameVersion":["1.21","Client","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","NeoForge","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":635427,"fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","hashes":[{"type":1,"value":"7132c346103d75a7c84da64b35b92e3a6f1ce3da"},{"type":2,"value":"146a7ff6596eff098dd1d07337ba88fe"}]},"dateInstalled":"2026-05-07T21:58:28.1737216Z","dateUpdated":"2026-05-07T21:58:28.1752301Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\yeetusexperimentus-neoforge-87.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5444189,"fileName":"yeetusexperimentus-neoforge-87.0.0.jar","fileDate":"2024-06-19T12:03:09.493Z","fileLength":570057,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5444/189/yeetusexperimentus-neoforge-87.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3563913969,"invalidFingerprint":false},{"foldername":"architectury_inject_YeetusExperimentus_common_87278c651eb6494eb842d847c6e84245_705d449c25ee74798e52710df095f841aea12a5527e61e8b088dd96607c2bac0yeetusexperimentus8700devjar","fingerprint":1310090446,"invalidFingerprint":false},{"foldername":"com","fingerprint":3908371297,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1677690403,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common-refmap.json","fingerprint":2414894560,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-common.mixins.json","fingerprint":3967622980,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-logo.png","fingerprint":2629488239,"invalidFingerprint":false},{"foldername":"yeetusexperimentus-neo.mixins.json","fingerprint":1125902222,"invalidFingerprint":false},{"foldername":"yeetusexperimentus.accesswidener","fingerprint":1095485847,"invalidFingerprint":false}],"packageFingerprint":767515430,"gameVersion":["1.21","Client","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","NeoForge","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":635427,"fileNameOnDisk":"yeetusexperimentus-neoforge-87.0.0.jar","hashes":[{"type":1,"value":"7132c346103d75a7c84da64b35b92e3a6f1ce3da"},{"type":2,"value":"146a7ff6596eff098dd1d07337ba88fe"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3a3fc908-c085-4faf-bcb9-d1b4cfe50c49","modSource":0,"addonID":360438,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lithium (Fabric/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","authors":[{"id":28746583,"name":"JellySquid"}],"primaryAuthor":"JellySquid","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lithium","issuesURL":"https://github.com/jellysquid3/lithium-fabric/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/246/646/256/256/637158441743060329.png","tags":[],"installedFile":{"id":7740400,"fileName":"lithium-neoforge-0.15.3+mc1.21.1.jar","fileDate":"2026-03-10T22:02:15.497Z","fileLength":774148,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7740/400/lithium-neoforge-0.15.3%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2404882156,"invalidFingerprint":false},{"foldername":"net","fingerprint":2001482883,"invalidFingerprint":false},{"foldername":"lithium-neoforge-mixin-config.md","fingerprint":1031849278,"invalidFingerprint":false},{"foldername":"lithium-neoforge.mixins.json","fingerprint":2646224670,"invalidFingerprint":false},{"foldername":"assets","fingerprint":939467294,"invalidFingerprint":false},{"foldername":"lithium.accesswidener","fingerprint":2830252076,"invalidFingerprint":false},{"foldername":"lithium.mixins.json","fingerprint":642967667,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":1136524626,"invalidFingerprint":false}],"packageFingerprint":1666655641,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":360438,"fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","hashes":[{"type":1,"value":"9fd5fa9076044180ae7f51672de74669196ec72e"},{"type":2,"value":"8207aaae8fea906c7eb2447da40b8c83"}]},"dateInstalled":"2026-05-07T21:58:49.5075913Z","dateUpdated":"2026-05-07T21:58:49.5088534Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lithium-neoforge-0.15.3+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7740400,"fileName":"lithium-neoforge-0.15.3+mc1.21.1.jar","fileDate":"2026-03-10T22:02:15.497Z","fileLength":774148,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7740/400/lithium-neoforge-0.15.3%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2404882156,"invalidFingerprint":false},{"foldername":"net","fingerprint":2001482883,"invalidFingerprint":false},{"foldername":"lithium-neoforge-mixin-config.md","fingerprint":1031849278,"invalidFingerprint":false},{"foldername":"lithium-neoforge.mixins.json","fingerprint":2646224670,"invalidFingerprint":false},{"foldername":"assets","fingerprint":939467294,"invalidFingerprint":false},{"foldername":"lithium.accesswidener","fingerprint":2830252076,"invalidFingerprint":false},{"foldername":"lithium.mixins.json","fingerprint":642967667,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":1136524626,"invalidFingerprint":false}],"packageFingerprint":1666655641,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":360438,"fileNameOnDisk":"lithium-neoforge-0.15.3+mc1.21.1.jar","hashes":[{"type":1,"value":"9fd5fa9076044180ae7f51672de74669196ec72e"},{"type":2,"value":"8207aaae8fea906c7eb2447da40b8c83"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c24d7cc3-5831-4f89-9cab-35b52e35268f","modSource":0,"addonID":309927,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,422,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Curios API (Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","authors":[{"id":34683772,"name":"TheIllusiveC4"}],"primaryAuthor":"TheIllusiveC4","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/curios","issuesURL":"https://github.com/TheIllusiveC4/Curios/issues","wikiURL":"https://docs.illusivesoulworks.com/category/curios","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/195/772/256/256/636881112930494939.png","tags":[],"installedFile":{"id":6529130,"fileName":"curios-neoforge-9.5.1+1.21.1.jar","fileDate":"2025-05-14T13:34:49.793Z","fileLength":410690,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6529/130/curios-neoforge-9.5.1%2b1.21.1.jar","isAlternate":false,"alternateFileId":6529131,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3324915172,"invalidFingerprint":false},{"foldername":"top","fingerprint":4196694651,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1471779260,"invalidFingerprint":false},{"foldername":"curios.mixins.json","fingerprint":777536334,"invalidFingerprint":false},{"foldername":"curios.neoforge.mixins.json","fingerprint":839691594,"invalidFingerprint":false},{"foldername":"curios_icon.png","fingerprint":1224242090,"invalidFingerprint":false},{"foldername":"data","fingerprint":2640981864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3015994141,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1496262901,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2760232948,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1522654010,"invalidFingerprint":false}],"packageFingerprint":933317947,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":309927,"fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","hashes":[{"type":1,"value":"418fcd42e3a7844c9bdc71c9b6401fdb3894e0c4"},{"type":2,"value":"e8f0a3574264bb202c153b90293dc84c"}]},"dateInstalled":"2026-05-07T22:51:40.8942401Z","dateUpdated":"2026-05-07T22:51:40.8959559Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\curios-neoforge-9.5.1+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6529130,"fileName":"curios-neoforge-9.5.1+1.21.1.jar","fileDate":"2025-05-14T13:34:49.793Z","fileLength":410690,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6529/130/curios-neoforge-9.5.1%2b1.21.1.jar","isAlternate":false,"alternateFileId":6529131,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3324915172,"invalidFingerprint":false},{"foldername":"top","fingerprint":4196694651,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1471779260,"invalidFingerprint":false},{"foldername":"curios.mixins.json","fingerprint":777536334,"invalidFingerprint":false},{"foldername":"curios.neoforge.mixins.json","fingerprint":839691594,"invalidFingerprint":false},{"foldername":"curios_icon.png","fingerprint":1224242090,"invalidFingerprint":false},{"foldername":"data","fingerprint":2640981864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3015994141,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1496262901,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2760232948,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1522654010,"invalidFingerprint":false}],"packageFingerprint":933317947,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":309927,"fileNameOnDisk":"curios-neoforge-9.5.1+1.21.1.jar","hashes":[{"type":1,"value":"418fcd42e3a7844c9bdc71c9b6401fdb3894e0c4"},{"type":2,"value":"e8f0a3574264bb202c153b90293dc84c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7fc0d8ec-ff22-49a7-94f6-05c43415c40c","modSource":0,"addonID":426558,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,411,414,416],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Alex's Mobs","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alexsmobs-1.22.9.jar","authors":[{"id":13086062,"name":"sbom_xela"}],"primaryAuthor":"sbom_xela","primaryCategoryId":411,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alexs-mobs","issuesURL":"https://github.com/Alex-the-666/AlexsMobs/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/543/777/256/256/637874731161865623.jpeg","tags":[],"installedFile":{"id":5698791,"fileName":"alexsmobs-1.22.9.jar","fileDate":"2024-09-06T21:38:23.41Z","fileLength":26350793,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5698/791/alexsmobs-1.22.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2205808464,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1562430565,"invalidFingerprint":false},{"foldername":"com","fingerprint":2755438377,"invalidFingerprint":false},{"foldername":"data","fingerprint":1481537154,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1208765709,"invalidFingerprint":false}],"packageFingerprint":1000930585,"gameVersion":["NeoForge","1.20.1","Forge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":426558,"fileNameOnDisk":"alexsmobs-1.22.9.jar","hashes":[{"type":1,"value":"dbf93d2f1da19e16739e91e8ea0fc6f4bc2f228f"},{"type":2,"value":"504050d1f2e2c3019b6f53377ca354c6"}]},"dateInstalled":"2026-05-07T23:30:16.8604217Z","dateUpdated":"2026-05-07T23:30:16.8681275Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alexsmobs-1.22.9.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5698791,"fileName":"alexsmobs-1.22.9.jar","fileDate":"2024-09-06T21:38:23.41Z","fileLength":26350793,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5698/791/alexsmobs-1.22.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2205808464,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1562430565,"invalidFingerprint":false},{"foldername":"com","fingerprint":2755438377,"invalidFingerprint":false},{"foldername":"data","fingerprint":1481537154,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1208765709,"invalidFingerprint":false}],"packageFingerprint":1000930585,"gameVersion":["NeoForge","1.20.1","Forge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":426558,"fileNameOnDisk":"alexsmobs-1.22.9.jar","hashes":[{"type":1,"value":"dbf93d2f1da19e16739e91e8ea0fc6f4bc2f228f"},{"type":2,"value":"504050d1f2e2c3019b6f53377ca354c6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"a11abd0c-55bc-4f69-8a35-bd951b6a38fa","modSource":0,"addonID":1415721,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Alex's Mobs (Unofficial Port)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alexsmobs-1.22.17.jar","authors":[{"id":130596600,"name":"Raguto"}],"primaryAuthor":"Raguto","primaryCategoryId":411,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alexs-mobs-1-21-1-port","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1585/200/256/256/639025960348424862.png","tags":[],"installedFile":{"id":7528193,"fileName":"alexsmobs-1.22.17.jar","fileDate":"2026-01-26T01:53:08.14Z","fileLength":26620546,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7528/193/alexsmobs-1.22.17.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1415723,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4057390883,"invalidFingerprint":false},{"foldername":"com","fingerprint":2005632482,"invalidFingerprint":false},{"foldername":"alexs_mobs.png","fingerprint":4096587953,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2255002514,"invalidFingerprint":false},{"foldername":"assets","fingerprint":352886954,"invalidFingerprint":false},{"foldername":"data","fingerprint":3322499146,"invalidFingerprint":false}],"packageFingerprint":2359244830,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1415721,"fileNameOnDisk":"alexsmobs-1.22.17.jar","hashes":[{"type":1,"value":"5070e8070f60650d773bfd9f1d031496f8f50259"},{"type":2,"value":"87970b4846bffc20123ecd267d888ee8"}]},"dateInstalled":"2026-05-07T23:28:47.1975152Z","dateUpdated":"2026-05-07T23:28:47.20893Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alexsmobs-1.22.17.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7528193,"fileName":"alexsmobs-1.22.17.jar","fileDate":"2026-01-26T01:53:08.14Z","fileLength":26620546,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7528/193/alexsmobs-1.22.17.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1415723,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4057390883,"invalidFingerprint":false},{"foldername":"com","fingerprint":2005632482,"invalidFingerprint":false},{"foldername":"alexs_mobs.png","fingerprint":4096587953,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2255002514,"invalidFingerprint":false},{"foldername":"assets","fingerprint":352886954,"invalidFingerprint":false},{"foldername":"data","fingerprint":3322499146,"invalidFingerprint":false}],"packageFingerprint":2359244830,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1415721,"fileNameOnDisk":"alexsmobs-1.22.17.jar","hashes":[{"type":1,"value":"5070e8070f60650d773bfd9f1d031496f8f50259"},{"type":2,"value":"87970b4846bffc20123ecd267d888ee8"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f1669f7c-192b-4189-94a0-6d28e7e5d89c","modSource":0,"addonID":1335102,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,426,5191,422,419],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cataclysm & BetterCombat - Compatibility","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","authors":[{"id":102254308,"name":"rymusov"}],"primaryAuthor":"rymusov","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cataclysm-bettercombat-compatibility","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1418/303/256/256/638918904339601733.png","tags":[],"installedFile":{"id":7350924,"fileName":"cataclysm_compat_1.21.1-1.0.2.jar","fileDate":"2025-12-18T19:20:14.867Z","fileLength":19377,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7350/924/cataclysm_compat_1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":639842,"type":3}],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2831666524,"invalidFingerprint":false},{"foldername":"data","fingerprint":1182505847,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1527607326,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":4101697382,"invalidFingerprint":false}],"packageFingerprint":1410873774,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335102,"fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"34e9b705c62e8e947b9e37f899782e1e2db976a8"},{"type":2,"value":"8502bc89c86a8847f2c17e3d9baf61ce"}]},"dateInstalled":"2026-05-07T22:51:48.6809253Z","dateUpdated":"2026-05-07T22:51:48.682435Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cataclysm_compat_1.21.1-1.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7350924,"fileName":"cataclysm_compat_1.21.1-1.0.2.jar","fileDate":"2025-12-18T19:20:14.867Z","fileLength":19377,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7350/924/cataclysm_compat_1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":639842,"type":3}],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2831666524,"invalidFingerprint":false},{"foldername":"data","fingerprint":1182505847,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1527607326,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":4101697382,"invalidFingerprint":false}],"packageFingerprint":1410873774,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335102,"fileNameOnDisk":"cataclysm_compat_1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"34e9b705c62e8e947b9e37f899782e1e2db976a8"},{"type":2,"value":"8502bc89c86a8847f2c17e3d9baf61ce"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8e988a6e-49f3-428d-9ebc-0ea3b64221de","modSource":0,"addonID":551520,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better Fps - Render Distance[Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/better-fps-render-distance","issuesURL":"https://github.com/someaddons/betterfpsdistances/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/531/771/256/256/637854357042030339.png","tags":[],"installedFile":{"id":5723250,"fileName":"betterfpsdist-1.21-6.0.jar","fileDate":"2024-09-14T19:30:01.483Z","fileLength":22742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5723/250/betterfpsdist-1.21-6.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2896484488,"invalidFingerprint":false},{"foldername":"com","fingerprint":1918726339,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4013170233,"invalidFingerprint":false},{"foldername":"betterfpsdist.mixins.json","fingerprint":576717991,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2233392733,"invalidFingerprint":false}],"packageFingerprint":4067530713,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551520,"fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","hashes":[{"type":1,"value":"5377aae3a0f0eb65aa5dceca4985f53480a73db5"},{"type":2,"value":"081882282efe6239ac294b2d1fe2cd22"}]},"dateInstalled":"2026-05-07T21:58:56.4479558Z","dateUpdated":"2026-05-07T21:58:56.4491046Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\betterfpsdist-1.21-6.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5723250,"fileName":"betterfpsdist-1.21-6.0.jar","fileDate":"2024-09-14T19:30:01.483Z","fileLength":22742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5723/250/betterfpsdist-1.21-6.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2896484488,"invalidFingerprint":false},{"foldername":"com","fingerprint":1918726339,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4013170233,"invalidFingerprint":false},{"foldername":"betterfpsdist.mixins.json","fingerprint":576717991,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2233392733,"invalidFingerprint":false}],"packageFingerprint":4067530713,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551520,"fileNameOnDisk":"betterfpsdist-1.21-6.0.jar","hashes":[{"type":1,"value":"5377aae3a0f0eb65aa5dceca4985f53480a73db5"},{"type":2,"value":"081882282efe6239ac294b2d1fe2cd22"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"bf62621c-d74e-4a10-a58c-9885e16d859d","modSource":0,"addonID":1046692,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,422,419,411,408],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Elemental Maces | 4 New Maces with Effects!","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"}],"primaryAuthor":"Lupin","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/elemental-maces","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1055/292/256/256/638586511550359097.webp","tags":[],"installedFile":{"id":5605495,"fileName":"elementalmaces-neoforge-1.21-1.0.0.jar","fileDate":"2024-08-07T18:14:05.313Z","fileLength":39705,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5605/495/elementalmaces-neoforge-1.21-1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1037680,"type":2},{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1540774448,"invalidFingerprint":false},{"foldername":"architectury_inject_elementalmaces_common_250d11bf27f244caba4d16eb48636073_be45bb4de563e7a26144ae90189de1915d070652849c3d609a2c3ac58478acc7elementalmacescommon121100devjar","fingerprint":1019201436,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1473953320,"invalidFingerprint":false},{"foldername":"data","fingerprint":754354434,"invalidFingerprint":false},{"foldername":"dev","fingerprint":792556699,"invalidFingerprint":false},{"foldername":"elementalmaces_icon.png","fingerprint":2454633851,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2169904997,"invalidFingerprint":false}],"packageFingerprint":634138649,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1046692,"fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","hashes":[{"type":1,"value":"6788da71dc4871f5b68c0bc17aab2ce910f3d42e"},{"type":2,"value":"7701bd7ed78e1e216b827ce89e409bf4"}]},"dateInstalled":"2026-05-07T21:58:07.9071871Z","dateUpdated":"2026-05-07T21:58:07.9082943Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\elementalmaces-neoforge-1.21-1.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5605495,"fileName":"elementalmaces-neoforge-1.21-1.0.0.jar","fileDate":"2024-08-07T18:14:05.313Z","fileLength":39705,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5605/495/elementalmaces-neoforge-1.21-1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1037680,"type":2},{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1540774448,"invalidFingerprint":false},{"foldername":"architectury_inject_elementalmaces_common_250d11bf27f244caba4d16eb48636073_be45bb4de563e7a26144ae90189de1915d070652849c3d609a2c3ac58478acc7elementalmacescommon121100devjar","fingerprint":1019201436,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1473953320,"invalidFingerprint":false},{"foldername":"data","fingerprint":754354434,"invalidFingerprint":false},{"foldername":"dev","fingerprint":792556699,"invalidFingerprint":false},{"foldername":"elementalmaces_icon.png","fingerprint":2454633851,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2169904997,"invalidFingerprint":false}],"packageFingerprint":634138649,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1046692,"fileNameOnDisk":"elementalmaces-neoforge-1.21-1.0.0.jar","hashes":[{"type":1,"value":"6788da71dc4871f5b68c0bc17aab2ce910f3d42e"},{"type":2,"value":"7701bd7ed78e1e216b827ce89e409bf4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"d9fcce6f-a94f-4394-a521-ec87445278ef","modSource":0,"addonID":686911,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ImmediatelyFast","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","authors":[{"id":103808552,"name":"RaphiMC"}],"primaryAuthor":"RaphiMC","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/immediatelyfast","issuesURL":"https://github.com/RaphiMC/ImmediatelyFast/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/873/971/256/256/638294478643875692.png","tags":[],"installedFile":{"id":7537795,"fileName":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","fileDate":"2026-01-27T21:12:04.863Z","fileLength":368598,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7537/795/ImmediatelyFast-NeoForge-1.6.10%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2816977017,"invalidFingerprint":false},{"foldername":"LICENSE_ImmediatelyFast","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"architectury-common.json","fingerprint":1094672885,"invalidFingerprint":false},{"foldername":"architectury_inject_ImmediatelyFast_common_762fbe83acbd48729327a9c045709385_d76623ad68b9b9c83d5f2a039a963a6cde8f6f797b7c9c0e8731e26654d92c0bcommon16101211devjar","fingerprint":3752492918,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4017847587,"invalidFingerprint":false},{"foldername":"immediatelyfast-common.mixins.json","fingerprint":1203811454,"invalidFingerprint":false},{"foldername":"immediatelyfast-icon.png","fingerprint":1842373389,"invalidFingerprint":false},{"foldername":"immediatelyfast-neoforge.mixins.json","fingerprint":1898729016,"invalidFingerprint":false},{"foldername":"net","fingerprint":1029988886,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1022878643,"invalidFingerprint":false}],"packageFingerprint":1221808790,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":686911,"fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","hashes":[{"type":1,"value":"f1f5cccd7cb59d875f44566b2e557ccecc8c33fb"},{"type":2,"value":"567bb6d9155070ad858740af12450c63"}]},"dateInstalled":"2026-05-07T21:58:44.5193462Z","dateUpdated":"2026-05-07T21:58:44.5205715Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7537795,"fileName":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","fileDate":"2026-01-27T21:12:04.863Z","fileLength":368598,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7537/795/ImmediatelyFast-NeoForge-1.6.10%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2816977017,"invalidFingerprint":false},{"foldername":"LICENSE_ImmediatelyFast","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"architectury-common.json","fingerprint":1094672885,"invalidFingerprint":false},{"foldername":"architectury_inject_ImmediatelyFast_common_762fbe83acbd48729327a9c045709385_d76623ad68b9b9c83d5f2a039a963a6cde8f6f797b7c9c0e8731e26654d92c0bcommon16101211devjar","fingerprint":3752492918,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4017847587,"invalidFingerprint":false},{"foldername":"immediatelyfast-common.mixins.json","fingerprint":1203811454,"invalidFingerprint":false},{"foldername":"immediatelyfast-icon.png","fingerprint":1842373389,"invalidFingerprint":false},{"foldername":"immediatelyfast-neoforge.mixins.json","fingerprint":1898729016,"invalidFingerprint":false},{"foldername":"net","fingerprint":1029988886,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1022878643,"invalidFingerprint":false}],"packageFingerprint":1221808790,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":686911,"fileNameOnDisk":"ImmediatelyFast-NeoForge-1.6.10+1.21.1.jar","hashes":[{"type":1,"value":"f1f5cccd7cb59d875f44566b2e557ccecc8c33fb"},{"type":2,"value":"567bb6d9155070ad858740af12450c63"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9d4ad848-d728-4774-b480-7d88d9e18acd","modSource":0,"addonID":858542,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424,423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Searchables","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/searchables","issuesURL":"https://github.com/jaredlll08/searchables/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/814/175/256/256/638189233295197018.png","tags":[],"installedFile":{"id":5831692,"fileName":"Searchables-neoforge-1.21.1-1.0.2.jar","fileDate":"2024-10-21T20:44:39.39Z","fileLength":77326,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5831/692/Searchables-neoforge-1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2167244682,"invalidFingerprint":false},{"foldername":"com","fingerprint":3685677713,"invalidFingerprint":false},{"foldername":"searchables.neoforge.mixins.json","fingerprint":3433993331,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3218994496,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2110428171,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1386288080,"invalidFingerprint":false},{"foldername":"searchables.mixins.json","fingerprint":1878814348,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":267180278,"invalidFingerprint":false}],"packageFingerprint":2093242437,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":858542,"fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"5b8a0b43a474c066371b2e16f9bfb88622552a74"},{"type":2,"value":"0a0a8665bb4d77e3f8139750cb98d9e4"}]},"dateInstalled":"2026-05-07T21:58:27.6285392Z","dateUpdated":"2026-05-07T21:58:27.6301055Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Searchables-neoforge-1.21.1-1.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5831692,"fileName":"Searchables-neoforge-1.21.1-1.0.2.jar","fileDate":"2024-10-21T20:44:39.39Z","fileLength":77326,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5831/692/Searchables-neoforge-1.21.1-1.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2167244682,"invalidFingerprint":false},{"foldername":"com","fingerprint":3685677713,"invalidFingerprint":false},{"foldername":"searchables.neoforge.mixins.json","fingerprint":3433993331,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3218994496,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2110428171,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1386288080,"invalidFingerprint":false},{"foldername":"searchables.mixins.json","fingerprint":1878814348,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":267180278,"invalidFingerprint":false}],"packageFingerprint":2093242437,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":858542,"fileNameOnDisk":"Searchables-neoforge-1.21.1-1.0.2.jar","hashes":[{"type":1,"value":"5b8a0b43a474c066371b2e16f9bfb88622552a74"},{"type":2,"value":"0a0a8665bb4d77e3f8139750cb98d9e4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"71d1036c-d201-4290-9b58-954c3506822f","modSource":0,"addonID":324717,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Jade 🔍","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","authors":[{"id":21286654,"name":"Snownee"}],"primaryAuthor":"Snownee","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/jade","issuesURL":"https://github.com/Snownee/Jade/issues?q=is%3Aissue","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/207/323/256/256/636965628804677340.png","tags":[],"installedFile":{"id":7545219,"fileName":"Jade-1.21.1-NeoForge-15.10.5.jar","fileDate":"2026-01-29T11:11:45.407Z","fileLength":725742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7545/219/Jade-1.21.1-NeoForge-15.10.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1010328523,"invalidFingerprint":false},{"foldername":"snownee","fingerprint":4133922544,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2300343325,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1859719455,"invalidFingerprint":false},{"foldername":"jade.mixins.json","fingerprint":3905305630,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":890290696,"invalidFingerprint":false}],"packageFingerprint":1963309046,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":324717,"fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","hashes":[{"type":1,"value":"d5bf134b3dbde9f5258666823900e21341dc0a50"},{"type":2,"value":"80f9186d25b02ebbfa5773416f5da410"}]},"dateInstalled":"2026-05-07T22:44:28.6589114Z","dateUpdated":"2026-05-07T22:44:28.6617915Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Jade-1.21.1-NeoForge-15.10.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7545219,"fileName":"Jade-1.21.1-NeoForge-15.10.5.jar","fileDate":"2026-01-29T11:11:45.407Z","fileLength":725742,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7545/219/Jade-1.21.1-NeoForge-15.10.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1010328523,"invalidFingerprint":false},{"foldername":"snownee","fingerprint":4133922544,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2300343325,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1859719455,"invalidFingerprint":false},{"foldername":"jade.mixins.json","fingerprint":3905305630,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":890290696,"invalidFingerprint":false}],"packageFingerprint":1963309046,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":324717,"fileNameOnDisk":"Jade-1.21.1-NeoForge-15.10.5.jar","hashes":[{"type":1,"value":"d5bf134b3dbde9f5258666823900e21341dc0a50"},{"type":2,"value":"80f9186d25b02ebbfa5773416f5da410"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1340439b-c060-4bdd-8cee-806e4dd3ef6f","modSource":0,"addonID":263420,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Xaero's Minimap","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","authors":[{"id":12362980,"name":"xaero96"}],"primaryAuthor":"xaero96","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap","issuesURL":"https://legacy.curseforge.com/minecraft/mc-mods/xaeros-minimap/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/92/854/256/256/636258666554688823.png","tags":[],"installedFile":{"id":8046966,"fileName":"xaerominimap-neoforge-1.21.1-25.3.13.jar","fileDate":"2026-05-06T07:40:46.69Z","fileLength":2138329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/966/xaerominimap-neoforge-1.21.1-25.3.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":636608,"type":2},{"addonId":317780,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1968926405,"invalidFingerprint":false},{"foldername":"LICENSE_xaerohud","fingerprint":2362711594,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3101686611,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1956780562,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":2370513085,"invalidFingerprint":false},{"foldername":"xaerohud.mixins.json","fingerprint":368816408,"invalidFingerprint":false},{"foldername":"xaerohud.neoforge.mixins.json","fingerprint":1871963410,"invalidFingerprint":false},{"foldername":"xaerominimap.mixins.json","fingerprint":2847352557,"invalidFingerprint":false},{"foldername":"xaerominimap.neoforge.mixins.json","fingerprint":1845903568,"invalidFingerprint":false}],"packageFingerprint":1593901604,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":263420,"fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","hashes":[{"type":1,"value":"06cdb37f394bdbebce94c64644ae4bc21bd98959"},{"type":2,"value":"093968855bab5ccea048eb2e7519de03"}]},"dateInstalled":"2026-05-07T22:44:45.0658065Z","dateUpdated":"2026-05-07T22:44:45.0702062Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\xaerominimap-neoforge-1.21.1-25.3.13.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8046966,"fileName":"xaerominimap-neoforge-1.21.1-25.3.13.jar","fileDate":"2026-05-06T07:40:46.69Z","fileLength":2138329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/966/xaerominimap-neoforge-1.21.1-25.3.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":636608,"type":2},{"addonId":317780,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1968926405,"invalidFingerprint":false},{"foldername":"LICENSE_xaerohud","fingerprint":2362711594,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3101686611,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1956780562,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":2370513085,"invalidFingerprint":false},{"foldername":"xaerohud.mixins.json","fingerprint":368816408,"invalidFingerprint":false},{"foldername":"xaerohud.neoforge.mixins.json","fingerprint":1871963410,"invalidFingerprint":false},{"foldername":"xaerominimap.mixins.json","fingerprint":2847352557,"invalidFingerprint":false},{"foldername":"xaerominimap.neoforge.mixins.json","fingerprint":1845903568,"invalidFingerprint":false}],"packageFingerprint":1593901604,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":263420,"fileNameOnDisk":"xaerominimap-neoforge-1.21.1-25.3.13.jar","hashes":[{"type":1,"value":"06cdb37f394bdbebce94c64644ae4bc21bd98959"},{"type":2,"value":"093968855bab5ccea048eb2e7519de03"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6776e41c-f52e-4439-b561-8f568bc28d33","modSource":0,"addonID":659887,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,422,419],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Simply Swords [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"simplyswords-neoforge-1.63.0-1.21.1.jar","authors":[{"id":31238923,"name":"sweenuss"}],"primaryAuthor":"sweenuss","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/simply-swords","issuesURL":"https://github.com/Sweenus/SimplySwords/issues","wikiURL":"https://github.com/Sweenus/SimplySwords/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/611/576/256/256/637996129346404798_animated.gif","tags":[],"installedFile":{"id":7704396,"fileName":"simplyswords-neoforge-1.63.0-1.21.1.jar","fileDate":"2026-03-03T05:46:20.053Z","fileLength":12617777,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7704/396/simplyswords-neoforge-1.63.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":639842,"type":2},{"addonId":1475755,"type":3},{"addonId":419699,"type":3},{"addonId":1005914,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1872807656,"invalidFingerprint":false},{"foldername":"SimplySwordsLogoFinal2.gif","fingerprint":1158720914,"invalidFingerprint":false},{"foldername":"architectury_inject_SimplySwords_common_0132a7ae9cf04d6a97ce56e9766113e5_1f7a9d647e06d7f1a81021c301a6b54cd185144a0d7c82d7fdbefc1880afc534simplyswordscommon16301211devjar","fingerprint":4083429699,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1855773167,"invalidFingerprint":false},{"foldername":"data","fingerprint":2359163329,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2102559612,"invalidFingerprint":false},{"foldername":"net","fingerprint":93285192,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":827147130,"invalidFingerprint":false},{"foldername":"simplyswords-common-common-refmap.json","fingerprint":89617867,"invalidFingerprint":false},{"foldername":"simplyswords-common.mixins.json","fingerprint":3957669456,"invalidFingerprint":false},{"foldername":"simplyswords.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"simplyswords.mixins.json","fingerprint":2073515453,"invalidFingerprint":false}],"packageFingerprint":3915563349,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":659887,"fileNameOnDisk":"simplyswords-neoforge-1.63.0-1.21.1.jar","hashes":[{"type":1,"value":"7dd9bdbc601f8d8a8e5bbe2d2db5343321ee2fb4"},{"type":2,"value":"05e8f5dfbd0c0ff561c305ccb2eca965"}]},"dateInstalled":"2026-05-07T23:25:54.0428265Z","dateUpdated":"2026-05-07T23:25:54.0477203Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\simplyswords-neoforge-1.63.0-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7704396,"fileName":"simplyswords-neoforge-1.63.0-1.21.1.jar","fileDate":"2026-03-03T05:46:20.053Z","fileLength":12617777,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7704/396/simplyswords-neoforge-1.63.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":639842,"type":2},{"addonId":1475755,"type":3},{"addonId":419699,"type":3},{"addonId":1005914,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1872807656,"invalidFingerprint":false},{"foldername":"SimplySwordsLogoFinal2.gif","fingerprint":1158720914,"invalidFingerprint":false},{"foldername":"architectury_inject_SimplySwords_common_0132a7ae9cf04d6a97ce56e9766113e5_1f7a9d647e06d7f1a81021c301a6b54cd185144a0d7c82d7fdbefc1880afc534simplyswordscommon16301211devjar","fingerprint":4083429699,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1855773167,"invalidFingerprint":false},{"foldername":"data","fingerprint":2359163329,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2102559612,"invalidFingerprint":false},{"foldername":"net","fingerprint":93285192,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":827147130,"invalidFingerprint":false},{"foldername":"simplyswords-common-common-refmap.json","fingerprint":89617867,"invalidFingerprint":false},{"foldername":"simplyswords-common.mixins.json","fingerprint":3957669456,"invalidFingerprint":false},{"foldername":"simplyswords.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"simplyswords.mixins.json","fingerprint":2073515453,"invalidFingerprint":false}],"packageFingerprint":3915563349,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":659887,"fileNameOnDisk":"simplyswords-neoforge-1.63.0-1.21.1.jar","hashes":[{"type":1,"value":"7dd9bdbc601f8d8a8e5bbe2d2db5343321ee2fb4"},{"type":2,"value":"05e8f5dfbd0c0ff561c305ccb2eca965"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b0d832e0-1c8e-4540-bf14-e2efdc2dcda2","modSource":0,"addonID":856906,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Leaky - Item Lag Fix[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"leaky-1.21-2.4.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/leaky","issuesURL":"https://github.com/someaddons/Leaky/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/812/215/256/256/638185479372322299.png","tags":[],"installedFile":{"id":7392199,"fileName":"leaky-1.21-2.4.jar","fileDate":"2025-12-29T12:24:47.9Z","fileLength":15483,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7392/199/leaky-1.21-2.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2500885440,"invalidFingerprint":false},{"foldername":"com","fingerprint":1121524860,"invalidFingerprint":false},{"foldername":"assets","fingerprint":412992922,"invalidFingerprint":false},{"foldername":"leaky.mixins.json","fingerprint":4252026864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":800491986,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":856906,"fileNameOnDisk":"leaky-1.21-2.4.jar","hashes":[{"type":1,"value":"71b410b8c9567c8a2ad9fdb637f462f1f52bc9e2"},{"type":2,"value":"ae878840fd20ad1add5f781736d2ed97"}]},"dateInstalled":"2026-05-07T21:57:56.8165703Z","dateUpdated":"2026-05-07T21:57:56.8175132Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\leaky-1.21-2.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7392199,"fileName":"leaky-1.21-2.4.jar","fileDate":"2025-12-29T12:24:47.9Z","fileLength":15483,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7392/199/leaky-1.21-2.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2500885440,"invalidFingerprint":false},{"foldername":"com","fingerprint":1121524860,"invalidFingerprint":false},{"foldername":"assets","fingerprint":412992922,"invalidFingerprint":false},{"foldername":"leaky.mixins.json","fingerprint":4252026864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":800491986,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":856906,"fileNameOnDisk":"leaky-1.21-2.4.jar","hashes":[{"type":1,"value":"71b410b8c9567c8a2ad9fdb637f462f1f52bc9e2"},{"type":2,"value":"ae878840fd20ad1add5f781736d2ed97"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e8fcf26e-a4f2-4b56-b772-2ec35dba7c0b","modSource":0,"addonID":1007509,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[393,400,403,402,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Woods","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Woods - 1.1.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-woods","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1284/419/256/256/638835340044795612.webp","tags":[],"installedFile":{"id":7451279,"fileName":"Realistic Woods - 1.1.zip","fileDate":"2026-01-12T18:13:35.927Z","fileLength":606602,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/279/Realistic%20Woods%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3169165280,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":929713890,"invalidFingerprint":false}],"packageFingerprint":289928230,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1007509,"fileNameOnDisk":"Realistic Woods - 1.1.zip","hashes":[{"type":1,"value":"e784546e3f17b8c241f2cb001b64621b9fa90620"},{"type":2,"value":"4736fd8fb15be5fba2ef8a5ffa0f4f45"}]},"dateInstalled":"2026-05-07T21:58:55.141516Z","dateUpdated":"2026-05-07T21:58:55.1430803Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Woods - 1.1.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7451279,"fileName":"Realistic Woods - 1.1.zip","fileDate":"2026-01-12T18:13:35.927Z","fileLength":606602,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/279/Realistic%20Woods%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3169165280,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":929713890,"invalidFingerprint":false}],"packageFingerprint":289928230,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1007509,"fileNameOnDisk":"Realistic Woods - 1.1.zip","hashes":[{"type":1,"value":"e784546e3f17b8c241f2cb001b64621b9fa90620"},{"type":2,"value":"4736fd8fb15be5fba2ef8a5ffa0f4f45"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"18eafb97-a682-4a98-959a-2184b00ec3c3","modSource":0,"addonID":628539,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,421,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Wood Good)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"},{"id":12753167,"name":"xelbayria"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/every-compat","issuesURL":"https://github.com/MehVahdJukaar/WoodGood/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/554/210/256/256/637896029495149356_animated.gif","tags":[],"installedFile":{"id":8017083,"fileName":"everycomp-1.21-2.11.40-neoforge.jar","fileDate":"2026-04-30T20:17:06.287Z","fileLength":2636617,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8017/83/everycomp-1.21-2.11.40-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":690226,"type":2},{"addonId":897116,"type":2},{"addonId":845097,"type":2},{"addonId":351725,"type":2},{"addonId":378646,"type":2},{"addonId":902986,"type":2},{"addonId":472521,"type":2},{"addonId":274350,"type":2},{"addonId":964817,"type":2},{"addonId":496913,"type":2},{"addonId":989479,"type":2},{"addonId":400933,"type":2},{"addonId":860325,"type":2},{"addonId":913586,"type":2},{"addonId":243121,"type":2},{"addonId":858032,"type":2},{"addonId":352835,"type":2},{"addonId":556861,"type":2},{"addonId":866509,"type":2},{"addonId":417365,"type":2},{"addonId":398521,"type":2},{"addonId":629153,"type":2},{"addonId":849364,"type":2},{"addonId":538214,"type":2},{"addonId":363569,"type":2},{"addonId":305840,"type":2},{"addonId":312359,"type":2},{"addonId":389697,"type":2},{"addonId":285121,"type":2},{"addonId":547069,"type":2},{"addonId":266228,"type":2},{"addonId":661902,"type":2},{"addonId":467136,"type":2},{"addonId":223852,"type":2},{"addonId":353515,"type":2},{"addonId":606011,"type":2},{"addonId":531744,"type":2},{"addonId":543610,"type":2},{"addonId":1122260,"type":2},{"addonId":328085,"type":2},{"addonId":227639,"type":2},{"addonId":341575,"type":2},{"addonId":527361,"type":2},{"addonId":610492,"type":2},{"addonId":527296,"type":2},{"addonId":254794,"type":2},{"addonId":362528,"type":2},{"addonId":602059,"type":2},{"addonId":565095,"type":2},{"addonId":380617,"type":2},{"addonId":875843,"type":2},{"addonId":453925,"type":2},{"addonId":634277,"type":2},{"addonId":694349,"type":2},{"addonId":499980,"type":3},{"addonId":456956,"type":2},{"addonId":817272,"type":2},{"addonId":337396,"type":2},{"addonId":531188,"type":2},{"addonId":433862,"type":2},{"addonId":659110,"type":2},{"addonId":359540,"type":2},{"addonId":687475,"type":2},{"addonId":502372,"type":2},{"addonId":1308420,"type":2},{"addonId":352039,"type":2},{"addonId":897377,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2646903333,"invalidFingerprint":false},{"foldername":"architectury_inject_everycompat_common_1c749490e4c3445c93c72769336c64d1_73c4f44139e7c8cf0641eea81964dfcf77583c216a4afaa8e013ba7e9726bd9eeverycomp12121140devjar","fingerprint":3946783219,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1828148611,"invalidFingerprint":false},{"foldername":"data","fingerprint":1241522621,"invalidFingerprint":false},{"foldername":"everycomp-common.mixins.json","fingerprint":1730704052,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":116210111,"invalidFingerprint":false},{"foldername":"net","fingerprint":3416510759,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":4292068571,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":628539,"fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","hashes":[{"type":1,"value":"c15651f8ba76afbb869a2407d29c15a57f9d5d19"},{"type":2,"value":"b908b4fe169619f8cbc74fca40c0cc68"}]},"dateInstalled":"2026-05-07T23:01:00.8666323Z","dateUpdated":"2026-05-07T23:01:00.8703319Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\everycomp-1.21-2.11.40-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8017083,"fileName":"everycomp-1.21-2.11.40-neoforge.jar","fileDate":"2026-04-30T20:17:06.287Z","fileLength":2636617,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8017/83/everycomp-1.21-2.11.40-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":690226,"type":2},{"addonId":897116,"type":2},{"addonId":845097,"type":2},{"addonId":351725,"type":2},{"addonId":378646,"type":2},{"addonId":902986,"type":2},{"addonId":472521,"type":2},{"addonId":274350,"type":2},{"addonId":964817,"type":2},{"addonId":496913,"type":2},{"addonId":989479,"type":2},{"addonId":400933,"type":2},{"addonId":860325,"type":2},{"addonId":913586,"type":2},{"addonId":243121,"type":2},{"addonId":858032,"type":2},{"addonId":352835,"type":2},{"addonId":556861,"type":2},{"addonId":866509,"type":2},{"addonId":417365,"type":2},{"addonId":398521,"type":2},{"addonId":629153,"type":2},{"addonId":849364,"type":2},{"addonId":538214,"type":2},{"addonId":363569,"type":2},{"addonId":305840,"type":2},{"addonId":312359,"type":2},{"addonId":389697,"type":2},{"addonId":285121,"type":2},{"addonId":547069,"type":2},{"addonId":266228,"type":2},{"addonId":661902,"type":2},{"addonId":467136,"type":2},{"addonId":223852,"type":2},{"addonId":353515,"type":2},{"addonId":606011,"type":2},{"addonId":531744,"type":2},{"addonId":543610,"type":2},{"addonId":1122260,"type":2},{"addonId":328085,"type":2},{"addonId":227639,"type":2},{"addonId":341575,"type":2},{"addonId":527361,"type":2},{"addonId":610492,"type":2},{"addonId":527296,"type":2},{"addonId":254794,"type":2},{"addonId":362528,"type":2},{"addonId":602059,"type":2},{"addonId":565095,"type":2},{"addonId":380617,"type":2},{"addonId":875843,"type":2},{"addonId":453925,"type":2},{"addonId":634277,"type":2},{"addonId":694349,"type":2},{"addonId":499980,"type":3},{"addonId":456956,"type":2},{"addonId":817272,"type":2},{"addonId":337396,"type":2},{"addonId":531188,"type":2},{"addonId":433862,"type":2},{"addonId":659110,"type":2},{"addonId":359540,"type":2},{"addonId":687475,"type":2},{"addonId":502372,"type":2},{"addonId":1308420,"type":2},{"addonId":352039,"type":2},{"addonId":897377,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2646903333,"invalidFingerprint":false},{"foldername":"architectury_inject_everycompat_common_1c749490e4c3445c93c72769336c64d1_73c4f44139e7c8cf0641eea81964dfcf77583c216a4afaa8e013ba7e9726bd9eeverycomp12121140devjar","fingerprint":3946783219,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1828148611,"invalidFingerprint":false},{"foldername":"data","fingerprint":1241522621,"invalidFingerprint":false},{"foldername":"everycomp-common.mixins.json","fingerprint":1730704052,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":116210111,"invalidFingerprint":false},{"foldername":"net","fingerprint":3416510759,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":4292068571,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":628539,"fileNameOnDisk":"everycomp-1.21-2.11.40-neoforge.jar","hashes":[{"type":1,"value":"c15651f8ba76afbb869a2407d29c15a57f9d5d19"},{"type":2,"value":"b908b4fe169619f8cbc74fca40c0cc68"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f139c148-c104-4a78-97ae-99f275f9d73a","modSource":0,"addonID":274259,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[412,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Carry On","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","authors":[{"id":10625505,"name":"Tschipp"},{"id":18033511,"name":"Purplicious_Cow_"}],"primaryAuthor":"Tschipp","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/carry-on","issuesURL":"https://github.com/Tschipp/CarryOn/issues","wikiURL":"https://github.com/Tschipp/CarryOn/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/109/514/256/256/636380307126307812.png","tags":[],"installedFile":{"id":7393892,"fileName":"carryon-neoforge-1.21.1-2.2.4.4.jar","fileDate":"2025-12-29T20:17:48.73Z","fileLength":357489,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7393/892/carryon-neoforge-1.21.1-2.2.4.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3106533267,"invalidFingerprint":false},{"foldername":"tschipp","fingerprint":3505794663,"invalidFingerprint":false},{"foldername":"data","fingerprint":1734879053,"invalidFingerprint":false},{"foldername":"carryon.mixins.json","fingerprint":4107927270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1897947453,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1475409477,"invalidFingerprint":false},{"foldername":"carryon.neoforge.mixins.json","fingerprint":4084096819,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":4036356024,"invalidFingerprint":false},{"foldername":"LICENSE_carryon","fingerprint":2972570874,"invalidFingerprint":false}],"packageFingerprint":4049909642,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":274259,"fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","hashes":[{"type":1,"value":"774bf57a199784c35e74f2d619d6001c87185a11"},{"type":2,"value":"116381c8900494997eac5a2c1bf42348"}]},"dateInstalled":"2026-05-07T22:46:15.5988928Z","dateUpdated":"2026-05-07T22:46:15.6006921Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\carryon-neoforge-1.21.1-2.2.4.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7393892,"fileName":"carryon-neoforge-1.21.1-2.2.4.4.jar","fileDate":"2025-12-29T20:17:48.73Z","fileLength":357489,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7393/892/carryon-neoforge-1.21.1-2.2.4.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3106533267,"invalidFingerprint":false},{"foldername":"tschipp","fingerprint":3505794663,"invalidFingerprint":false},{"foldername":"data","fingerprint":1734879053,"invalidFingerprint":false},{"foldername":"carryon.mixins.json","fingerprint":4107927270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1897947453,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1475409477,"invalidFingerprint":false},{"foldername":"carryon.neoforge.mixins.json","fingerprint":4084096819,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":4036356024,"invalidFingerprint":false},{"foldername":"LICENSE_carryon","fingerprint":2972570874,"invalidFingerprint":false}],"packageFingerprint":4049909642,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":274259,"fileNameOnDisk":"carryon-neoforge-1.21.1-2.2.4.4.jar","hashes":[{"type":1,"value":"774bf57a199784c35e74f2d619d6001c87185a11"},{"type":2,"value":"116381c8900494997eac5a2c1bf42348"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b6db476a-d02e-4472-bda8-99332c889040","modSource":0,"addonID":535489,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[422,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sound Physics Remastered","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","authors":[{"id":20569971,"name":"henkelmax"}],"primaryAuthor":"henkelmax","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sound-physics-remastered","issuesURL":"https://github.com/henkelmax/sound-physics-remastered/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/442/531/256/256/637694502660771592.png","tags":[],"installedFile":{"id":6352946,"fileName":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","fileDate":"2025-03-26T20:53:21.98Z","fileLength":199309,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6352/946/sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2},{"addonId":416089,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":138495461,"invalidFingerprint":false},{"foldername":"com","fingerprint":1238695023,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2004311083,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4226171891,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":277429908,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.accesswidener","fingerprint":3831105509,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.mixins.json","fingerprint":2517006917,"invalidFingerprint":false},{"foldername":"sound-physics-remastered-fabric-refmap.json","fingerprint":1082091467,"invalidFingerprint":false},{"foldername":"de","fingerprint":2285137511,"invalidFingerprint":false}],"packageFingerprint":3432189773,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":535489,"fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","hashes":[{"type":1,"value":"fc95715050152d1869284a25fccf0e742a1a98af"},{"type":2,"value":"50acfcf9052ec227b9e499ad62ee56bb"}]},"dateInstalled":"2026-05-07T22:45:46.2958004Z","dateUpdated":"2026-05-07T22:45:46.2971604Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sound-physics-remastered-neoforge-1.21.1-1.4.10.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6352946,"fileName":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","fileDate":"2025-03-26T20:53:21.98Z","fileLength":199309,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6352/946/sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2},{"addonId":416089,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":138495461,"invalidFingerprint":false},{"foldername":"com","fingerprint":1238695023,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2004311083,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4226171891,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":277429908,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.accesswidener","fingerprint":3831105509,"invalidFingerprint":false},{"foldername":"sound_physics_remastered.mixins.json","fingerprint":2517006917,"invalidFingerprint":false},{"foldername":"sound-physics-remastered-fabric-refmap.json","fingerprint":1082091467,"invalidFingerprint":false},{"foldername":"de","fingerprint":2285137511,"invalidFingerprint":false}],"packageFingerprint":3432189773,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":535489,"fileNameOnDisk":"sound-physics-remastered-neoforge-1.21.1-1.4.10.jar","hashes":[{"type":1,"value":"fc95715050152d1869284a25fccf0e742a1a98af"},{"type":2,"value":"50acfcf9052ec227b9e499ad62ee56bb"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"09de1f5e-9f25-4cdc-b3ff-9858d51191af","modSource":0,"addonID":832882,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[409,423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Structure Essentials","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":409,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/structure-essentials-forge-fabric","issuesURL":"https://github.com/someaddons/structureessentials/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/784/172/256/256/638132898813460745.png","tags":[],"installedFile":{"id":7962596,"fileName":"structureessentials-1.21.1-5.0.jar","fileDate":"2026-04-21T19:51:52.317Z","fileLength":60833,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7962/596/structureessentials-1.21.1-5.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3832705314,"invalidFingerprint":false},{"foldername":"com","fingerprint":3248525122,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"structureessentials.mixins.json","fingerprint":1255601260,"invalidFingerprint":false}],"packageFingerprint":608980435,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":832882,"fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","hashes":[{"type":1,"value":"5c059c2cb2ad8c43e1384b0939bf258801aadfea"},{"type":2,"value":"c6ab08c1607e6b1eba091455a499f581"}]},"dateInstalled":"2026-05-07T21:58:18.4952937Z","dateUpdated":"2026-05-07T21:58:18.4963469Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\structureessentials-1.21.1-5.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7962596,"fileName":"structureessentials-1.21.1-5.0.jar","fileDate":"2026-04-21T19:51:52.317Z","fileLength":60833,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7962/596/structureessentials-1.21.1-5.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3832705314,"invalidFingerprint":false},{"foldername":"com","fingerprint":3248525122,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"structureessentials.mixins.json","fingerprint":1255601260,"invalidFingerprint":false}],"packageFingerprint":608980435,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":832882,"fileNameOnDisk":"structureessentials-1.21.1-5.0.jar","hashes":[{"type":1,"value":"5c059c2cb2ad8c43e1384b0939bf258801aadfea"},{"type":2,"value":"c6ab08c1607e6b1eba091455a499f581"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"02f8b664-bb34-4e67-9027-f23f4b0b8a97","modSource":0,"addonID":478155,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[416,406,426,424,407],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic Trees Plus","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","authors":[{"id":100034728,"name":"MaxHyper"},{"id":19257089,"name":"ferreusveritas"},{"id":17921349,"name":"HarleyOConnor"}],"primaryAuthor":"MaxHyper","primaryCategoryId":416,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dynamictreesplus","issuesURL":"https://github.com/supermassimo/DynamicTreesPlus/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/377/679/256/256/637555901044597945.png","tags":[],"installedFile":{"id":7698617,"fileName":"DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","fileDate":"2026-03-01T23:29:11.747Z","fileLength":530533,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7698/617/DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307350190,"invalidFingerprint":false},{"foldername":"com","fingerprint":2236781119,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2316793628,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1887539047,"invalidFingerprint":false},{"foldername":"data","fingerprint":425926389,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1486103622,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"trees","fingerprint":378014430,"invalidFingerprint":false}],"packageFingerprint":1475329488,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":478155,"fileNameOnDisk":"DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","hashes":[{"type":1,"value":"9f261be4cb8f83ffbc126f7198cdbe297f2b2166"},{"type":2,"value":"165cc0c91c46a77f83e6f33e0fdaa20d"}]},"dateInstalled":"2026-05-07T23:12:12.9311453Z","dateUpdated":"2026-05-07T23:12:12.9324437Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7698617,"fileName":"DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","fileDate":"2026-03-01T23:29:11.747Z","fileLength":530533,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7698/617/DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307350190,"invalidFingerprint":false},{"foldername":"com","fingerprint":2236781119,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2316793628,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1887539047,"invalidFingerprint":false},{"foldername":"data","fingerprint":425926389,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1486103622,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false},{"foldername":"trees","fingerprint":378014430,"invalidFingerprint":false}],"packageFingerprint":1475329488,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":478155,"fileNameOnDisk":"DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar","hashes":[{"type":1,"value":"9f261be4cb8f83ffbc126f7198cdbe297f2b2166"},{"type":2,"value":"165cc0c91c46a77f83e6f33e0fdaa20d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"cfef206f-c982-47d8-9c02-90accfe963fa","modSource":0,"addonID":1382969,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,426,419,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Simply Swords: Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"simplycataclysm-1.0.2+1.21.1+neoforge.jar","authors":[{"id":100955989,"name":"Cephelo_"}],"primaryAuthor":"Cephelo_","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/simplycataclysm","issuesURL":"https://github.com/Cephelo/SimplyCataclysmMod/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1516/569/256/256/638984833679947985.png","tags":[],"installedFile":{"id":7391959,"fileName":"simplycataclysm-1.0.2+1.21.1+neoforge.jar","fileDate":"2025-12-29T10:45:21.597Z","fileLength":272904,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7391/959/simplycataclysm-1.0.2%2b1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":659887,"type":3},{"addonId":639842,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":337153204,"invalidFingerprint":false},{"foldername":"dev","fingerprint":595167293,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2127653909,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":24391317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2082614950,"invalidFingerprint":false},{"foldername":"data","fingerprint":707395935,"invalidFingerprint":false}],"packageFingerprint":1381123540,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1382969,"fileNameOnDisk":"simplycataclysm-1.0.2+1.21.1+neoforge.jar","hashes":[{"type":1,"value":"a2aa0f82ae3a9be2f43a4d47b3cb2201dd4e1469"},{"type":2,"value":"5393427b99de74b4b81dbae6311de310"}]},"dateInstalled":"2026-05-07T23:25:54.5315899Z","dateUpdated":"2026-05-07T23:25:54.5337733Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\simplycataclysm-1.0.2+1.21.1+neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7391959,"fileName":"simplycataclysm-1.0.2+1.21.1+neoforge.jar","fileDate":"2025-12-29T10:45:21.597Z","fileLength":272904,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7391/959/simplycataclysm-1.0.2%2b1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":551586,"type":3},{"addonId":659887,"type":3},{"addonId":639842,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":337153204,"invalidFingerprint":false},{"foldername":"dev","fingerprint":595167293,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2127653909,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":24391317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2082614950,"invalidFingerprint":false},{"foldername":"data","fingerprint":707395935,"invalidFingerprint":false}],"packageFingerprint":1381123540,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1382969,"fileNameOnDisk":"simplycataclysm-1.0.2+1.21.1+neoforge.jar","hashes":[{"type":1,"value":"a2aa0f82ae3a9be2f43a4d47b3cb2201dd4e1469"},{"type":2,"value":"5393427b99de74b4b81dbae6311de310"}]},"allowModDistribution":false,"exportDisabledReason":0,"groupId":null},{"instanceID":"84379f4e-c061-484a-a8b7-fa58a4d84e27","modSource":0,"addonID":1109370,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[403,404,393,401,400],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Mobs","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Mobs - 6.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-mobs","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1134/588/256/256/638695442149695484.png","tags":[],"installedFile":{"id":7890874,"fileName":"Realistic Mobs - 6.0.zip","fileDate":"2026-04-07T17:06:38.367Z","fileLength":477599,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/874/Realistic%20Mobs%20-%206.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1236336732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2730685569,"invalidFingerprint":false}],"packageFingerprint":749152005,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109370,"fileNameOnDisk":"Realistic Mobs - 6.0.zip","hashes":[{"type":1,"value":"822d4dcbf406425bd84d228b11d6b3f9c2a82459"},{"type":2,"value":"7ed80423f8a25028c4a433c29d757d69"}]},"dateInstalled":"2026-05-07T21:58:37.0303436Z","dateUpdated":"2026-05-07T21:58:37.0322439Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Mobs - 6.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7890874,"fileName":"Realistic Mobs - 6.0.zip","fileDate":"2026-04-07T17:06:38.367Z","fileLength":477599,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/874/Realistic%20Mobs%20-%206.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1236336732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2730685569,"invalidFingerprint":false}],"packageFingerprint":749152005,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109370,"fileNameOnDisk":"Realistic Mobs - 6.0.zip","hashes":[{"type":1,"value":"822d4dcbf406425bd84d228b11d6b3f9c2a82459"},{"type":2,"value":"7ed80423f8a25028c4a433c29d757d69"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1142701e-0389-4bf8-9d1e-f29b1117a5b5","modSource":0,"addonID":342584,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Collective","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"collective-1.21.1-8.22.jar","authors":[{"id":7049004,"name":"Serilum"}],"primaryAuthor":"Serilum","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/collective","issuesURL":"https://github.com/Serilum/.issue-tracker/labels/Library: Collective","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/975/602/256/256/638479075930399380.png","tags":[],"installedFile":{"id":8021351,"fileName":"collective-1.21.1-8.22.jar","fileDate":"2026-05-01T14:12:00.197Z","fileLength":943020,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8021/351/collective-1.21.1-8.22.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"collective.accesswidener","fingerprint":1854494023,"invalidFingerprint":false},{"foldername":"collective_fabric.crop.mixins.json","fingerprint":3675928845,"invalidFingerprint":false},{"foldername":"collective_fabric.mixins.json","fingerprint":2802944107,"invalidFingerprint":false},{"foldername":"collective_fabric.refmap.json","fingerprint":2662549530,"invalidFingerprint":false},{"foldername":"collective_forge.mixins.json","fingerprint":2937258322,"invalidFingerprint":false},{"foldername":"collective_neoforge.mixins.json","fingerprint":2985100551,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":896966630,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3034981654,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2402946623,"invalidFingerprint":false},{"foldername":"com","fingerprint":1953943695,"invalidFingerprint":false},{"foldername":"data","fingerprint":1100729918,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3012711564,"invalidFingerprint":false}],"packageFingerprint":287649027,"gameVersion":["1.21","Fabric","Forge","1.21.1","NeoForge","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":342584,"fileNameOnDisk":"collective-1.21.1-8.22.jar","hashes":[{"type":1,"value":"f3f8b8baf461ea8e8664cf1f8fe6593f8073f36d"},{"type":2,"value":"8075d9a7daf7bb35b59333db0280145f"}]},"dateInstalled":"2026-05-07T22:37:23.0348764Z","dateUpdated":"2026-05-07T22:37:23.0368807Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\collective-1.21.1-8.22.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8021351,"fileName":"collective-1.21.1-8.22.jar","fileDate":"2026-05-01T14:12:00.197Z","fileLength":943020,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8021/351/collective-1.21.1-8.22.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"collective.accesswidener","fingerprint":1854494023,"invalidFingerprint":false},{"foldername":"collective_fabric.crop.mixins.json","fingerprint":3675928845,"invalidFingerprint":false},{"foldername":"collective_fabric.mixins.json","fingerprint":2802944107,"invalidFingerprint":false},{"foldername":"collective_fabric.refmap.json","fingerprint":2662549530,"invalidFingerprint":false},{"foldername":"collective_forge.mixins.json","fingerprint":2937258322,"invalidFingerprint":false},{"foldername":"collective_neoforge.mixins.json","fingerprint":2985100551,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":896966630,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3034981654,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2402946623,"invalidFingerprint":false},{"foldername":"com","fingerprint":1953943695,"invalidFingerprint":false},{"foldername":"data","fingerprint":1100729918,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3012711564,"invalidFingerprint":false}],"packageFingerprint":287649027,"gameVersion":["1.21","Fabric","Forge","1.21.1","NeoForge","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":342584,"fileNameOnDisk":"collective-1.21.1-8.22.jar","hashes":[{"type":1,"value":"f3f8b8baf461ea8e8664cf1f8fe6593f8073f36d"},{"type":2,"value":"8075d9a7daf7bb35b59333db0280145f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9549aeb5-6914-4c30-9a1b-66b10fbdc08e","modSource":0,"addonID":888790,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,426,434,412],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Client Crafting","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"clientcrafting-1.21-2.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/client-crafting","issuesURL":"https://github.com/someaddons/clientcrafting/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/849/96/256/256/638249669529641442.png","tags":[],"installedFile":{"id":7920161,"fileName":"clientcrafting-1.21-2.1.jar","fileDate":"2026-04-13T09:58:03.88Z","fileLength":7144,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/161/clientcrafting-1.21-2.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":973081001,"invalidFingerprint":false},{"foldername":"com","fingerprint":1370458164,"invalidFingerprint":false},{"foldername":"clientcrafting.mixins.json","fingerprint":2548561900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1488100671,"invalidFingerprint":false}],"packageFingerprint":3484238619,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888790,"fileNameOnDisk":"clientcrafting-1.21-2.1.jar","hashes":[{"type":1,"value":"ed816decf1ce06bd17b3a446b4fddd33b07ace40"},{"type":2,"value":"09e8c9e83844ea5a9b1a569b8c14f515"}]},"dateInstalled":"2026-05-07T21:58:51.7910868Z","dateUpdated":"2026-05-07T21:58:51.7922447Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\clientcrafting-1.21-2.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7920161,"fileName":"clientcrafting-1.21-2.1.jar","fileDate":"2026-04-13T09:58:03.88Z","fileLength":7144,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/161/clientcrafting-1.21-2.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":973081001,"invalidFingerprint":false},{"foldername":"com","fingerprint":1370458164,"invalidFingerprint":false},{"foldername":"clientcrafting.mixins.json","fingerprint":2548561900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1488100671,"invalidFingerprint":false}],"packageFingerprint":3484238619,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888790,"fileNameOnDisk":"clientcrafting-1.21-2.1.jar","hashes":[{"type":1,"value":"ed816decf1ce06bd17b3a446b4fddd33b07ace40"},{"type":2,"value":"09e8c9e83844ea5a9b1a569b8c14f515"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"5354052f-0e11-4fe7-b008-04192d3053be","modSource":0,"addonID":1164949,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,422,6484,406,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Integrated Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"integrated_cataclysm-1.0.6+1.21.1-neoforge.jar","authors":[{"id":100087092,"name":"CraisinLord"}],"primaryAuthor":"CraisinLord","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/integrated-cataclysm","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1156/562/256/256/638724401018536100.png","tags":[],"installedFile":{"id":7808552,"fileName":"integrated_cataclysm-1.0.6+1.21.1-neoforge.jar","fileDate":"2026-03-25T01:10:11.37Z","fileLength":5125361,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7808/552/integrated_cataclysm-1.0.6%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":243121,"type":3},{"addonId":551586,"type":3},{"addonId":412082,"type":3},{"addonId":817709,"type":3},{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3198025789,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedCataclysm_common_dac55d1c3d7c43d0b24fcf81e4608720_9d573064a06d3f838d7128afbf07efb5b02ce699ae6503cc97e11774bfef09caintegrated_cataclysm1061211commondevjar","fingerprint":3504732758,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3616434870,"invalidFingerprint":false},{"foldername":"com","fingerprint":456912202,"invalidFingerprint":false},{"foldername":"data","fingerprint":1270467622,"invalidFingerprint":false},{"foldername":"integrated_cataclysm-common.mixins.json","fingerprint":252408177,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1120089153,"invalidFingerprint":false}],"packageFingerprint":4007960918,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1164949,"fileNameOnDisk":"integrated_cataclysm-1.0.6+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"d9490abb8c6c66c61eabd836ffb016d385fd2b75"},{"type":2,"value":"bdd52020d7caf34fe9abb1c1a1b31118"}]},"dateInstalled":"2026-05-07T23:23:41.594779Z","dateUpdated":"2026-05-07T23:23:41.5972808Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\integrated_cataclysm-1.0.6+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7808552,"fileName":"integrated_cataclysm-1.0.6+1.21.1-neoforge.jar","fileDate":"2026-03-25T01:10:11.37Z","fileLength":5125361,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7808/552/integrated_cataclysm-1.0.6%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":243121,"type":3},{"addonId":551586,"type":3},{"addonId":412082,"type":3},{"addonId":817709,"type":3},{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3198025789,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedCataclysm_common_dac55d1c3d7c43d0b24fcf81e4608720_9d573064a06d3f838d7128afbf07efb5b02ce699ae6503cc97e11774bfef09caintegrated_cataclysm1061211commondevjar","fingerprint":3504732758,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3616434870,"invalidFingerprint":false},{"foldername":"com","fingerprint":456912202,"invalidFingerprint":false},{"foldername":"data","fingerprint":1270467622,"invalidFingerprint":false},{"foldername":"integrated_cataclysm-common.mixins.json","fingerprint":252408177,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1120089153,"invalidFingerprint":false}],"packageFingerprint":4007960918,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1164949,"fileNameOnDisk":"integrated_cataclysm-1.0.6+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"d9490abb8c6c66c61eabd836ffb016d385fd2b75"},{"type":2,"value":"bdd52020d7caf34fe9abb1c1a1b31118"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"48e4e50d-2d41-47c5-a981-92db2a9f5144","modSource":0,"addonID":252818,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[416,424,407,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic Trees","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"dynamictrees-neoforge-1.21.1-1.7.0.jar","authors":[{"id":100034728,"name":"MaxHyper"},{"id":19257089,"name":"ferreusveritas"},{"id":17921349,"name":"HarleyOConnor"}],"primaryAuthor":"MaxHyper","primaryCategoryId":416,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dynamictrees","issuesURL":"https://github.com/ferreusveritas/Dynamic-Trees/issues","wikiURL":"https://github.com/DynamicTreesTeam/DynamicTrees/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/111/638/256/256/636389419656399314.png","tags":[],"installedFile":{"id":7661136,"fileName":"dynamictrees-neoforge-1.21.1-1.7.0.jar","fileDate":"2026-02-22T02:09:03.567Z","fileLength":3792883,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7661/136/dynamictrees-neoforge-1.21.1-1.7.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":478155,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3767020780,"invalidFingerprint":false},{"foldername":"com","fingerprint":615993468,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2616993939,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1123713872,"invalidFingerprint":false},{"foldername":"data","fingerprint":4277657086,"invalidFingerprint":false},{"foldername":"dynamictrees.mixins.json","fingerprint":3876914846,"invalidFingerprint":false},{"foldername":"dynamictrees.neoforge.mixins.json","fingerprint":1296783442,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1222552354,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3746448320,"invalidFingerprint":false},{"foldername":"trees","fingerprint":2428753089,"invalidFingerprint":false},{"foldername":"LICENSE_Dynamic Trees","fingerprint":3123955774,"invalidFingerprint":false}],"packageFingerprint":472973584,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":252818,"fileNameOnDisk":"dynamictrees-neoforge-1.21.1-1.7.0.jar","hashes":[{"type":1,"value":"214b57ccd42bc306de8aff347162172fc4ba971b"},{"type":2,"value":"e1f17d9834e66e86742cf68d0d387421"}]},"dateInstalled":"2026-05-07T23:12:08.5070563Z","dateUpdated":"2026-05-07T23:12:08.5100642Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\dynamictrees-neoforge-1.21.1-1.7.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7661136,"fileName":"dynamictrees-neoforge-1.21.1-1.7.0.jar","fileDate":"2026-02-22T02:09:03.567Z","fileLength":3792883,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7661/136/dynamictrees-neoforge-1.21.1-1.7.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":478155,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3767020780,"invalidFingerprint":false},{"foldername":"com","fingerprint":615993468,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2616993939,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1123713872,"invalidFingerprint":false},{"foldername":"data","fingerprint":4277657086,"invalidFingerprint":false},{"foldername":"dynamictrees.mixins.json","fingerprint":3876914846,"invalidFingerprint":false},{"foldername":"dynamictrees.neoforge.mixins.json","fingerprint":1296783442,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1222552354,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3746448320,"invalidFingerprint":false},{"foldername":"trees","fingerprint":2428753089,"invalidFingerprint":false},{"foldername":"LICENSE_Dynamic Trees","fingerprint":3123955774,"invalidFingerprint":false}],"packageFingerprint":472973584,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":252818,"fileNameOnDisk":"dynamictrees-neoforge-1.21.1-1.7.0.jar","hashes":[{"type":1,"value":"214b57ccd42bc306de8aff347162172fc4ba971b"},{"type":2,"value":"e1f17d9834e66e86742cf68d0d387421"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"fa0a09e7-37bd-4de3-9b18-2a7cbf486c43","modSource":0,"addonID":410295,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Konkrete","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","authors":[{"id":100802238,"name":"Keksuccino"}],"primaryAuthor":"Keksuccino","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/konkrete","issuesURL":"https://github.com/Keksuccino/Konkrete/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1478/850/256/256/638961204478458770.png","tags":[],"installedFile":{"id":5453385,"fileName":"konkrete_neoforge_1.9.9_MC_1.21.jar","fileDate":"2024-06-21T07:53:27.01Z","fileLength":618842,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5453/385/konkrete_neoforge_1.9.9_MC_1.21.jar","isAlternate":false,"alternateFileId":5453386,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1492821937,"invalidFingerprint":false},{"foldername":"de","fingerprint":934634299,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2077150322,"invalidFingerprint":false},{"foldername":"konkrete.accesswidener","fingerprint":593902968,"invalidFingerprint":false},{"foldername":"konkrete.mixins.json","fingerprint":1712148904,"invalidFingerprint":false},{"foldername":"konkrete.neoforge.mixins.json","fingerprint":3180292564,"invalidFingerprint":false},{"foldername":"konkrete_logo_128x128.png","fingerprint":1541347227,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4026528315,"invalidFingerprint":false}],"packageFingerprint":3128317181,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":410295,"fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","hashes":[{"type":1,"value":"97771eb287d5ac7fe667d1df9493d5e54c8ca1fa"},{"type":2,"value":"6e77d08299ea1ec7756a299263bc469b"}]},"dateInstalled":"2026-05-07T21:58:52.820434Z","dateUpdated":"2026-05-07T21:58:52.8216324Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\konkrete_neoforge_1.9.9_MC_1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5453385,"fileName":"konkrete_neoforge_1.9.9_MC_1.21.jar","fileDate":"2024-06-21T07:53:27.01Z","fileLength":618842,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5453/385/konkrete_neoforge_1.9.9_MC_1.21.jar","isAlternate":false,"alternateFileId":5453386,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1492821937,"invalidFingerprint":false},{"foldername":"de","fingerprint":934634299,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2077150322,"invalidFingerprint":false},{"foldername":"konkrete.accesswidener","fingerprint":593902968,"invalidFingerprint":false},{"foldername":"konkrete.mixins.json","fingerprint":1712148904,"invalidFingerprint":false},{"foldername":"konkrete.neoforge.mixins.json","fingerprint":3180292564,"invalidFingerprint":false},{"foldername":"konkrete_logo_128x128.png","fingerprint":1541347227,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4026528315,"invalidFingerprint":false}],"packageFingerprint":3128317181,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":410295,"fileNameOnDisk":"konkrete_neoforge_1.9.9_MC_1.21.jar","hashes":[{"type":1,"value":"97771eb287d5ac7fe667d1df9493d5e54c8ca1fa"},{"type":2,"value":"6e77d08299ea1ec7756a299263bc469b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"fa143e34-d840-41a5-a15b-f0bc65717064","modSource":0,"addonID":968432,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5299,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"MonoLib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","authors":[{"id":104539068,"name":"jason13official"}],"primaryAuthor":"jason13official","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/monolib","issuesURL":"https://github.com/Cursee-Development/Mono-Lib/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1259/687/256/256/638820174543153212.png","tags":[],"installedFile":{"id":7974611,"fileName":"monolib-neoforge-1.21.1-4.0.2.jar","fileDate":"2026-04-23T21:53:05.337Z","fileLength":167568,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7974/611/monolib-neoforge-1.21.1-4.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3611904734,"invalidFingerprint":false},{"foldername":"com","fingerprint":2883795183,"invalidFingerprint":false},{"foldername":"io","fingerprint":415805843,"invalidFingerprint":false},{"foldername":"monolib.mixins.json","fingerprint":2672345543,"invalidFingerprint":false},{"foldername":"monolib.neoforge.mixins.json","fingerprint":660032375,"invalidFingerprint":false},{"foldername":"monolib.png","fingerprint":947204038,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":136227311,"invalidFingerprint":false},{"foldername":"LICENSE_MonoLib","fingerprint":394233247,"invalidFingerprint":false}],"packageFingerprint":1026648080,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968432,"fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","hashes":[{"type":1,"value":"63b094775c12e15cfd2822ee135035d3e0303d9c"},{"type":2,"value":"b26dd2adeb9e0987fc61d3f30eb1a5fc"}]},"dateInstalled":"2026-05-07T21:58:54.1459277Z","dateUpdated":"2026-05-07T21:58:54.1469821Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\monolib-neoforge-1.21.1-4.0.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7974611,"fileName":"monolib-neoforge-1.21.1-4.0.2.jar","fileDate":"2026-04-23T21:53:05.337Z","fileLength":167568,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7974/611/monolib-neoforge-1.21.1-4.0.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3611904734,"invalidFingerprint":false},{"foldername":"com","fingerprint":2883795183,"invalidFingerprint":false},{"foldername":"io","fingerprint":415805843,"invalidFingerprint":false},{"foldername":"monolib.mixins.json","fingerprint":2672345543,"invalidFingerprint":false},{"foldername":"monolib.neoforge.mixins.json","fingerprint":660032375,"invalidFingerprint":false},{"foldername":"monolib.png","fingerprint":947204038,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":136227311,"invalidFingerprint":false},{"foldername":"LICENSE_MonoLib","fingerprint":394233247,"invalidFingerprint":false}],"packageFingerprint":1026648080,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968432,"fileNameOnDisk":"monolib-neoforge-1.21.1-4.0.2.jar","hashes":[{"type":1,"value":"63b094775c12e15cfd2822ee135035d3e0303d9c"},{"type":2,"value":"b26dd2adeb9e0987fc61d3f30eb1a5fc"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e5327c82-2fdb-4cbf-846e-a5b9df67e2d8","modSource":0,"addonID":1023259,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,421,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Prickle","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/prickle","issuesURL":"https://github.com/Darkhax-Minecraft/PrickleMC/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1064/161/256/256/638597208248046640.png","tags":[],"installedFile":{"id":6961457,"fileName":"prickle-neoforge-1.21.1-21.1.11.jar","fileDate":"2025-09-04T03:19:33.637Z","fileLength":84812,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6961/457/prickle-neoforge-1.21.1-21.1.11.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":882056026,"invalidFingerprint":false},{"foldername":"net","fingerprint":1420654100,"invalidFingerprint":false},{"foldername":"prickle.mixins.json","fingerprint":2402534181,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1242308391,"invalidFingerprint":false},{"foldername":"logo_prickle.png","fingerprint":4006121450,"invalidFingerprint":false},{"foldername":"prickle.neoforge.mixins.json","fingerprint":1321578070,"invalidFingerprint":false},{"foldername":"license_prickle.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":3352390329,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1023259,"fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","hashes":[{"type":1,"value":"5174059ecf97340a0de5ef211b938de26c4eaa36"},{"type":2,"value":"533c154fb306cd8043564ee1533873ce"}]},"dateInstalled":"2026-05-07T22:46:28.235154Z","dateUpdated":"2026-05-07T22:46:28.2365105Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\prickle-neoforge-1.21.1-21.1.11.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6961457,"fileName":"prickle-neoforge-1.21.1-21.1.11.jar","fileDate":"2025-09-04T03:19:33.637Z","fileLength":84812,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6961/457/prickle-neoforge-1.21.1-21.1.11.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":882056026,"invalidFingerprint":false},{"foldername":"net","fingerprint":1420654100,"invalidFingerprint":false},{"foldername":"prickle.mixins.json","fingerprint":2402534181,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1242308391,"invalidFingerprint":false},{"foldername":"logo_prickle.png","fingerprint":4006121450,"invalidFingerprint":false},{"foldername":"prickle.neoforge.mixins.json","fingerprint":1321578070,"invalidFingerprint":false},{"foldername":"license_prickle.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":3352390329,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1023259,"fileNameOnDisk":"prickle-neoforge-1.21.1-21.1.11.jar","hashes":[{"type":1,"value":"5174059ecf97340a0de5ef211b938de26c4eaa36"},{"type":2,"value":"533c154fb306cd8043564ee1533873ce"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6855c071-1f9a-4000-81c3-45f26b6fde83","modSource":0,"addonID":568563,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"[ETF] Entity Texture Features - [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","authors":[{"id":102405316,"name":"Traben"}],"primaryAuthor":"Traben","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entity-texture-features-fabric","issuesURL":"https://github.com/Traben-0/EmissiveMod/issues","wikiURL":"https://github.com/Traben-0/Entity_Texture_Features/blob/master/.github/README.md","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/983/279/256/256/638491557830728907.png","tags":[],"installedFile":{"id":7930620,"fileName":"entity_texture_features_1.21-neoforge-7.1.jar","fileDate":"2026-04-15T13:06:22.37Z","fileLength":752334,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7930/620/entity_texture_features_1.21-neoforge-7.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238850055,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2964002206,"invalidFingerprint":false},{"foldername":"entity_texture_features.mixins.json","fingerprint":4135211644,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3814536893,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":2845070659,"invalidFingerprint":false}],"packageFingerprint":1249730238,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":568563,"fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","hashes":[{"type":1,"value":"56de40b237ff44dbf1bb68844e0f118607902684"},{"type":2,"value":"07c98cc3e76f514eee3adee43d05dae9"}]},"dateInstalled":"2026-05-07T21:58:50.7230147Z","dateUpdated":"2026-05-07T21:58:50.7241776Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entity_texture_features_1.21-neoforge-7.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7930620,"fileName":"entity_texture_features_1.21-neoforge-7.1.jar","fileDate":"2026-04-15T13:06:22.37Z","fileLength":752334,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7930/620/entity_texture_features_1.21-neoforge-7.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238850055,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2964002206,"invalidFingerprint":false},{"foldername":"entity_texture_features.mixins.json","fingerprint":4135211644,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":3814536893,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":2845070659,"invalidFingerprint":false}],"packageFingerprint":1249730238,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":568563,"fileNameOnDisk":"entity_texture_features_1.21-neoforge-7.1.jar","hashes":[{"type":1,"value":"56de40b237ff44dbf1bb68844e0f118607902684"},{"type":2,"value":"07c98cc3e76f514eee3adee43d05dae9"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c981ad42-3f79-4331-92e9-45c4b950e98d","modSource":0,"addonID":470193,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Connectivity","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"connectivity-1.21.1-7.6.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/connectivity","issuesURL":"https://github.com/someaddons/connectivity/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/532/325/256/256/637855720922086407.png","tags":[],"installedFile":{"id":7367221,"fileName":"connectivity-1.21.1-7.6.jar","fileDate":"2025-12-22T22:30:30.77Z","fileLength":114165,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7367/221/connectivity-1.21.1-7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1893397122,"invalidFingerprint":false},{"foldername":"com","fingerprint":3682893690,"invalidFingerprint":false},{"foldername":"connectivity.mixins.json","fingerprint":3632941706,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2098059805,"invalidFingerprint":false}],"packageFingerprint":1642034907,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":470193,"fileNameOnDisk":"connectivity-1.21.1-7.6.jar","hashes":[{"type":1,"value":"6adebe84f745dec8fa33bc3982383bc1cc24d49e"},{"type":2,"value":"f2d38f850688eefa338b807801df2b4b"}]},"dateInstalled":"2026-05-07T21:58:52.3039631Z","dateUpdated":"2026-05-07T21:58:52.3053228Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\connectivity-1.21.1-7.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7367221,"fileName":"connectivity-1.21.1-7.6.jar","fileDate":"2025-12-22T22:30:30.77Z","fileLength":114165,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7367/221/connectivity-1.21.1-7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1893397122,"invalidFingerprint":false},{"foldername":"com","fingerprint":3682893690,"invalidFingerprint":false},{"foldername":"connectivity.mixins.json","fingerprint":3632941706,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2098059805,"invalidFingerprint":false}],"packageFingerprint":1642034907,"gameVersion":["1.21","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":470193,"fileNameOnDisk":"connectivity-1.21.1-7.6.jar","hashes":[{"type":1,"value":"6adebe84f745dec8fa33bc3982383bc1cc24d49e"},{"type":2,"value":"f2d38f850688eefa338b807801df2b4b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"af827eea-c674-425b-87ea-f57ccee5427e","modSource":0,"addonID":580689,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loot Integrations","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loot-integrations","issuesURL":"https://github.com/someaddons/LootIntegrations/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/531/625/256/256/637853939577730031.png","tags":[],"installedFile":{"id":6640970,"fileName":"lootintegrations-1.21.1-4.7.jar","fileDate":"2025-06-11T18:08:14.7Z","fileLength":36966,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6640/970/lootintegrations-1.21.1-4.7.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2832443236,"invalidFingerprint":false},{"foldername":"com","fingerprint":3676581281,"invalidFingerprint":false},{"foldername":"data","fingerprint":2760451334,"invalidFingerprint":false},{"foldername":"lootintegrations.mixins.json","fingerprint":2486856047,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":316510790,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":580689,"fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","hashes":[{"type":1,"value":"ba601fe630f444d974838bfd80a185a0e3e0309c"},{"type":2,"value":"de033387fe1955841bea50360aec0315"}]},"dateInstalled":"2026-05-07T22:48:38.7531224Z","dateUpdated":"2026-05-07T22:48:39.1541743Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootintegrations-1.21.1-4.7.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6640970,"fileName":"lootintegrations-1.21.1-4.7.jar","fileDate":"2025-06-11T18:08:14.7Z","fileLength":36966,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6640/970/lootintegrations-1.21.1-4.7.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2832443236,"invalidFingerprint":false},{"foldername":"com","fingerprint":3676581281,"invalidFingerprint":false},{"foldername":"data","fingerprint":2760451334,"invalidFingerprint":false},{"foldername":"lootintegrations.mixins.json","fingerprint":2486856047,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":316510790,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":580689,"fileNameOnDisk":"lootintegrations-1.21.1-4.7.jar","hashes":[{"type":1,"value":"ba601fe630f444d974838bfd80a185a0e3e0309c"},{"type":2,"value":"de033387fe1955841bea50360aec0315"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"572a8452-269a-4b9b-905a-f89a0d279cc1","modSource":0,"addonID":401648,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"BetterF3","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","authors":[{"id":42614218,"name":"cominixo"}],"primaryAuthor":"cominixo","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/betterf3","issuesURL":"https://github.com/TreyRuffy/BetterF3/issues/","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/293/27/256/256/637327750859254377.png","tags":[],"installedFile":{"id":5873258,"fileName":"BetterF3-11.0.3-NeoForge-1.21.1.jar","fileDate":"2024-11-04T00:45:07.78Z","fileLength":481646,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5873/258/BetterF3-11.0.3-NeoForge-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3447543306,"invalidFingerprint":false},{"foldername":"BetterF3-common-refmap.json","fingerprint":368856278,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":2773559383,"invalidFingerprint":false},{"foldername":"architectury_inject_BetterF3_common_6022176412bf47f0a48f36924db6bd69_9b72c03cca76358ede5bc94ad01fcfe834a221536053c442d21c86edbe7c6e0cBetterF31103devjar","fingerprint":1967257789,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3372408542,"invalidFingerprint":false},{"foldername":"betterf3.mixins.json","fingerprint":3760558264,"invalidFingerprint":false},{"foldername":"betterf3.neoforge.mixins.json","fingerprint":479940081,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":773465483,"invalidFingerprint":false},{"foldername":"me","fingerprint":4169747550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2092460052,"invalidFingerprint":false}],"packageFingerprint":2574672049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":401648,"fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","hashes":[{"type":1,"value":"8fa17df26d3650416bc124be7a264bc1566a3b26"},{"type":2,"value":"ece6a3a01373146d2f351ba721e0083d"}]},"dateInstalled":"2026-05-07T21:58:03.5072331Z","dateUpdated":"2026-05-07T21:58:03.5083748Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BetterF3-11.0.3-NeoForge-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5873258,"fileName":"BetterF3-11.0.3-NeoForge-1.21.1.jar","fileDate":"2024-11-04T00:45:07.78Z","fileLength":481646,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5873/258/BetterF3-11.0.3-NeoForge-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3447543306,"invalidFingerprint":false},{"foldername":"BetterF3-common-refmap.json","fingerprint":368856278,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":2773559383,"invalidFingerprint":false},{"foldername":"architectury_inject_BetterF3_common_6022176412bf47f0a48f36924db6bd69_9b72c03cca76358ede5bc94ad01fcfe834a221536053c442d21c86edbe7c6e0cBetterF31103devjar","fingerprint":1967257789,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3372408542,"invalidFingerprint":false},{"foldername":"betterf3.mixins.json","fingerprint":3760558264,"invalidFingerprint":false},{"foldername":"betterf3.neoforge.mixins.json","fingerprint":479940081,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":773465483,"invalidFingerprint":false},{"foldername":"me","fingerprint":4169747550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2092460052,"invalidFingerprint":false}],"packageFingerprint":2574672049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":401648,"fileNameOnDisk":"BetterF3-11.0.3-NeoForge-1.21.1.jar","hashes":[{"type":1,"value":"8fa17df26d3650416bc124be7a264bc1566a3b26"},{"type":2,"value":"ece6a3a01373146d2f351ba721e0083d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f817c775-1e1b-47d7-8ea3-0b26374198b6","modSource":0,"addonID":634062,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"No Chat Reports","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","authors":[{"id":60127971,"name":"Aizistral"}],"primaryAuthor":"Aizistral","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/no-chat-reports","issuesURL":"https://github.com/Aizistral-Studios/No-Chat-Reports/issues","wikiURL":"https://github.com/Aizistral-Studios/No-Chat-Reports/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/560/68/256/256/637910636688514454.png","tags":[],"installedFile":{"id":5885735,"fileName":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","fileDate":"2024-11-08T18:15:51.323Z","fileLength":306668,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5885/735/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1830069249,"invalidFingerprint":false},{"foldername":"com","fingerprint":3722285764,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1936421194,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1899993267,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":4062509488,"invalidFingerprint":false},{"foldername":"mixins","fingerprint":3328070053,"invalidFingerprint":false}],"packageFingerprint":1237891864,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":634062,"fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","hashes":[{"type":1,"value":"9edfc7861277ff661141304dc8216f83eacdd9af"},{"type":2,"value":"07496752e6b64dd33d68cd5166818402"}]},"dateInstalled":"2026-05-07T21:58:00.7667043Z","dateUpdated":"2026-05-07T21:58:00.7680022Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5885735,"fileName":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","fileDate":"2024-11-08T18:15:51.323Z","fileLength":306668,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5885/735/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1830069249,"invalidFingerprint":false},{"foldername":"com","fingerprint":3722285764,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1936421194,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":1899993267,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":4062509488,"invalidFingerprint":false},{"foldername":"mixins","fingerprint":3328070053,"invalidFingerprint":false}],"packageFingerprint":1237891864,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":634062,"fileNameOnDisk":"NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar","hashes":[{"type":1,"value":"9edfc7861277ff661141304dc8216f83eacdd9af"},{"type":2,"value":"07496752e6b64dd33d68cd5166818402"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"878d65f0-a1d6-4263-8b52-641df3ba14a6","modSource":0,"addonID":883287,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast Paintings","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-paintings","issuesURL":"https://github.com/MehVahdJukaar/FastPaintings/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/842/714/256/256/638238468460858103.png","tags":[],"installedFile":{"id":7305762,"fileName":"fastpaintings-1.21-1.3.0-neoforge.jar","fileDate":"2025-12-07T20:37:47.69Z","fileLength":155810,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7305/762/fastpaintings-1.21-1.3.0-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":885052021,"invalidFingerprint":false},{"foldername":"architectury_inject_fastpaintings_common_f83284908daa47daa2dc2d3e07b83b2c_b4ac8a14827dfd63bfb40d8e37fcb9fc90c4da0e735120f9c6b9d9284874b5ecfastpaintings121130devjar","fingerprint":4186010484,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1378147275,"invalidFingerprint":false},{"foldername":"data","fingerprint":1958796037,"invalidFingerprint":false},{"foldername":"fastpaintings-common-refmap.json","fingerprint":1016817299,"invalidFingerprint":false},{"foldername":"fastpaintings-common.mixins.json","fingerprint":2500171270,"invalidFingerprint":false},{"foldername":"fastpaintings.mixins.json","fingerprint":246370165,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2145595820,"invalidFingerprint":false},{"foldername":"net","fingerprint":481631732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":354196599,"invalidFingerprint":false}],"packageFingerprint":4113985046,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":883287,"fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","hashes":[{"type":1,"value":"6df81c4fe659eaee718cb0856c79e4cfa272e9ea"},{"type":2,"value":"1f646cbc26d3e2a46dfc2807f2bedf79"}]},"dateInstalled":"2026-05-07T21:58:47.1248805Z","dateUpdated":"2026-05-07T21:58:47.1261846Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fastpaintings-1.21-1.3.0-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7305762,"fileName":"fastpaintings-1.21-1.3.0-neoforge.jar","fileDate":"2025-12-07T20:37:47.69Z","fileLength":155810,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7305/762/fastpaintings-1.21-1.3.0-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":885052021,"invalidFingerprint":false},{"foldername":"architectury_inject_fastpaintings_common_f83284908daa47daa2dc2d3e07b83b2c_b4ac8a14827dfd63bfb40d8e37fcb9fc90c4da0e735120f9c6b9d9284874b5ecfastpaintings121130devjar","fingerprint":4186010484,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1378147275,"invalidFingerprint":false},{"foldername":"data","fingerprint":1958796037,"invalidFingerprint":false},{"foldername":"fastpaintings-common-refmap.json","fingerprint":1016817299,"invalidFingerprint":false},{"foldername":"fastpaintings-common.mixins.json","fingerprint":2500171270,"invalidFingerprint":false},{"foldername":"fastpaintings.mixins.json","fingerprint":246370165,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2145595820,"invalidFingerprint":false},{"foldername":"net","fingerprint":481631732,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":354196599,"invalidFingerprint":false}],"packageFingerprint":4113985046,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":883287,"fileNameOnDisk":"fastpaintings-1.21-1.3.0-neoforge.jar","hashes":[{"type":1,"value":"6df81c4fe659eaee718cb0856c79e4cfa272e9ea"},{"type":2,"value":"1f646cbc26d3e2a46dfc2807f2bedf79"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7c9e195e-40b7-4043-a5c4-055f1122c803","modSource":0,"addonID":1001614,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lionfish API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","authors":[{"id":102522496,"name":"mcl_ender"}],"primaryAuthor":"mcl_ender","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lionfish-api","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/978/896/256/256/638484152344379944.png","tags":[],"installedFile":{"id":7941057,"fileName":"lionfishapi-2.7-fix-fix.jar","fileDate":"2026-04-17T17:39:58.57Z","fileLength":141535,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7941/57/lionfishapi-2.7-fix-fix.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":131475464,"invalidFingerprint":false},{"foldername":"com","fingerprint":614102099,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3957409155,"invalidFingerprint":false},{"foldername":"lionfishapi.mixins.json","fingerprint":4075590006,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":924402101,"invalidFingerprint":false}],"packageFingerprint":3722162517,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1001614,"fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","hashes":[{"type":1,"value":"af90b807eed100e899b9afa13bb75e7d45294ba3"},{"type":2,"value":"a0d7ad0c4883a81c7c17f1f0e2525727"}]},"dateInstalled":"2026-05-07T22:51:41.3075274Z","dateUpdated":"2026-05-07T22:51:41.3088367Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lionfishapi-2.7-fix-fix.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7941057,"fileName":"lionfishapi-2.7-fix-fix.jar","fileDate":"2026-04-17T17:39:58.57Z","fileLength":141535,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7941/57/lionfishapi-2.7-fix-fix.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":131475464,"invalidFingerprint":false},{"foldername":"com","fingerprint":614102099,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3957409155,"invalidFingerprint":false},{"foldername":"lionfishapi.mixins.json","fingerprint":4075590006,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":924402101,"invalidFingerprint":false}],"packageFingerprint":3722162517,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1001614,"fileNameOnDisk":"lionfishapi-2.7-fix-fix.jar","hashes":[{"type":1,"value":"af90b807eed100e899b9afa13bb75e7d45294ba3"},{"type":2,"value":"a0d7ad0c4883a81c7c17f1f0e2525727"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6297b10d-76ce-4c4c-9c6a-7dd3d026c29f","modSource":0,"addonID":619320,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Storage","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-storage","issuesURL":"https://github.com/P3pp3rF1y/SophisticatedStorage/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/543/206/256/256/637872959580005837.png","tags":[],"installedFile":{"id":8034906,"fileName":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","fileDate":"2026-05-03T21:59:52.277Z","fileLength":1667008,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/906/sophisticatedstorage-1.21.1-1.5.46.1717.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":513769,"type":2},{"addonId":238222,"type":2},{"addonId":456956,"type":2},{"addonId":964817,"type":2},{"addonId":233071,"type":2},{"addonId":235577,"type":2},{"addonId":618298,"type":3},{"addonId":243121,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1363186743,"invalidFingerprint":false},{"foldername":"net","fingerprint":2517423276,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1208915687,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2680510921,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":345096578,"invalidFingerprint":false},{"foldername":"data","fingerprint":138112467,"invalidFingerprint":false}],"packageFingerprint":1693126415,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":619320,"fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","hashes":[{"type":1,"value":"fb67f9f3593a2b105201fab9e7c88bfa4dfc4812"},{"type":2,"value":"d1c506c003fc4816bf98eb6dd91e1a32"}]},"dateInstalled":"2026-05-07T22:47:34.5908595Z","dateUpdated":"2026-05-07T22:47:34.5924585Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedstorage-1.21.1-1.5.46.1717.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8034906,"fileName":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","fileDate":"2026-05-03T21:59:52.277Z","fileLength":1667008,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/906/sophisticatedstorage-1.21.1-1.5.46.1717.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":513769,"type":2},{"addonId":238222,"type":2},{"addonId":456956,"type":2},{"addonId":964817,"type":2},{"addonId":233071,"type":2},{"addonId":235577,"type":2},{"addonId":618298,"type":3},{"addonId":243121,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1363186743,"invalidFingerprint":false},{"foldername":"net","fingerprint":2517423276,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1208915687,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2680510921,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":345096578,"invalidFingerprint":false},{"foldername":"data","fingerprint":138112467,"invalidFingerprint":false}],"packageFingerprint":1693126415,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":619320,"fileNameOnDisk":"sophisticatedstorage-1.21.1-1.5.46.1717.jar","hashes":[{"type":1,"value":"fb67f9f3593a2b105201fab9e7c88bfa4dfc4812"},{"type":2,"value":"d1c506c003fc4816bf98eb6dd91e1a32"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b4e8d6c9-ef1b-4852-a7b4-3dd9ac8148ad","modSource":0,"addonID":1335824,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426,422,434,419,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cataclysm: Spellbooks & BetterCombat - Compatibility","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cataclysmspells_compat.jar","authors":[{"id":102254308,"name":"rymusov"}],"primaryAuthor":"rymusov","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cataclysm-spellbooks-bettercombat-compatibility","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1418/361/256/256/638918939383350745.png","tags":[],"installedFile":{"id":6956563,"fileName":"cataclysmspells_compat.jar","fileDate":"2025-09-02T17:50:31.72Z","fileLength":4097,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6956/563/cataclysmspells_compat.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2685246262,"invalidFingerprint":false},{"foldername":"data","fingerprint":315356338,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":2582519377,"invalidFingerprint":false}],"packageFingerprint":1616038329,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335824,"fileNameOnDisk":"cataclysmspells_compat.jar","hashes":[{"type":1,"value":"6d012eb5c5a2d2332c6e2e41e738db87b3269a35"},{"type":2,"value":"6e98492cce5c0821f54057d923eec11d"}]},"dateInstalled":"2026-05-07T22:51:41.6580686Z","dateUpdated":"2026-05-07T22:51:41.6592083Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cataclysmspells_compat.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6956563,"fileName":"cataclysmspells_compat.jar","fileDate":"2025-09-02T17:50:31.72Z","fileLength":4097,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6956/563/cataclysmspells_compat.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.mcmeta","fingerprint":2685246262,"invalidFingerprint":false},{"foldername":"data","fingerprint":315356338,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":2582519377,"invalidFingerprint":false}],"packageFingerprint":1616038329,"gameVersion":["NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1335824,"fileNameOnDisk":"cataclysmspells_compat.jar","hashes":[{"type":1,"value":"6d012eb5c5a2d2332c6e2e41e738db87b3269a35"},{"type":2,"value":"6e98492cce5c0821f54057d923eec11d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2b38e26f-1627-4861-818c-251d98bd0ab3","modSource":0,"addonID":949555,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"BadOptimizations","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","authors":[{"id":106927997,"name":"thosea"}],"primaryAuthor":"thosea","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/badoptimizations","issuesURL":"https://github.com/imthosea/BadOptimizations","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/918/720/256/256/638380210681797905.png","tags":[],"installedFile":{"id":7338300,"fileName":"BadOptimizations-2.4.1-1.21.1.jar","fileDate":"2025-12-15T23:15:19.003Z","fileLength":283566,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7338/300/BadOptimizations-2.4.1-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"fabric","fingerprint":2190801236,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3404611605,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":929453382,"invalidFingerprint":false},{"foldername":"assets","fingerprint":336259549,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":1761380522,"invalidFingerprint":false},{"foldername":"forge","fingerprint":3247576971,"invalidFingerprint":false},{"foldername":"bo-config-template.txt","fingerprint":2289034396,"invalidFingerprint":false},{"foldername":"forge-badoptimizations.mixins.json","fingerprint":3149879093,"invalidFingerprint":false},{"foldername":"fabric-badoptimizations.mixins.json","fingerprint":2253741962,"invalidFingerprint":false},{"foldername":"badoptimizations-icon.png","fingerprint":336259549,"invalidFingerprint":false}],"packageFingerprint":3053351722,"gameVersion":["Client","Fabric","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":949555,"fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","hashes":[{"type":1,"value":"1461d8e46391efd32a3085150e86094c9f6f5c9d"},{"type":2,"value":"59ee243a5ccd09fff1dd2879b3cad72a"}]},"dateInstalled":"2026-05-07T21:58:15.9972996Z","dateUpdated":"2026-05-07T21:58:15.9986375Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BadOptimizations-2.4.1-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7338300,"fileName":"BadOptimizations-2.4.1-1.21.1.jar","fileDate":"2025-12-15T23:15:19.003Z","fileLength":283566,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7338/300/BadOptimizations-2.4.1-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"fabric","fingerprint":2190801236,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3404611605,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":929453382,"invalidFingerprint":false},{"foldername":"assets","fingerprint":336259549,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":1761380522,"invalidFingerprint":false},{"foldername":"forge","fingerprint":3247576971,"invalidFingerprint":false},{"foldername":"bo-config-template.txt","fingerprint":2289034396,"invalidFingerprint":false},{"foldername":"forge-badoptimizations.mixins.json","fingerprint":3149879093,"invalidFingerprint":false},{"foldername":"fabric-badoptimizations.mixins.json","fingerprint":2253741962,"invalidFingerprint":false},{"foldername":"badoptimizations-icon.png","fingerprint":336259549,"invalidFingerprint":false}],"packageFingerprint":3053351722,"gameVersion":["Client","Fabric","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":949555,"fileNameOnDisk":"BadOptimizations-2.4.1-1.21.1.jar","hashes":[{"type":1,"value":"1461d8e46391efd32a3085150e86094c9f6f5c9d"},{"type":2,"value":"59ee243a5ccd09fff1dd2879b3cad72a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"bde18540-0e94-4dfd-9d18-880c974b38f0","modSource":0,"addonID":482378,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ParCool! ~ Minecraft Parkour ~","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","authors":[{"id":102272291,"name":"alRex_U"}],"primaryAuthor":"alRex_U","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/parcool","issuesURL":"https://github.com/alRex-U/ParCool/issues","wikiURL":"https://github.com/alRex-U/ParCool/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/944/831/256/256/638429142781134750.png","tags":[],"installedFile":{"id":7760593,"fileName":"ParCool-1.21.1-3.4.3.3-NF.jar","fileDate":"2026-03-15T08:27:04.24Z","fileLength":1146864,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7760/593/ParCool-1.21.1-3.4.3.3-NF.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1132901,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2537108838,"invalidFingerprint":false},{"foldername":"com","fingerprint":2601344128,"invalidFingerprint":false},{"foldername":"assets","fingerprint":285712473,"invalidFingerprint":false},{"foldername":"data","fingerprint":2804807126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":783925261,"invalidFingerprint":false},{"foldername":"parcool.mixins.json","fingerprint":3592437439,"invalidFingerprint":false},{"foldername":"parcool_logo.png","fingerprint":1876280143,"invalidFingerprint":false},{"foldername":"shouldersurfing_plugin.json","fingerprint":4164995369,"invalidFingerprint":false}],"packageFingerprint":2202278659,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":482378,"fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","hashes":[{"type":1,"value":"d0ce92c2583875977919de722923abf18985c738"},{"type":2,"value":"9aa5c8ac0f634b9aaabb265074a0555c"}]},"dateInstalled":"2026-05-07T22:51:10.7159202Z","dateUpdated":"2026-05-07T22:51:10.7177813Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ParCool-1.21.1-3.4.3.3-NF.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7760593,"fileName":"ParCool-1.21.1-3.4.3.3-NF.jar","fileDate":"2026-03-15T08:27:04.24Z","fileLength":1146864,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7760/593/ParCool-1.21.1-3.4.3.3-NF.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1132901,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2537108838,"invalidFingerprint":false},{"foldername":"com","fingerprint":2601344128,"invalidFingerprint":false},{"foldername":"assets","fingerprint":285712473,"invalidFingerprint":false},{"foldername":"data","fingerprint":2804807126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":783925261,"invalidFingerprint":false},{"foldername":"parcool.mixins.json","fingerprint":3592437439,"invalidFingerprint":false},{"foldername":"parcool_logo.png","fingerprint":1876280143,"invalidFingerprint":false},{"foldername":"shouldersurfing_plugin.json","fingerprint":4164995369,"invalidFingerprint":false}],"packageFingerprint":2202278659,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":482378,"fileNameOnDisk":"ParCool-1.21.1-3.4.3.3-NF.jar","hashes":[{"type":1,"value":"d0ce92c2583875977919de722923abf18985c738"},{"type":2,"value":"9aa5c8ac0f634b9aaabb265074a0555c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"02c3ecdb-093e-4647-88b7-02a6120e58a4","modSource":0,"addonID":790626,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"ModernFix","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","authors":[{"id":101435003,"name":"embeddedt"}],"primaryAuthor":"embeddedt","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/modernfix","issuesURL":"https://github.com/embeddedt/ModernFix/issues","wikiURL":"https://github.com/embeddedt/ModernFix/wiki/Summary-of-Patches","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/881/436/256/256/638311693460984164.png","tags":[],"installedFile":{"id":8050208,"fileName":"modernfix-neoforge-5.27.6+mc1.21.1.jar","fileDate":"2026-05-06T22:30:59.67Z","fileLength":569173,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8050/208/modernfix-neoforge-5.27.6%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3179721186,"invalidFingerprint":false},{"foldername":"org","fingerprint":3543964576,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1177231304,"invalidFingerprint":false},{"foldername":"modernfix-modernfix.mixins.json","fingerprint":2801392757,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":88923539,"invalidFingerprint":false},{"foldername":"assets","fingerprint":309540392,"invalidFingerprint":false},{"foldername":"modernfix","fingerprint":1325599026,"invalidFingerprint":false}],"packageFingerprint":858463320,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":790626,"fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","hashes":[{"type":1,"value":"19a1b616ba58b8cca06e82799a152073f76fbeb1"},{"type":2,"value":"28addfc45bfafe4417ee180d16626ac6"}]},"dateInstalled":"2026-05-07T21:58:38.7881245Z","dateUpdated":"2026-05-07T22:26:00.7214141Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\modernfix-neoforge-5.27.6+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8050208,"fileName":"modernfix-neoforge-5.27.6+mc1.21.1.jar","fileDate":"2026-05-06T22:30:59.67Z","fileLength":569173,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8050/208/modernfix-neoforge-5.27.6%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3179721186,"invalidFingerprint":false},{"foldername":"org","fingerprint":3543964576,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1177231304,"invalidFingerprint":false},{"foldername":"modernfix-modernfix.mixins.json","fingerprint":2801392757,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":88923539,"invalidFingerprint":false},{"foldername":"assets","fingerprint":309540392,"invalidFingerprint":false},{"foldername":"modernfix","fingerprint":1325599026,"invalidFingerprint":false}],"packageFingerprint":858463320,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":790626,"fileNameOnDisk":"modernfix-neoforge-5.27.6+mc1.21.1.jar","hashes":[{"type":1,"value":"19a1b616ba58b8cca06e82799a152073f76fbeb1"},{"type":2,"value":"28addfc45bfafe4417ee180d16626ac6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c5db9be1-6adc-438e-9a5f-6738c24038ef","modSource":0,"addonID":328085,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[4558,424,412,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"create-1.21.1-6.0.10.jar","authors":[{"id":24065031,"name":"simibubi"},{"id":102652063,"name":"IThundxr"}],"primaryAuthor":"simibubi","primaryCategoryId":412,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create","issuesURL":"https://github.com/Creators-of-Create/Create/issues","wikiURL":"https://wiki.createmod.net","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1065/184/256/256/638598725500886388.png","tags":[],"installedFile":{"id":7963363,"fileName":"create-1.21.1-6.0.10.jar","fileDate":"2026-04-21T22:20:00.503Z","fileLength":19123767,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7963/363/create-1.21.1-6.0.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1769742327,"invalidFingerprint":false},{"foldername":"com","fingerprint":527141810,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3603264155,"invalidFingerprint":false},{"foldername":"create.mixins.json","fingerprint":3543733126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3668285381,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1060038228,"invalidFingerprint":false},{"foldername":"data","fingerprint":616283090,"invalidFingerprint":false},{"foldername":"LICENSE.md_create-1.21.1","fingerprint":590043221,"invalidFingerprint":false}],"packageFingerprint":522093599,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":328085,"fileNameOnDisk":"create-1.21.1-6.0.10.jar","hashes":[{"type":1,"value":"0e97e49837bed766e6f28a4c95b04885d6acc353"},{"type":2,"value":"179189c52b45a469e683570be4e77188"}]},"dateInstalled":"2026-05-07T22:46:20.5492325Z","dateUpdated":"2026-05-07T22:46:20.582978Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\create-1.21.1-6.0.10.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7963363,"fileName":"create-1.21.1-6.0.10.jar","fileDate":"2026-04-21T22:20:00.503Z","fileLength":19123767,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7963/363/create-1.21.1-6.0.10.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1769742327,"invalidFingerprint":false},{"foldername":"com","fingerprint":527141810,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3603264155,"invalidFingerprint":false},{"foldername":"create.mixins.json","fingerprint":3543733126,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3668285381,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1060038228,"invalidFingerprint":false},{"foldername":"data","fingerprint":616283090,"invalidFingerprint":false},{"foldername":"LICENSE.md_create-1.21.1","fingerprint":590043221,"invalidFingerprint":false}],"packageFingerprint":522093599,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":328085,"fileNameOnDisk":"create-1.21.1-6.0.10.jar","hashes":[{"type":1,"value":"0e97e49837bed766e6f28a4c95b04885d6acc353"},{"type":2,"value":"179189c52b45a469e683570be4e77188"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"a8d7b6a7-94db-4737-b9ca-ef1db01f45e6","modSource":0,"addonID":429235,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"FerriteCore ((Neo)Forge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","authors":[{"id":23615989,"name":"malte0811"}],"primaryAuthor":"malte0811","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ferritecore","issuesURL":"https://github.com/malte0811/FerriteCore/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/323/941/256/256/637438748346113688.jpeg","tags":[],"installedFile":{"id":7524151,"fileName":"ferritecore-7.0.3-neoforge.jar","fileDate":"2026-01-25T12:59:44.447Z","fileLength":121559,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7524/151/ferritecore-7.0.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1204600136,"invalidFingerprint":false},{"foldername":"malte0811","fingerprint":4255052164,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2809587253,"invalidFingerprint":false},{"foldername":"roadrunner.overrides.properties","fingerprint":36475463,"invalidFingerprint":false},{"foldername":"ferritecore.accessors.mixin.json","fingerprint":2714315218,"invalidFingerprint":false},{"foldername":"ferritecore.blockstatecache.mixin.json","fingerprint":2488671011,"invalidFingerprint":false},{"foldername":"ferritecore.dedupbakedquad.mixin.json","fingerprint":3518028653,"invalidFingerprint":false},{"foldername":"ferritecore.dedupmultipart.mixin.json","fingerprint":4121395093,"invalidFingerprint":false},{"foldername":"ferritecore.fastmap.mixin.json","fingerprint":3382642885,"invalidFingerprint":false},{"foldername":"ferritecore.modelsides.mixin.json","fingerprint":743302889,"invalidFingerprint":false},{"foldername":"ferritecore.mrl.mixin.json","fingerprint":3015213942,"invalidFingerprint":false},{"foldername":"ferritecore.predicates.mixin.json","fingerprint":2749260350,"invalidFingerprint":false},{"foldername":"ferritecore.threaddetec.mixin.json","fingerprint":3143872293,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":3369927219,"invalidFingerprint":false},{"foldername":"ferritecore.datacomponents.mixin.json","fingerprint":4281609817,"invalidFingerprint":false}],"packageFingerprint":2808038058,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":429235,"fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","hashes":[{"type":1,"value":"9563692efb708b6b568df27a01ec52f6311928ef"},{"type":2,"value":"e0374dac41d6c641903f9e241911e1d3"}]},"dateInstalled":"2026-05-07T21:57:57.8686312Z","dateUpdated":"2026-05-07T21:57:57.8697576Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ferritecore-7.0.3-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7524151,"fileName":"ferritecore-7.0.3-neoforge.jar","fileDate":"2026-01-25T12:59:44.447Z","fileLength":121559,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7524/151/ferritecore-7.0.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1204600136,"invalidFingerprint":false},{"foldername":"malte0811","fingerprint":4255052164,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2809587253,"invalidFingerprint":false},{"foldername":"roadrunner.overrides.properties","fingerprint":36475463,"invalidFingerprint":false},{"foldername":"ferritecore.accessors.mixin.json","fingerprint":2714315218,"invalidFingerprint":false},{"foldername":"ferritecore.blockstatecache.mixin.json","fingerprint":2488671011,"invalidFingerprint":false},{"foldername":"ferritecore.dedupbakedquad.mixin.json","fingerprint":3518028653,"invalidFingerprint":false},{"foldername":"ferritecore.dedupmultipart.mixin.json","fingerprint":4121395093,"invalidFingerprint":false},{"foldername":"ferritecore.fastmap.mixin.json","fingerprint":3382642885,"invalidFingerprint":false},{"foldername":"ferritecore.modelsides.mixin.json","fingerprint":743302889,"invalidFingerprint":false},{"foldername":"ferritecore.mrl.mixin.json","fingerprint":3015213942,"invalidFingerprint":false},{"foldername":"ferritecore.predicates.mixin.json","fingerprint":2749260350,"invalidFingerprint":false},{"foldername":"ferritecore.threaddetec.mixin.json","fingerprint":3143872293,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":3369927219,"invalidFingerprint":false},{"foldername":"ferritecore.datacomponents.mixin.json","fingerprint":4281609817,"invalidFingerprint":false}],"packageFingerprint":2808038058,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":429235,"fileNameOnDisk":"ferritecore-7.0.3-neoforge.jar","hashes":[{"type":1,"value":"9563692efb708b6b568df27a01ec52f6311928ef"},{"type":2,"value":"e0374dac41d6c641903f9e241911e1d3"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"da2235f0-db88-4058-bdf1-f13960cf33b0","modSource":0,"addonID":831663,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Chunk Sending[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"chunksending-1.21-2.9.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/chunk-sending-forge-fabric","issuesURL":"https://github.com/someaddons/chunksending/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/782/744/256/256/638130016628532924.png","tags":[],"installedFile":{"id":7926632,"fileName":"chunksending-1.21-2.9.jar","fileDate":"2026-04-14T17:22:23.45Z","fileLength":12100,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7926/632/chunksending-1.21-2.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307555864,"invalidFingerprint":false},{"foldername":"com","fingerprint":1842501639,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"chunksending.mixins.json","fingerprint":261029384,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":3840699650,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":831663,"fileNameOnDisk":"chunksending-1.21-2.9.jar","hashes":[{"type":1,"value":"636a121a3252028bb0ec14a3f39f9bbf723ddacd"},{"type":2,"value":"b11e59b474f20e203cfdfb7324905527"}]},"dateInstalled":"2026-05-07T21:58:16.5617695Z","dateUpdated":"2026-05-07T21:58:16.5627806Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\chunksending-1.21-2.9.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7926632,"fileName":"chunksending-1.21-2.9.jar","fileDate":"2026-04-14T17:22:23.45Z","fileLength":12100,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7926/632/chunksending-1.21-2.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":307555864,"invalidFingerprint":false},{"foldername":"com","fingerprint":1842501639,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4288801447,"invalidFingerprint":false},{"foldername":"chunksending.mixins.json","fingerprint":261029384,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1438559181,"invalidFingerprint":false}],"packageFingerprint":3840699650,"gameVersion":["1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":831663,"fileNameOnDisk":"chunksending-1.21-2.9.jar","hashes":[{"type":1,"value":"636a121a3252028bb0ec14a3f39f9bbf723ddacd"},{"type":2,"value":"b11e59b474f20e203cfdfb7324905527"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"56e79533-c630-4e63-bb78-0dbe8db675ec","modSource":0,"addonID":456640,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Limited Chunkloading - Chunk cleanup[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"limitedchunks-1.21-4.1.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/limited-chunkloading","issuesURL":"https://github.com/someaddons/limitedchunks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/534/813/256/256/637856980833634930.png","tags":[],"installedFile":{"id":5571339,"fileName":"limitedchunks-1.21-4.1.jar","fileDate":"2024-07-27T15:43:36.25Z","fileLength":16692,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5571/339/limitedchunks-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2322812058,"invalidFingerprint":false},{"foldername":"com","fingerprint":1966960042,"invalidFingerprint":false},{"foldername":"limitedchunks.mixins.json","fingerprint":2588506866,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3600105266,"invalidFingerprint":false}],"packageFingerprint":2522201719,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":456640,"fileNameOnDisk":"limitedchunks-1.21-4.1.jar","hashes":[{"type":1,"value":"ef1ce5f6ac3d3a23cc4349c8a1a912032120955e"},{"type":2,"value":"ab430864559bd8b7a3c7ccf8e024ef19"}]},"dateInstalled":"2026-05-07T21:58:40.0901741Z","dateUpdated":"2026-05-07T21:58:40.0911745Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\limitedchunks-1.21-4.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5571339,"fileName":"limitedchunks-1.21-4.1.jar","fileDate":"2024-07-27T15:43:36.25Z","fileLength":16692,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5571/339/limitedchunks-1.21-4.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2322812058,"invalidFingerprint":false},{"foldername":"com","fingerprint":1966960042,"invalidFingerprint":false},{"foldername":"limitedchunks.mixins.json","fingerprint":2588506866,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3600105266,"invalidFingerprint":false}],"packageFingerprint":2522201719,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":456640,"fileNameOnDisk":"limitedchunks-1.21-4.1.jar","hashes":[{"type":1,"value":"ef1ce5f6ac3d3a23cc4349c8a1a912032120955e"},{"type":2,"value":"ab430864559bd8b7a3c7ccf8e024ef19"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9a7c8510-688a-43b3-8c51-ae2e65e69544","modSource":0,"addonID":228525,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,435,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Bookshelf","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/bookshelf","issuesURL":"https://github.com/Darkhax-Minecraft/Bookshelf/issues","wikiURL":"https://docs.darkhax.net/mods/bookshelf?curseforge","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/981/432/256/256/638488256947873195.png","tags":[],"installedFile":{"id":7606240,"fileName":"bookshelf-neoforge-1.21.1-21.1.81.jar","fileDate":"2026-02-10T22:44:17.77Z","fileLength":328813,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7606/240/bookshelf-neoforge-1.21.1-21.1.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4108323996,"invalidFingerprint":false},{"foldername":"net","fingerprint":4180489765,"invalidFingerprint":false},{"foldername":"data","fingerprint":2815322003,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2811260136,"invalidFingerprint":false},{"foldername":"assets","fingerprint":218376142,"invalidFingerprint":false},{"foldername":"bookshelf.neoforge.mixins.json","fingerprint":776113314,"invalidFingerprint":false},{"foldername":"bookshelf.mixins.json","fingerprint":2101221140,"invalidFingerprint":false},{"foldername":"logo_bookshelf.png","fingerprint":619424013,"invalidFingerprint":false},{"foldername":"license_bookshelf.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":2267427357,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":228525,"fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","hashes":[{"type":1,"value":"efc4cda6da4dd879f24d057ed0a6413764c9ba40"},{"type":2,"value":"9f627fe031221159d74a491e279f773a"}]},"dateInstalled":"2026-05-07T22:46:27.8020311Z","dateUpdated":"2026-05-07T22:46:27.8035554Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\bookshelf-neoforge-1.21.1-21.1.81.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7606240,"fileName":"bookshelf-neoforge-1.21.1-21.1.81.jar","fileDate":"2026-02-10T22:44:17.77Z","fileLength":328813,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7606/240/bookshelf-neoforge-1.21.1-21.1.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4108323996,"invalidFingerprint":false},{"foldername":"net","fingerprint":4180489765,"invalidFingerprint":false},{"foldername":"data","fingerprint":2815322003,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2811260136,"invalidFingerprint":false},{"foldername":"assets","fingerprint":218376142,"invalidFingerprint":false},{"foldername":"bookshelf.neoforge.mixins.json","fingerprint":776113314,"invalidFingerprint":false},{"foldername":"bookshelf.mixins.json","fingerprint":2101221140,"invalidFingerprint":false},{"foldername":"logo_bookshelf.png","fingerprint":619424013,"invalidFingerprint":false},{"foldername":"license_bookshelf.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":2267427357,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":228525,"fileNameOnDisk":"bookshelf-neoforge-1.21.1-21.1.81.jar","hashes":[{"type":1,"value":"efc4cda6da4dd879f24d057ed0a6413764c9ba40"},{"type":2,"value":"9f627fe031221159d74a491e279f773a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8f0f831f-68a9-4263-a8ac-5ff31ce76144","modSource":0,"addonID":232131,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Default Options","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/default-options","issuesURL":"https://github.com/TwelveIterations/DefaultOptions/issues","wikiURL":"https://mods.twelveiterations.com/mc/default-options","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/25/393/256/256/635772772655629740.png","tags":[],"installedFile":{"id":7966181,"fileName":"defaultoptions-neoforge-1.21.1-21.1.6.jar","fileDate":"2026-04-22T10:28:50.553Z","fileLength":95747,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/181/defaultoptions-neoforge-1.21.1-21.1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2802724160,"invalidFingerprint":false},{"foldername":"net","fingerprint":583308028,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2947213061,"invalidFingerprint":false},{"foldername":"defaultoptions.png","fingerprint":3122342766,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1619557492,"invalidFingerprint":false},{"foldername":"defaultoptions.neoforge.mixins.json","fingerprint":1470398,"invalidFingerprint":false},{"foldername":"defaultoptions.mixins.json","fingerprint":1327365475,"invalidFingerprint":false},{"foldername":"LICENSE_Default Options","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1707003605,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":232131,"fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","hashes":[{"type":1,"value":"92c8695dff4b5143919c4e80e4940c6afe873750"},{"type":2,"value":"147d76b0a1953805898ed20a7f00de6b"}]},"dateInstalled":"2026-05-07T21:58:05.5047144Z","dateUpdated":"2026-05-07T21:58:05.5056569Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\defaultoptions-neoforge-1.21.1-21.1.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7966181,"fileName":"defaultoptions-neoforge-1.21.1-21.1.6.jar","fileDate":"2026-04-22T10:28:50.553Z","fileLength":95747,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/181/defaultoptions-neoforge-1.21.1-21.1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2802724160,"invalidFingerprint":false},{"foldername":"net","fingerprint":583308028,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2947213061,"invalidFingerprint":false},{"foldername":"defaultoptions.png","fingerprint":3122342766,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1619557492,"invalidFingerprint":false},{"foldername":"defaultoptions.neoforge.mixins.json","fingerprint":1470398,"invalidFingerprint":false},{"foldername":"defaultoptions.mixins.json","fingerprint":1327365475,"invalidFingerprint":false},{"foldername":"LICENSE_Default Options","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1707003605,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":232131,"fileNameOnDisk":"defaultoptions-neoforge-1.21.1-21.1.6.jar","hashes":[{"type":1,"value":"92c8695dff4b5143919c4e80e4940c6afe873750"},{"type":2,"value":"147d76b0a1953805898ed20a7f00de6b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6304d020-40e0-4df5-88ef-433ba28624f8","modSource":0,"addonID":844662,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[424,5191,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"[EMF] Entity Model Features [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","authors":[{"id":102405316,"name":"Traben"}],"primaryAuthor":"Traben","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entity-model-features","issuesURL":"https://github.com/Traben-0/Entity_Model_Features/issues","wikiURL":"https://github.com/Traben-0/Entity_Model_Features/blob/master/FEATURES.md","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/983/284/256/256/638491564386011875.png","tags":[],"installedFile":{"id":7998618,"fileName":"entity_model_features_1.21-neoforge-3.2.2.jar","fileDate":"2026-04-27T05:36:40.07Z","fileLength":565641,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7998/618/entity_model_features_1.21-neoforge-3.2.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":568563,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3961204964,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3237341129,"invalidFingerprint":false},{"foldername":"entity_model_features.mixins.json","fingerprint":4207040885,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":609070734,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":690430987,"invalidFingerprint":false}],"packageFingerprint":1145850900,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":844662,"fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","hashes":[{"type":1,"value":"98d542ad10a55553d72fea135a67781f328b54aa"},{"type":2,"value":"ee06becd6534fd68c300e8bd0dd7eb8a"}]},"dateInstalled":"2026-05-07T21:58:02.1226138Z","dateUpdated":"2026-05-07T21:58:02.1236109Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entity_model_features_1.21-neoforge-3.2.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7998618,"fileName":"entity_model_features_1.21-neoforge-3.2.2.jar","fileDate":"2026-04-27T05:36:40.07Z","fileLength":565641,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7998/618/entity_model_features_1.21-neoforge-3.2.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":568563,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3961204964,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3237341129,"invalidFingerprint":false},{"foldername":"entity_model_features.mixins.json","fingerprint":4207040885,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":609070734,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2250763913,"invalidFingerprint":false},{"foldername":"traben","fingerprint":690430987,"invalidFingerprint":false}],"packageFingerprint":1145850900,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":844662,"fileNameOnDisk":"entity_model_features_1.21-neoforge-3.2.2.jar","hashes":[{"type":1,"value":"98d542ad10a55553d72fea135a67781f328b54aa"},{"type":2,"value":"ee06becd6534fd68c300e8bd0dd7eb8a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"bc54829c-8b1d-4add-a857-c39fa7e1119a","modSource":0,"addonID":1044992,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[406,436,407,408,409],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Nature's Spirit","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"natures_spirit-2.2.5-1.21.1.jar","authors":[{"id":105230272,"name":"Team_Hibiscus"}],"primaryAuthor":"Team_Hibiscus","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/natures-spirit","issuesURL":"https://github.com/Team-Hibiscus/NaturesSpirit/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1022/567/256/256/638546583300293166_animated.gif","tags":[],"installedFile":{"id":6962784,"fileName":"natures_spirit-2.2.5-1.21.1.jar","fileDate":"2025-09-04T13:34:38.813Z","fileLength":18614161,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6962/784/natures_spirit-2.2.5-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1987767741,"invalidFingerprint":false},{"foldername":"net","fingerprint":3728057123,"invalidFingerprint":false},{"foldername":"natures_spirit.mixins.json","fingerprint":3060826593,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":3488137856,"invalidFingerprint":false},{"foldername":"data","fingerprint":3247547358,"invalidFingerprint":false},{"foldername":"assets","fingerprint":74310234,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1990901578,"invalidFingerprint":false}],"packageFingerprint":3953680760,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1044992,"fileNameOnDisk":"natures_spirit-2.2.5-1.21.1.jar","hashes":[{"type":1,"value":"153679dc2dd4601b40beed834799ba1d7c05b08a"},{"type":2,"value":"9555bf60e9406fa73c3d62bcb1036661"}]},"dateInstalled":"2026-05-07T23:17:57.9433683Z","dateUpdated":"2026-05-07T23:17:57.9551361Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\natures_spirit-2.2.5-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6962784,"fileName":"natures_spirit-2.2.5-1.21.1.jar","fileDate":"2025-09-04T13:34:38.813Z","fileLength":18614161,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6962/784/natures_spirit-2.2.5-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1987767741,"invalidFingerprint":false},{"foldername":"net","fingerprint":3728057123,"invalidFingerprint":false},{"foldername":"natures_spirit.mixins.json","fingerprint":3060826593,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":3488137856,"invalidFingerprint":false},{"foldername":"data","fingerprint":3247547358,"invalidFingerprint":false},{"foldername":"assets","fingerprint":74310234,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1990901578,"invalidFingerprint":false}],"packageFingerprint":3953680760,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1044992,"fileNameOnDisk":"natures_spirit-2.2.5-1.21.1.jar","hashes":[{"type":1,"value":"153679dc2dd4601b40beed834799ba1d7c05b08a"},{"type":2,"value":"9555bf60e9406fa73c3d62bcb1036661"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"eb04bb25-7e55-4566-80b9-5403a2d1262c","modSource":0,"addonID":280510,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6821],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AttributeFix","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","authors":[{"id":6968547,"name":"DarkhaxDev"}],"primaryAuthor":"DarkhaxDev","primaryCategoryId":6821,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/attributefix","issuesURL":"https://github.com/Darkhax-Minecraft/AttributeFix/issues","wikiURL":"https://docs.darkhax.net/mods/attributefix?curseforge","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/981/435/256/256/638488257660151687.png","tags":[],"installedFile":{"id":7115922,"fileName":"attributefix-neoforge-1.21.1-21.1.3.jar","fileDate":"2025-10-17T05:18:21.26Z","fileLength":19809,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7115/922/attributefix-neoforge-1.21.1-21.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":228525,"type":3},{"addonId":1023259,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1710305830,"invalidFingerprint":false},{"foldername":"net","fingerprint":450418585,"invalidFingerprint":false},{"foldername":"attributefix.neoforge.mixins.json","fingerprint":4089978033,"invalidFingerprint":false},{"foldername":"attributefix.mixins.json","fingerprint":3375293079,"invalidFingerprint":false},{"foldername":"logo_attributefix.png","fingerprint":2632126595,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3089608866,"invalidFingerprint":false},{"foldername":"license_attributefix.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":979895498,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":280510,"fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","hashes":[{"type":1,"value":"7aae849f6d2a6cb1368227407ea5deb552e100ba"},{"type":2,"value":"1552cea16a40215f9773e609114ccce1"}]},"dateInstalled":"2026-05-07T22:46:28.9156889Z","dateUpdated":"2026-05-07T22:46:28.9169027Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\attributefix-neoforge-1.21.1-21.1.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7115922,"fileName":"attributefix-neoforge-1.21.1-21.1.3.jar","fileDate":"2025-10-17T05:18:21.26Z","fileLength":19809,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7115/922/attributefix-neoforge-1.21.1-21.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":228525,"type":3},{"addonId":1023259,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1710305830,"invalidFingerprint":false},{"foldername":"net","fingerprint":450418585,"invalidFingerprint":false},{"foldername":"attributefix.neoforge.mixins.json","fingerprint":4089978033,"invalidFingerprint":false},{"foldername":"attributefix.mixins.json","fingerprint":3375293079,"invalidFingerprint":false},{"foldername":"logo_attributefix.png","fingerprint":2632126595,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3089608866,"invalidFingerprint":false},{"foldername":"license_attributefix.txt","fingerprint":1302837405,"invalidFingerprint":false}],"packageFingerprint":979895498,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":280510,"fileNameOnDisk":"attributefix-neoforge-1.21.1-21.1.3.jar","hashes":[{"type":1,"value":"7aae849f6d2a6cb1368227407ea5deb552e100ba"},{"type":2,"value":"1552cea16a40215f9773e609114ccce1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3effd16f-f6f5-4809-ad58-ccbd88784271","modSource":0,"addonID":289529,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[407,406,426,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic Trees - Biomes O' Plenty","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"dtbop-3.4.0.jar","authors":[{"id":8954472,"name":"cadaverous_queen"},{"id":19257089,"name":"ferreusveritas"},{"id":17921349,"name":"HarleyOConnor"},{"id":100034728,"name":"MaxHyper"}],"primaryAuthor":"cadaverous_queen","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dtbop","issuesURL":"https://github.com/the-realest-stu/Dynamic-Trees-BOP/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/145/401/256/256/636562561904079927.png","tags":[],"installedFile":{"id":7284398,"fileName":"dtbop-3.4.0.jar","fileDate":"2025-12-02T02:56:28.767Z","fileLength":411408,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7284/398/dtbop-3.4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":478155,"type":2},{"addonId":220318,"type":3},{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":42613276,"invalidFingerprint":false},{"foldername":"com","fingerprint":2706635153,"invalidFingerprint":false},{"foldername":".cache","fingerprint":3996851360,"invalidFingerprint":false},{"foldername":"assets","fingerprint":161963884,"invalidFingerprint":false},{"foldername":"data","fingerprint":3451186520,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3805393282,"invalidFingerprint":false},{"foldername":"trees","fingerprint":1561688658,"invalidFingerprint":false}],"packageFingerprint":3495066124,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":289529,"fileNameOnDisk":"dtbop-3.4.0.jar","hashes":[{"type":1,"value":"fe3d3901a33bd2f18e917fc579859e67401330c8"},{"type":2,"value":"be4ffa504280ccebaacbb74eed7e497d"}]},"dateInstalled":"2026-05-07T23:16:14.423437Z","dateUpdated":"2026-05-07T23:16:14.4253244Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\dtbop-3.4.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7284398,"fileName":"dtbop-3.4.0.jar","fileDate":"2025-12-02T02:56:28.767Z","fileLength":411408,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7284/398/dtbop-3.4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":478155,"type":2},{"addonId":220318,"type":3},{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":42613276,"invalidFingerprint":false},{"foldername":"com","fingerprint":2706635153,"invalidFingerprint":false},{"foldername":".cache","fingerprint":3996851360,"invalidFingerprint":false},{"foldername":"assets","fingerprint":161963884,"invalidFingerprint":false},{"foldername":"data","fingerprint":3451186520,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3805393282,"invalidFingerprint":false},{"foldername":"trees","fingerprint":1561688658,"invalidFingerprint":false}],"packageFingerprint":3495066124,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":289529,"fileNameOnDisk":"dtbop-3.4.0.jar","hashes":[{"type":1,"value":"fe3d3901a33bd2f18e917fc579859e67401330c8"},{"type":2,"value":"be4ffa504280ccebaacbb74eed7e497d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"974ee029-c916-427d-ad73-615f75007fc4","modSource":0,"addonID":658587,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"playerAnimator","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","authors":[{"id":100940600,"name":"KosmX"}],"primaryAuthor":"KosmX","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/playeranimator","issuesURL":"https://github.com/KosmX/fabricPlayerAnimation/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/588/418/256/256/637958435315527412.png","tags":[],"installedFile":{"id":7389814,"fileName":"player-animation-lib-forge-2.0.4+1.21.1.jar","fileDate":"2025-12-28T21:00:20.25Z","fileLength":203149,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7389/814/player-animation-lib-forge-2.0.4%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":623373,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1733563799,"invalidFingerprint":false},{"foldername":"architectury_inject_playerAnimator_common_dfd904282b214c0dbfcb1af10059f1f2_ab57f2790826365c0c1efa35ab50c2ec0633ee9aee38ea237cb7583590064e87playeranimationlib2041211devjar","fingerprint":4157654637,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1847487716,"invalidFingerprint":false},{"foldername":"player-animation-lib-minecraft_common-refmap.json","fingerprint":3361034148,"invalidFingerprint":false},{"foldername":"playerAnimator-common.mixins.json","fingerprint":927289632,"invalidFingerprint":false}],"packageFingerprint":533269171,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":658587,"fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","hashes":[{"type":1,"value":"05be8ddcc78532b9a5520c718edc6c971cd0057c"},{"type":2,"value":"ecb81c9479605db12a77bea774b88406"}]},"dateInstalled":"2026-05-07T22:48:13.6020882Z","dateUpdated":"2026-05-07T22:48:13.6035219Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\player-animation-lib-forge-2.0.4+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7389814,"fileName":"player-animation-lib-forge-2.0.4+1.21.1.jar","fileDate":"2025-12-28T21:00:20.25Z","fileLength":203149,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7389/814/player-animation-lib-forge-2.0.4%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":623373,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1733563799,"invalidFingerprint":false},{"foldername":"architectury_inject_playerAnimator_common_dfd904282b214c0dbfcb1af10059f1f2_ab57f2790826365c0c1efa35ab50c2ec0633ee9aee38ea237cb7583590064e87playeranimationlib2041211devjar","fingerprint":4157654637,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1847487716,"invalidFingerprint":false},{"foldername":"player-animation-lib-minecraft_common-refmap.json","fingerprint":3361034148,"invalidFingerprint":false},{"foldername":"playerAnimator-common.mixins.json","fingerprint":927289632,"invalidFingerprint":false}],"packageFingerprint":533269171,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":658587,"fileNameOnDisk":"player-animation-lib-forge-2.0.4+1.21.1.jar","hashes":[{"type":1,"value":"05be8ddcc78532b9a5520c718edc6c971cd0057c"},{"type":2,"value":"ecb81c9479605db12a77bea774b88406"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"249a4c49-d610-41b7-8cad-fcb90bb31930","modSource":0,"addonID":888328,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,4465,5193],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Oceans","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-oceans","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1492/410/256/256/638969817566126463.webp","tags":[],"installedFile":{"id":7228353,"fileName":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:46:08.873Z","fileLength":36124896,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/353/loadingbackgrounds_oceans-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2813639746,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":893004147,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":71818460,"invalidFingerprint":false}],"packageFingerprint":3076566335,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888328,"fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"7ab5a1473b4c404b7daab58d2b42ec4daf323b86"},{"type":2,"value":"54334cce025c031454832d246097a554"}]},"dateInstalled":"2026-05-07T21:58:12.1513157Z","dateUpdated":"2026-05-07T21:58:12.1641691Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_oceans-1.21.X-3.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228353,"fileName":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:46:08.873Z","fileLength":36124896,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/353/loadingbackgrounds_oceans-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2813639746,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":893004147,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":71818460,"invalidFingerprint":false}],"packageFingerprint":3076566335,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888328,"fileNameOnDisk":"loadingbackgrounds_oceans-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"7ab5a1473b4c404b7daab58d2b42ec4daf323b86"},{"type":2,"value":"54334cce025c031454832d246097a554"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"77db3d2c-9ffc-433a-86d5-93414c5a449f","modSource":0,"addonID":907856,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,435,412,4843],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Recipe Essentials[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"recipeessentials-1.21-4.0.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/recipe-essentials-forge-fabric","issuesURL":"https://github.com/someaddons/recipeessentials/issues/new/choose","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/871/402/256/256/638289037640254884.png","tags":[],"installedFile":{"id":6165711,"fileName":"recipeessentials-1.21-4.0.jar","fileDate":"2025-02-06T22:39:59.3Z","fileLength":43950,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6165/711/recipeessentials-1.21-4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1511403144,"invalidFingerprint":false},{"foldername":"com","fingerprint":792041555,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1722552194,"invalidFingerprint":false},{"foldername":"recipeessentials.mixins.json","fingerprint":2013170440,"invalidFingerprint":false}],"packageFingerprint":4175989887,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":907856,"fileNameOnDisk":"recipeessentials-1.21-4.0.jar","hashes":[{"type":1,"value":"a1ea98e7ea194807201cc8618ac9e74da65716e5"},{"type":2,"value":"c6d1e7fb82f49e0d1a423d6bf41ad1fb"}]},"dateInstalled":"2026-05-07T21:57:59.7415826Z","dateUpdated":"2026-05-07T21:57:59.7424834Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\recipeessentials-1.21-4.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6165711,"fileName":"recipeessentials-1.21-4.0.jar","fileDate":"2025-02-06T22:39:59.3Z","fileLength":43950,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6165/711/recipeessentials-1.21-4.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1511403144,"invalidFingerprint":false},{"foldername":"com","fingerprint":792041555,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1722552194,"invalidFingerprint":false},{"foldername":"recipeessentials.mixins.json","fingerprint":2013170440,"invalidFingerprint":false}],"packageFingerprint":4175989887,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":907856,"fileNameOnDisk":"recipeessentials-1.21-4.0.jar","hashes":[{"type":1,"value":"a1ea98e7ea194807201cc8618ac9e74da65716e5"},{"type":2,"value":"c6d1e7fb82f49e0d1a423d6bf41ad1fb"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"427ed4a1-d9f6-4223-bd8a-c49067c0b33e","modSource":0,"addonID":335493,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic FPS","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","authors":[{"id":6835575,"name":"juliand665"},{"id":102765053,"name":"LostLuma"}],"primaryAuthor":"juliand665","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dynamic-fps","issuesURL":"https://github.com/juliand665/Dynamic-FPS/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/218/967/256/256/637013973797981040.png","tags":[],"installedFile":{"id":7546938,"fileName":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","fileDate":"2026-01-29T18:23:46.537Z","fileLength":220193,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7546/938/dynamic-fps-3.11.4%2bminecraft-1.21.0-neoforge.jar","isAlternate":false,"alternateFileId":7546939,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2719458992,"invalidFingerprint":false},{"foldername":"architectury_inject_dynamicfps_common_96ad272d90fa4fcc8d67753a3449cf6d_48138490a95625983251b45ac7336d8a7e463234a1fad5dfdc4c144b1c5f439adynamicfps3114devjar","fingerprint":3518390575,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1233643626,"invalidFingerprint":false},{"foldername":"dynamic_fps-common.mixins.json","fingerprint":3529504325,"invalidFingerprint":false},{"foldername":"dynamic_fps.mixins.json","fingerprint":2139721154,"invalidFingerprint":false},{"foldername":"dynamic_fps.png","fingerprint":2545990837,"invalidFingerprint":false},{"foldername":"dynamic_fps","fingerprint":1181247587,"invalidFingerprint":false},{"foldername":"net","fingerprint":3056343028,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2415388098,"invalidFingerprint":false}],"packageFingerprint":250368856,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":335493,"fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","hashes":[{"type":1,"value":"35b17e95b2b65930116ccc83e0cc358ac1bfcf9e"},{"type":2,"value":"e5ef3e5d37eedad79cf44897229fd8f2"}]},"dateInstalled":"2026-05-07T21:58:41.3324906Z","dateUpdated":"2026-05-07T21:58:41.3335726Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7546938,"fileName":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","fileDate":"2026-01-29T18:23:46.537Z","fileLength":220193,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7546/938/dynamic-fps-3.11.4%2bminecraft-1.21.0-neoforge.jar","isAlternate":false,"alternateFileId":7546939,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2719458992,"invalidFingerprint":false},{"foldername":"architectury_inject_dynamicfps_common_96ad272d90fa4fcc8d67753a3449cf6d_48138490a95625983251b45ac7336d8a7e463234a1fad5dfdc4c144b1c5f439adynamicfps3114devjar","fingerprint":3518390575,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1233643626,"invalidFingerprint":false},{"foldername":"dynamic_fps-common.mixins.json","fingerprint":3529504325,"invalidFingerprint":false},{"foldername":"dynamic_fps.mixins.json","fingerprint":2139721154,"invalidFingerprint":false},{"foldername":"dynamic_fps.png","fingerprint":2545990837,"invalidFingerprint":false},{"foldername":"dynamic_fps","fingerprint":1181247587,"invalidFingerprint":false},{"foldername":"net","fingerprint":3056343028,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2415388098,"invalidFingerprint":false}],"packageFingerprint":250368856,"gameVersion":["1.21","Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":335493,"fileNameOnDisk":"dynamic-fps-3.11.4+minecraft-1.21.0-neoforge.jar","hashes":[{"type":1,"value":"35b17e95b2b65930116ccc83e0cc358ac1bfcf9e"},{"type":2,"value":"e5ef3e5d37eedad79cf44897229fd8f2"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b1d8afb2-7a17-432b-8c13-5f09c4ed37bb","modSource":0,"addonID":1134260,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[409,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loot Integrations: L_Ender 's Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootintegrations_cataclysm-1.2.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loot-integrations-cataclysm","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1111/578/256/256/638663241602054826.png","tags":[],"installedFile":{"id":7920425,"fileName":"lootintegrations_cataclysm-1.2.jar","fileDate":"2026-04-13T11:19:26.157Z","fileLength":5712,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/425/lootintegrations_cataclysm-1.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":580689,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3146836340,"invalidFingerprint":false},{"foldername":"data","fingerprint":2927771096,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":243401700,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2627205636,"invalidFingerprint":false}],"packageFingerprint":374247648,"gameVersion":["1.20.1","Forge","1.21.1","1.18.2","1.19.2","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1134260,"fileNameOnDisk":"lootintegrations_cataclysm-1.2.jar","hashes":[{"type":1,"value":"75b5e36c11aa16cf0d6c38fcb8cfa2afc31a2bb7"},{"type":2,"value":"ee0ef84b4c35f8b6de3e750a17f89d58"}]},"dateInstalled":"2026-05-07T23:25:26.7453637Z","dateUpdated":"2026-05-07T23:25:26.7468824Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootintegrations_cataclysm-1.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7920425,"fileName":"lootintegrations_cataclysm-1.2.jar","fileDate":"2026-04-13T11:19:26.157Z","fileLength":5712,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7920/425/lootintegrations_cataclysm-1.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":580689,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3146836340,"invalidFingerprint":false},{"foldername":"data","fingerprint":2927771096,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":243401700,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2627205636,"invalidFingerprint":false}],"packageFingerprint":374247648,"gameVersion":["1.20.1","Forge","1.21.1","1.18.2","1.19.2","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1134260,"fileNameOnDisk":"lootintegrations_cataclysm-1.2.jar","hashes":[{"type":1,"value":"75b5e36c11aa16cf0d6c38fcb8cfa2afc31a2bb7"},{"type":2,"value":"ee0ef84b4c35f8b6de3e750a17f89d58"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"66c9e7ea-7112-4e9b-8661-7a6ea0fd3f12","modSource":0,"addonID":394468,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","authors":[{"id":28746583,"name":"JellySquid"}],"primaryAuthor":"JellySquid","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sodium","issuesURL":"https://github.com/CaffeineMC/sodium-fabric/issues","wikiURL":"https://github.com/CaffeineMC/sodium-fabric/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/284/773/256/256/637298471098686391.png","tags":[],"installedFile":{"id":6382651,"fileName":"sodium-neoforge-0.6.13+mc1.21.1.jar","fileDate":"2025-04-04T00:13:49.467Z","fileLength":1162994,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6382/651/sodium-neoforge-0.6.13%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1108577269,"invalidFingerprint":false},{"foldername":"net","fingerprint":3272062076,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3953782083,"invalidFingerprint":false},{"foldername":"sodium-icon.png","fingerprint":3041543243,"invalidFingerprint":false},{"foldername":"programmer_art","fingerprint":1942856804,"invalidFingerprint":false},{"foldername":"sodium-neoforge.mixins.json","fingerprint":2418719239,"invalidFingerprint":false},{"foldername":"sodium-common.mixins.json","fingerprint":3242769697,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":2033162507,"invalidFingerprint":false}],"packageFingerprint":1900921493,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":394468,"fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","hashes":[{"type":1,"value":"38af70fa4dc4b2aaac636e92fdba3bedd5a025e1"},{"type":2,"value":"e5018c782d851fea76be0205b7616e5d"}]},"dateInstalled":"2026-05-07T21:58:34.7473423Z","dateUpdated":"2026-05-07T21:58:34.748929Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodium-neoforge-0.6.13+mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6382651,"fileName":"sodium-neoforge-0.6.13+mc1.21.1.jar","fileDate":"2025-04-04T00:13:49.467Z","fileLength":1162994,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6382/651/sodium-neoforge-0.6.13%2bmc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1108577269,"invalidFingerprint":false},{"foldername":"net","fingerprint":3272062076,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3953782083,"invalidFingerprint":false},{"foldername":"sodium-icon.png","fingerprint":3041543243,"invalidFingerprint":false},{"foldername":"programmer_art","fingerprint":1942856804,"invalidFingerprint":false},{"foldername":"sodium-neoforge.mixins.json","fingerprint":2418719239,"invalidFingerprint":false},{"foldername":"sodium-common.mixins.json","fingerprint":3242769697,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":2033162507,"invalidFingerprint":false}],"packageFingerprint":1900921493,"gameVersion":["Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":394468,"fileNameOnDisk":"sodium-neoforge-0.6.13+mc1.21.1.jar","hashes":[{"type":1,"value":"38af70fa4dc4b2aaac636e92fdba3bedd5a025e1"},{"type":2,"value":"e5018c782d851fea76be0205b7616e5d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7b9b49f1-02fa-45ef-ade5-537ae3814d5d","modSource":0,"addonID":348831,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[413,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Double Doors","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","authors":[{"id":7049004,"name":"Serilum"}],"primaryAuthor":"Serilum","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/double-doors","issuesURL":"https://github.com/Serilum/.issue-tracker/labels/Mod: Double Doors","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/233/519/256/256/637072440646369425.png","tags":[],"installedFile":{"id":7143842,"fileName":"doubledoors-1.21.1-7.2.jar","fileDate":"2025-10-24T10:34:04.757Z","fileLength":75041,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7143/842/doubledoors-1.21.1-7.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":342584,"type":3}],"isAvailable":true,"modules":[{"foldername":"doubledoors_fabric.mixins.json","fingerprint":3142535720,"invalidFingerprint":false},{"foldername":"doubledoors_fabric.refmap.json","fingerprint":3435314418,"invalidFingerprint":false},{"foldername":"doubledoors_forge.mixins.json","fingerprint":2350230178,"invalidFingerprint":false},{"foldername":"doubledoors_neoforge.mixins.json","fingerprint":302935574,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3546439557,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4037493495,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1629641011,"invalidFingerprint":false},{"foldername":"com","fingerprint":3784598438,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3088361447,"invalidFingerprint":false}],"packageFingerprint":1435909008,"gameVersion":["1.21","Fabric","NeoForge","Forge","1.21.1","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348831,"fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","hashes":[{"type":1,"value":"73ddb685749a0ae9223e9b827af5fd3e19ac732c"},{"type":2,"value":"bc5d5a4d5edfed10d09f149e173ec600"}]},"dateInstalled":"2026-05-07T22:37:23.3518187Z","dateUpdated":"2026-05-07T22:37:23.3533327Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\doubledoors-1.21.1-7.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7143842,"fileName":"doubledoors-1.21.1-7.2.jar","fileDate":"2025-10-24T10:34:04.757Z","fileLength":75041,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7143/842/doubledoors-1.21.1-7.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":342584,"type":3}],"isAvailable":true,"modules":[{"foldername":"doubledoors_fabric.mixins.json","fingerprint":3142535720,"invalidFingerprint":false},{"foldername":"doubledoors_fabric.refmap.json","fingerprint":3435314418,"invalidFingerprint":false},{"foldername":"doubledoors_forge.mixins.json","fingerprint":2350230178,"invalidFingerprint":false},{"foldername":"doubledoors_neoforge.mixins.json","fingerprint":302935574,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":3546439557,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4037493495,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1629641011,"invalidFingerprint":false},{"foldername":"com","fingerprint":3784598438,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3088361447,"invalidFingerprint":false}],"packageFingerprint":1435909008,"gameVersion":["1.21","Fabric","NeoForge","Forge","1.21.1","Quilt"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Quilt","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348831,"fileNameOnDisk":"doubledoors-1.21.1-7.2.jar","hashes":[{"type":1,"value":"73ddb685749a0ae9223e9b827af5fd3e19ac732c"},{"type":2,"value":"bc5d5a4d5edfed10d09f149e173ec600"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b7107a26-f27c-477b-9b69-ac680fcebefb","modSource":0,"addonID":256717,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,5191,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Clumps","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/clumps","issuesURL":"https://github.com/jaredlll08/Clumps/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1289/817/256/256/638838549850518521_animated.gif","tags":[],"installedFile":{"id":5623731,"fileName":"Clumps-neoforge-1.21.1-19.0.0.1.jar","fileDate":"2024-08-13T07:49:09.587Z","fileLength":18382,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5623/731/Clumps-neoforge-1.21.1-19.0.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":461241897,"invalidFingerprint":false},{"foldername":"com","fingerprint":207530136,"invalidFingerprint":false},{"foldername":"clumps.mixins.json","fingerprint":2145951388,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2425768564,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1788784743,"invalidFingerprint":false}],"packageFingerprint":2871381177,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":256717,"fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","hashes":[{"type":1,"value":"fa2576297c7bd12b28aa7070e8141792bd66da4c"},{"type":2,"value":"8b42a9d7a72bde90fa061d17e2859e7b"}]},"dateInstalled":"2026-05-07T21:58:39.357285Z","dateUpdated":"2026-05-07T21:58:39.3584549Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Clumps-neoforge-1.21.1-19.0.0.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5623731,"fileName":"Clumps-neoforge-1.21.1-19.0.0.1.jar","fileDate":"2024-08-13T07:49:09.587Z","fileLength":18382,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5623/731/Clumps-neoforge-1.21.1-19.0.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":461241897,"invalidFingerprint":false},{"foldername":"com","fingerprint":207530136,"invalidFingerprint":false},{"foldername":"clumps.mixins.json","fingerprint":2145951388,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2425768564,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1788784743,"invalidFingerprint":false}],"packageFingerprint":2871381177,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":256717,"fileNameOnDisk":"Clumps-neoforge-1.21.1-19.0.0.1.jar","hashes":[{"type":1,"value":"fa2576297c7bd12b28aa7070e8141792bd66da4c"},{"type":2,"value":"8b42a9d7a72bde90fa061d17e2859e7b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4a1e1847-3086-4917-87c0-d8bfec1dafd9","modSource":0,"addonID":868624,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,4843,424,435,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AutoMessage","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":104539068,"name":"jason13official"}],"primaryAuthor":"Lupin","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/automessage","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/845/496/256/256/638243423265811286.png","tags":[],"installedFile":{"id":7018836,"fileName":"automessage-merged-1.21.1-3.0.0.jar","fileDate":"2025-09-21T12:01:17.79Z","fileLength":140337,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7018/836/automessage-merged-1.21.1-3.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2716787439,"invalidFingerprint":false},{"foldername":"automessage.png","fingerprint":4070782436,"invalidFingerprint":false},{"foldername":"common","fingerprint":923376612,"invalidFingerprint":false},{"foldername":"common-automessage.mixins.json","fingerprint":2473924825,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":3995689679,"invalidFingerprint":false},{"foldername":"fabric-automessage.accesswidener","fingerprint":596709444,"invalidFingerprint":false},{"foldername":"fabric-automessage.fabric.mixins.json","fingerprint":435450200,"invalidFingerprint":false},{"foldername":"fabric-automessage.mixins.json","fingerprint":1498465287,"invalidFingerprint":false},{"foldername":"fabric-automessage.refmap.json","fingerprint":2951851005,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":1018662615,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":838918197,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":54389153,"invalidFingerprint":false},{"foldername":"neoforge-automessage.mixins.json","fingerprint":1052403198,"invalidFingerprint":false},{"foldername":"neoforge-automessage.neoforge.mixins.json","fingerprint":787445502,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":460465719,"invalidFingerprint":false}],"packageFingerprint":786879091,"gameVersion":["1.21","Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":868624,"fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","hashes":[{"type":1,"value":"1c312eb30c8e1bd608d4ea66b1a950f780ee814a"},{"type":2,"value":"0a8755bc91f1982df1cd1e4382bc478a"}]},"dateInstalled":"2026-05-07T21:58:15.4712586Z","dateUpdated":"2026-05-07T21:58:15.4722705Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\automessage-merged-1.21.1-3.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7018836,"fileName":"automessage-merged-1.21.1-3.0.0.jar","fileDate":"2025-09-21T12:01:17.79Z","fileLength":140337,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7018/836/automessage-merged-1.21.1-3.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2716787439,"invalidFingerprint":false},{"foldername":"automessage.png","fingerprint":4070782436,"invalidFingerprint":false},{"foldername":"common","fingerprint":923376612,"invalidFingerprint":false},{"foldername":"common-automessage.mixins.json","fingerprint":2473924825,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":3995689679,"invalidFingerprint":false},{"foldername":"fabric-automessage.accesswidener","fingerprint":596709444,"invalidFingerprint":false},{"foldername":"fabric-automessage.fabric.mixins.json","fingerprint":435450200,"invalidFingerprint":false},{"foldername":"fabric-automessage.mixins.json","fingerprint":1498465287,"invalidFingerprint":false},{"foldername":"fabric-automessage.refmap.json","fingerprint":2951851005,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":1018662615,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":838918197,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":54389153,"invalidFingerprint":false},{"foldername":"neoforge-automessage.mixins.json","fingerprint":1052403198,"invalidFingerprint":false},{"foldername":"neoforge-automessage.neoforge.mixins.json","fingerprint":787445502,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":460465719,"invalidFingerprint":false}],"packageFingerprint":786879091,"gameVersion":["1.21","Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":868624,"fileNameOnDisk":"automessage-merged-1.21.1-3.0.0.jar","hashes":[{"type":1,"value":"1c312eb30c8e1bd608d4ea66b1a950f780ee814a"},{"type":2,"value":"0a8755bc91f1982df1cd1e4382bc478a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"efe8c331-6570-4819-8d8c-f91d81ba883f","modSource":0,"addonID":250398,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Controlling","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","authors":[{"id":10618648,"name":"Jaredlll08"}],"primaryAuthor":"Jaredlll08","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/controlling","issuesURL":"https://github.com/jaredlll08/Controlling/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/49/603/256/256/636079972364045115.png","tags":[],"installedFile":{"id":6368976,"fileName":"Controlling-neoforge-1.21.1-19.0.5.jar","fileDate":"2025-03-30T23:44:28.983Z","fileLength":77555,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6368/976/Controlling-neoforge-1.21.1-19.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":858542,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238902293,"invalidFingerprint":false},{"foldername":"com","fingerprint":807691357,"invalidFingerprint":false},{"foldername":"controlling.accesswidener","fingerprint":2385600630,"invalidFingerprint":false},{"foldername":"controlling.neoforge.mixins.json","fingerprint":1419589446,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3762604135,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1119875546,"invalidFingerprint":false},{"foldername":"controlling.mixins.json","fingerprint":2374489773,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1300801978,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1888588519,"invalidFingerprint":false}],"packageFingerprint":1306717928,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":250398,"fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","hashes":[{"type":1,"value":"8a34424fc1428778be2fdbfa4da67b21b70bcbfe"},{"type":2,"value":"7141c2d0bb774dc6e4481be32b685179"}]},"dateInstalled":"2026-05-07T21:58:48.4488998Z","dateUpdated":"2026-05-07T21:58:48.4502324Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Controlling-neoforge-1.21.1-19.0.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6368976,"fileName":"Controlling-neoforge-1.21.1-19.0.5.jar","fileDate":"2025-03-30T23:44:28.983Z","fileLength":77555,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6368/976/Controlling-neoforge-1.21.1-19.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":858542,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1238902293,"invalidFingerprint":false},{"foldername":"com","fingerprint":807691357,"invalidFingerprint":false},{"foldername":"controlling.accesswidener","fingerprint":2385600630,"invalidFingerprint":false},{"foldername":"controlling.neoforge.mixins.json","fingerprint":1419589446,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3762604135,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1119875546,"invalidFingerprint":false},{"foldername":"controlling.mixins.json","fingerprint":2374489773,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1300801978,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1888588519,"invalidFingerprint":false}],"packageFingerprint":1306717928,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":250398,"fileNameOnDisk":"Controlling-neoforge-1.21.1-19.0.5.jar","hashes":[{"type":1,"value":"8a34424fc1428778be2fdbfa4da67b21b70bcbfe"},{"type":2,"value":"7141c2d0bb774dc6e4481be32b685179"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"cc6b8443-16b9-4e7e-aa48-f8fde54deaca","modSource":0,"addonID":331936,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Citadel","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"citadel-2.7.0-1.21.1.jar","authors":[{"id":13086062,"name":"sbom_xela"}],"primaryAuthor":"sbom_xela","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/citadel","issuesURL":"https://github.com/Alex-the-666/Citadel/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/214/988/256/256/636995179309161946.png","tags":[],"installedFile":{"id":7476597,"fileName":"citadel-2.7.0-1.21.1.jar","fileDate":"2026-01-17T18:20:53.847Z","fileLength":3033192,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7476/597/citadel-2.7.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3416444299,"invalidFingerprint":false},{"foldername":"com","fingerprint":1060480567,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2043094359,"invalidFingerprint":false},{"foldername":"citadel.mixins.json","fingerprint":3790648837,"invalidFingerprint":false},{"foldername":"citadel.png","fingerprint":1603167710,"invalidFingerprint":false},{"foldername":"data","fingerprint":1022396413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2373386176,"invalidFingerprint":false},{"foldername":"net","fingerprint":610374922,"invalidFingerprint":false},{"foldername":"git.properties","fingerprint":700042850,"invalidFingerprint":false},{"foldername":"org","fingerprint":2567598862,"invalidFingerprint":false}],"packageFingerprint":2405245879,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":331936,"fileNameOnDisk":"citadel-2.7.0-1.21.1.jar","hashes":[{"type":1,"value":"01b18dfa37528aebd63b49874c9ac7795a4fc084"},{"type":2,"value":"4565267974f0b6b0dd08fedf814a9b38"}]},"dateInstalled":"2026-05-07T23:30:17.5518131Z","dateUpdated":"2026-05-07T23:30:17.5540664Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\citadel-2.7.0-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7476597,"fileName":"citadel-2.7.0-1.21.1.jar","fileDate":"2026-01-17T18:20:53.847Z","fileLength":3033192,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7476/597/citadel-2.7.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3416444299,"invalidFingerprint":false},{"foldername":"com","fingerprint":1060480567,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2043094359,"invalidFingerprint":false},{"foldername":"citadel.mixins.json","fingerprint":3790648837,"invalidFingerprint":false},{"foldername":"citadel.png","fingerprint":1603167710,"invalidFingerprint":false},{"foldername":"data","fingerprint":1022396413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2373386176,"invalidFingerprint":false},{"foldername":"net","fingerprint":610374922,"invalidFingerprint":false},{"foldername":"git.properties","fingerprint":700042850,"invalidFingerprint":false},{"foldername":"org","fingerprint":2567598862,"invalidFingerprint":false}],"packageFingerprint":2405245879,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":331936,"fileNameOnDisk":"citadel-2.7.0-1.21.1.jar","hashes":[{"type":1,"value":"01b18dfa37528aebd63b49874c9ac7795a4fc084"},{"type":2,"value":"4565267974f0b6b0dd08fedf814a9b38"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"eb6bbea3-970a-44f0-ba4b-af212aa60dde","modSource":0,"addonID":351264,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Kotlin for Forge","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"kotlinforforge-5.11.0-all.jar","authors":[{"id":33749215,"name":"thedarkcolour"}],"primaryAuthor":"thedarkcolour","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/kotlin-for-forge","issuesURL":"https://github.com/thedarkcolour/KotlinForForge/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/236/269/256/256/637091078382616109.png","tags":[],"installedFile":{"id":7471280,"fileName":"kotlinforforge-5.11.0-all.jar","fileDate":"2026-01-17T01:22:54.927Z","fileLength":6869790,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7471/280/kotlinforforge-5.11.0-all.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2289343275,"invalidFingerprint":false}],"packageFingerprint":1356655026,"gameVersion":["1.21","1.21.5","1.21.4","Forge","1.20.6","1.21.1","1.21.3","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":351264,"fileNameOnDisk":"kotlinforforge-5.11.0-all.jar","hashes":[{"type":1,"value":"a8b9f1233336ca9fe4702bc2cc5a6f97ad5e3b65"},{"type":2,"value":"ad515a1a34f47bbc17aabab0b99ecee4"}]},"dateInstalled":"2026-05-07T23:25:51.0532269Z","dateUpdated":"2026-05-07T23:25:51.0564797Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\kotlinforforge-5.11.0-all.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7471280,"fileName":"kotlinforforge-5.11.0-all.jar","fileDate":"2026-01-17T01:22:54.927Z","fileLength":6869790,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7471/280/kotlinforforge-5.11.0-all.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2289343275,"invalidFingerprint":false}],"packageFingerprint":1356655026,"gameVersion":["1.21","1.21.5","1.21.4","Forge","1.20.6","1.21.1","1.21.3","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":351264,"fileNameOnDisk":"kotlinforforge-5.11.0-all.jar","hashes":[{"type":1,"value":"a8b9f1233336ca9fe4702bc2cc5a6f97ad5e3b65"},{"type":2,"value":"ad515a1a34f47bbc17aabab0b99ecee4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"da34e359-6cf7-470c-831e-c410f2ff4039","modSource":0,"addonID":1154622,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Stone Zone)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","authors":[{"id":12753167,"name":"xelbayria"},{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"xelbayria","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/stone-zone","issuesURL":"https://github.com/MehVahdJukaar/StoneZone/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1140/191/256/256/638703438900456513_animated.gif","tags":[],"installedFile":{"id":7824607,"fileName":"stonezone-1.21-2.11.16-neoforge.jar","fileDate":"2026-03-27T20:25:40.373Z","fileLength":818472,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7824/607/stonezone-1.21-2.11.16-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":453925,"type":2},{"addonId":351725,"type":2},{"addonId":384991,"type":2},{"addonId":989479,"type":2},{"addonId":1119394,"type":2},{"addonId":307052,"type":2},{"addonId":558998,"type":2},{"addonId":629153,"type":2},{"addonId":312289,"type":2},{"addonId":363569,"type":2},{"addonId":628539,"type":3},{"addonId":352039,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":243121,"type":2},{"addonId":496913,"type":2},{"addonId":835687,"type":2},{"addonId":860325,"type":2},{"addonId":852663,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1687733529,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2266300976,"invalidFingerprint":false},{"foldername":"architectury_inject_stonezone_common_39181668d93348368fa034c98bfd5f5c_b745f55203e24b4b60a0374bfc1e3e4885a06008b8806e58cd754580d832e4d7stonezone12121116devjar","fingerprint":2993057744,"invalidFingerprint":false},{"foldername":"assets","fingerprint":831461950,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":616016199,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":1276693803,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1154622,"fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","hashes":[{"type":1,"value":"ac55fe6d399a7890f3542168a3b1b668214f0512"},{"type":2,"value":"ab6d5b60854543d0ccc7b5897239e67a"}]},"dateInstalled":"2026-05-07T23:01:09.3818786Z","dateUpdated":"2026-05-07T23:01:09.3840201Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\stonezone-1.21-2.11.16-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7824607,"fileName":"stonezone-1.21-2.11.16-neoforge.jar","fileDate":"2026-03-27T20:25:40.373Z","fileLength":818472,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7824/607/stonezone-1.21-2.11.16-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":453925,"type":2},{"addonId":351725,"type":2},{"addonId":384991,"type":2},{"addonId":989479,"type":2},{"addonId":1119394,"type":2},{"addonId":307052,"type":2},{"addonId":558998,"type":2},{"addonId":629153,"type":2},{"addonId":312289,"type":2},{"addonId":363569,"type":2},{"addonId":628539,"type":3},{"addonId":352039,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":243121,"type":2},{"addonId":496913,"type":2},{"addonId":835687,"type":2},{"addonId":860325,"type":2},{"addonId":852663,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1687733529,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2266300976,"invalidFingerprint":false},{"foldername":"architectury_inject_stonezone_common_39181668d93348368fa034c98bfd5f5c_b745f55203e24b4b60a0374bfc1e3e4885a06008b8806e58cd754580d832e4d7stonezone12121116devjar","fingerprint":2993057744,"invalidFingerprint":false},{"foldername":"assets","fingerprint":831461950,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":616016199,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":1276693803,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1154622,"fileNameOnDisk":"stonezone-1.21-2.11.16-neoforge.jar","hashes":[{"type":1,"value":"ac55fe6d399a7890f3542168a3b1b668214f0512"},{"type":2,"value":"ab6d5b60854543d0ccc7b5897239e67a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"c845cbb4-96fe-4544-8a57-73355a9caa1c","modSource":0,"addonID":938917,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Accessories","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","authors":[{"id":100277261,"name":"Blodhgarm"}],"primaryAuthor":"Blodhgarm","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/accessories","issuesURL":"https://github.com/wisp-forest/accessories/issues","wikiURL":"https://docs.wispforest.io/accessories/home/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/948/913/256/256/638436487112587498.png","tags":[],"installedFile":{"id":7583320,"fileName":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","fileDate":"2026-02-06T07:37:53.473Z","fileLength":1078697,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7583/320/accessories-neoforge-1.1.0-beta.53%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":532610,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339488834,"invalidFingerprint":false},{"foldername":"accessories-common-common-refmap.json","fingerprint":3038073267,"invalidFingerprint":false},{"foldername":"accessories-common.mixins.json","fingerprint":449082642,"invalidFingerprint":false},{"foldername":"accessories-forge.mixins.json","fingerprint":436225717,"invalidFingerprint":false},{"foldername":"accessories.accesswidener","fingerprint":1192290671,"invalidFingerprint":false},{"foldername":"architectury_inject_accessories_common_7e6e125f19a1421091b1c848fd491425_7a9ea86af8844edd044e972b57ef807d7deb4fcb996c193cbc7e6e17d5b5867faccessoriescommon110beta531211devjar","fingerprint":3374659311,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2343358420,"invalidFingerprint":false},{"foldername":"data","fingerprint":4116913964,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2497594228,"invalidFingerprint":false},{"foldername":"io","fingerprint":64018920,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1114446186,"invalidFingerprint":false},{"foldername":"schemas","fingerprint":3011214421,"invalidFingerprint":false}],"packageFingerprint":2661209689,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":938917,"fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","hashes":[{"type":1,"value":"77d75c2e13cfdf56a45cdd29806c1c97c3d250fc"},{"type":2,"value":"f826cbb52d4d05e069eecda4cff65e30"}]},"dateInstalled":"2026-05-07T22:53:54.077094Z","dateUpdated":"2026-05-07T22:53:54.0788523Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\accessories-neoforge-1.1.0-beta.53+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7583320,"fileName":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","fileDate":"2026-02-06T07:37:53.473Z","fileLength":1078697,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7583/320/accessories-neoforge-1.1.0-beta.53%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":532610,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339488834,"invalidFingerprint":false},{"foldername":"accessories-common-common-refmap.json","fingerprint":3038073267,"invalidFingerprint":false},{"foldername":"accessories-common.mixins.json","fingerprint":449082642,"invalidFingerprint":false},{"foldername":"accessories-forge.mixins.json","fingerprint":436225717,"invalidFingerprint":false},{"foldername":"accessories.accesswidener","fingerprint":1192290671,"invalidFingerprint":false},{"foldername":"architectury_inject_accessories_common_7e6e125f19a1421091b1c848fd491425_7a9ea86af8844edd044e972b57ef807d7deb4fcb996c193cbc7e6e17d5b5867faccessoriescommon110beta531211devjar","fingerprint":3374659311,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2343358420,"invalidFingerprint":false},{"foldername":"data","fingerprint":4116913964,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2497594228,"invalidFingerprint":false},{"foldername":"io","fingerprint":64018920,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1114446186,"invalidFingerprint":false},{"foldername":"schemas","fingerprint":3011214421,"invalidFingerprint":false}],"packageFingerprint":2661209689,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":938917,"fileNameOnDisk":"accessories-neoforge-1.1.0-beta.53+1.21.1.jar","hashes":[{"type":1,"value":"77d75c2e13cfdf56a45cdd29806c1c97c3d250fc"},{"type":2,"value":"f826cbb52d4d05e069eecda4cff65e30"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4c90fa85-9017-46f4-9af1-7ba306c7674d","modSource":0,"addonID":940057,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,406,407],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"TerraBlender (NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","authors":[{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/terrablender-neoforge","issuesURL":"https://github.com/Glitchfiend/TerraBlender/","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/907/934/256/256/638359485944942119.png","tags":[],"installedFile":{"id":6054947,"fileName":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","fileDate":"2025-01-05T04:27:14.547Z","fileLength":120364,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6054/947/TerraBlender-neoforge-1.21.1-4.1.0.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1678289793,"invalidFingerprint":false},{"foldername":"terrablender","fingerprint":509644644,"invalidFingerprint":false},{"foldername":"data","fingerprint":489731127,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3556098464,"invalidFingerprint":false},{"foldername":"terrablender_neoforge.mixins.json","fingerprint":1482893982,"invalidFingerprint":false},{"foldername":"tb_icon.png","fingerprint":479935004,"invalidFingerprint":false},{"foldername":"tb_logo.png","fingerprint":2564841619,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":313451693,"invalidFingerprint":false},{"foldername":"terrablender.mixins.json","fingerprint":1091151451,"invalidFingerprint":false},{"foldername":"terrablender.accesswidener","fingerprint":290806959,"invalidFingerprint":false}],"packageFingerprint":4290330137,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":940057,"fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","hashes":[{"type":1,"value":"2016eed89eac0eb0510d2190c3b0b80bf4346191"},{"type":2,"value":"9510cef4ca24d7f6bc3144dbf6693f7d"}]},"dateInstalled":"2026-05-07T22:47:39.9516739Z","dateUpdated":"2026-05-07T22:47:39.9532355Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\TerraBlender-neoforge-1.21.1-4.1.0.8.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6054947,"fileName":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","fileDate":"2025-01-05T04:27:14.547Z","fileLength":120364,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6054/947/TerraBlender-neoforge-1.21.1-4.1.0.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1678289793,"invalidFingerprint":false},{"foldername":"terrablender","fingerprint":509644644,"invalidFingerprint":false},{"foldername":"data","fingerprint":489731127,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3556098464,"invalidFingerprint":false},{"foldername":"terrablender_neoforge.mixins.json","fingerprint":1482893982,"invalidFingerprint":false},{"foldername":"tb_icon.png","fingerprint":479935004,"invalidFingerprint":false},{"foldername":"tb_logo.png","fingerprint":2564841619,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":313451693,"invalidFingerprint":false},{"foldername":"terrablender.mixins.json","fingerprint":1091151451,"invalidFingerprint":false},{"foldername":"terrablender.accesswidener","fingerprint":290806959,"invalidFingerprint":false}],"packageFingerprint":4290330137,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":940057,"fileNameOnDisk":"TerraBlender-neoforge-1.21.1-4.1.0.8.jar","hashes":[{"type":1,"value":"2016eed89eac0eb0510d2190c3b0b80bf4346191"},{"type":2,"value":"9510cef4ca24d7f6bc3144dbf6693f7d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f8d47c89-6500-4139-a542-ffa902d8020c","modSource":0,"addonID":1104882,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"TxniLib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/txnilib","issuesURL":"https://github.com/txnimc/TxniLib/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1170/525/256/256/638741611474710951.png","tags":[],"installedFile":{"id":6533725,"fileName":"txnilib-neoforge-1.0.24-1.21.1.jar","fileDate":"2025-05-15T21:54:10.04Z","fileLength":6276522,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6533/725/txnilib-neoforge-1.0.24-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":718857338,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3525083395,"invalidFingerprint":false},{"foldername":"mixins.txnilib.json","fingerprint":464391895,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":3329088537,"invalidFingerprint":false}],"packageFingerprint":806726534,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1104882,"fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","hashes":[{"type":1,"value":"17b1bbb96e922e683a1807a2e7bece603fdc491d"},{"type":2,"value":"69cd87744e40cc444b4176022ec6d17a"}]},"dateInstalled":"2026-05-07T21:58:14.9337143Z","dateUpdated":"2026-05-07T21:58:14.9376003Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\txnilib-neoforge-1.0.24-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6533725,"fileName":"txnilib-neoforge-1.0.24-1.21.1.jar","fileDate":"2025-05-15T21:54:10.04Z","fileLength":6276522,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6533/725/txnilib-neoforge-1.0.24-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":718857338,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3525083395,"invalidFingerprint":false},{"foldername":"mixins.txnilib.json","fingerprint":464391895,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":3329088537,"invalidFingerprint":false}],"packageFingerprint":806726534,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1104882,"fileNameOnDisk":"txnilib-neoforge-1.0.24-1.21.1.jar","hashes":[{"type":1,"value":"17b1bbb96e922e683a1807a2e7bece603fdc491d"},{"type":2,"value":"69cd87744e40cc444b4176022ec6d17a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"37fd489b-6f1a-436c-bf5b-a653c8369471","modSource":0,"addonID":904356,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast IP Ping","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","authors":[{"id":101275287,"name":"Fallen_Breath"}],"primaryAuthor":"Fallen_Breath","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-ip-ping","issuesURL":"https://github.com/Fallen-Breath/fast-ip-ping/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/867/209/256/256/638280200199358443.png","tags":[],"installedFile":{"id":7936390,"fileName":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","fileDate":"2026-04-16T18:16:33.347Z","fileLength":10413,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7936/390/fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4161778165,"invalidFingerprint":false},{"foldername":"LICENSE_fast-ip-ping","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"fastipping.mixins.json","fingerprint":3720741108,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2881503646,"invalidFingerprint":false},{"foldername":"me","fingerprint":3065581413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4257965354,"invalidFingerprint":false}],"packageFingerprint":1798055327,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":904356,"fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","hashes":[{"type":1,"value":"3e1a403f9298db23c163dbd85ab68210b4a8c688"},{"type":2,"value":"d94b835066ce722287652235370464bf"}]},"dateInstalled":"2026-05-07T21:58:51.2705312Z","dateUpdated":"2026-05-07T21:58:51.2715046Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7936390,"fileName":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","fileDate":"2026-04-16T18:16:33.347Z","fileLength":10413,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7936/390/fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4161778165,"invalidFingerprint":false},{"foldername":"LICENSE_fast-ip-ping","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"fastipping.mixins.json","fingerprint":3720741108,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2881503646,"invalidFingerprint":false},{"foldername":"me","fingerprint":3065581413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4257965354,"invalidFingerprint":false}],"packageFingerprint":1798055327,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":904356,"fileNameOnDisk":"fast-ip-ping-v1.0.11-mc1.21.1-neoforge.jar","hashes":[{"type":1,"value":"3e1a403f9298db23c163dbd85ab68210b4a8c688"},{"type":2,"value":"d94b835066ce722287652235370464bf"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"28911af6-0a0d-4217-acc4-bbabc316a5d0","modSource":0,"addonID":431203,"gameID":432,"categoryClassID":6552,"categorySection":{"id":288,"gameId":432,"name":"Shaders","packageType":3,"path":"shaderpacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"","gameCategoryId":6552},"categoryIds":[6553,6554],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"MakeUp - Ultra Fast | Shaders","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\shaderpacks","fileNameOnDisk":"MakeUp-UltraFast-9.4e.zip","authors":[{"id":101746556,"name":"XavierFST"}],"primaryAuthor":"XavierFST","primaryCategoryId":6554,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/shaders/makeup-ultra-fast-shader","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1044/516/256/256/638572074817465930.webp","tags":[],"installedFile":{"id":7980983,"fileName":"MakeUp-UltraFast-9.4e.zip","fileDate":"2026-04-25T06:04:36.98Z","fileLength":402763,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7980/983/MakeUp-UltraFast-9.4e.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"shaders","fingerprint":1717399592,"invalidFingerprint":false},{"foldername":"Credits","fingerprint":1197809470,"invalidFingerprint":false},{"foldername":"ForDevelopers.EN.md","fingerprint":1863242517,"invalidFingerprint":false},{"foldername":"helpful.txt","fingerprint":2044483143,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"ParaDesarrolladores.ES.md","fingerprint":3396595915,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":1042804598,"invalidFingerprint":false}],"packageFingerprint":4072554301,"gameVersion":["1.16.3","1.13.1","1.17.1","1.21","1.16.1","1.18.1","1.14.3","1.15","1.16","1.13","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.14.4","1.14.1","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","OptiFine","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.15.2","1.14","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.13.2","1.15.1","1.12.2","Iris","1.16.4","1.14.2","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.13.1","gameVersionName":"1.13.1","gameVersionTypeId":55023},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.14.3","gameVersionName":"1.14.3","gameVersionTypeId":64806},{"gameVersion":"1.15","gameVersionName":"1.15","gameVersionTypeId":68722},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.13","gameVersionName":"1.13","gameVersionTypeId":55023},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.14.4","gameVersionName":"1.14.4","gameVersionTypeId":64806},{"gameVersion":"1.14.1","gameVersionName":"1.14.1","gameVersionTypeId":64806},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"OptiFine","gameVersionTypeId":76871},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.15.2","gameVersionName":"1.15.2","gameVersionTypeId":68722},{"gameVersion":"1.14","gameVersionName":"1.14","gameVersionTypeId":64806},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.13.2","gameVersionName":"1.13.2","gameVersionTypeId":55023},{"gameVersion":"1.15.1","gameVersionName":"1.15.1","gameVersionTypeId":68722},{"gameVersion":"1.12.2","gameVersionName":"1.12.2","gameVersionTypeId":628},{"gameVersion":"","gameVersionName":"Iris","gameVersionTypeId":76871},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.14.2","gameVersionName":"1.14.2","gameVersionTypeId":64806},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":431203,"fileNameOnDisk":"MakeUp-UltraFast-9.4e.zip","hashes":[{"type":1,"value":"37946af829940e921d710fcf89bd444a42ce33d0"},{"type":2,"value":"49bfaa432435bd49c70d443b64b7c6da"}]},"dateInstalled":"2026-05-07T21:58:26.9487649Z","dateUpdated":"2026-05-07T21:58:26.9528807Z","status":3,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\shaderpacks\\MakeUp-UltraFast-9.4e.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8041788,"fileName":"MakeUp-UltraFast-9.5.zip","fileDate":"2026-05-05T06:17:40.013Z","fileLength":397921,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/788/MakeUp-UltraFast-9.5.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"shaders","fingerprint":1238462176,"invalidFingerprint":false},{"foldername":"Credits","fingerprint":1197809470,"invalidFingerprint":false},{"foldername":"ForDevelopers.EN.md","fingerprint":1436727958,"invalidFingerprint":false},{"foldername":"helpful.txt","fingerprint":2044483143,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"ParaDesarrolladores.ES.md","fingerprint":4158765609,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":2350326154,"invalidFingerprint":false}],"packageFingerprint":3788180019,"gameVersion":["1.16.3","1.13.1","1.17.1","1.21","1.16.1","1.18.1","1.14.3","1.15","1.16","1.13","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.14.4","1.14.1","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","OptiFine","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.15.2","1.14","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.13.2","1.15.1","1.12.2","Iris","1.16.4","1.14.2","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.13.1","gameVersionName":"1.13.1","gameVersionTypeId":55023},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.14.3","gameVersionName":"1.14.3","gameVersionTypeId":64806},{"gameVersion":"1.15","gameVersionName":"1.15","gameVersionTypeId":68722},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.13","gameVersionName":"1.13","gameVersionTypeId":55023},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.14.4","gameVersionName":"1.14.4","gameVersionTypeId":64806},{"gameVersion":"1.14.1","gameVersionName":"1.14.1","gameVersionTypeId":64806},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"OptiFine","gameVersionTypeId":76871},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.15.2","gameVersionName":"1.15.2","gameVersionTypeId":68722},{"gameVersion":"1.14","gameVersionName":"1.14","gameVersionTypeId":64806},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.13.2","gameVersionName":"1.13.2","gameVersionTypeId":55023},{"gameVersion":"1.15.1","gameVersionName":"1.15.1","gameVersionTypeId":68722},{"gameVersion":"1.12.2","gameVersionName":"1.12.2","gameVersionTypeId":628},{"gameVersion":"","gameVersionName":"Iris","gameVersionTypeId":76871},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.14.2","gameVersionName":"1.14.2","gameVersionTypeId":64806},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":431203,"fileNameOnDisk":"MakeUp-UltraFast-9.5.zip","hashes":[{"type":1,"value":"fb2400acf7260393193e7f95d6a33d55351bd949"},{"type":2,"value":"b953a17db4bad70e6526ecab31d1ebf0"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e8375786-921b-455a-a07a-162f813fe606","modSource":0,"addonID":1216624,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[415,421,6484,412,413],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create: Dragons Plus","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","authors":[{"id":103651564,"name":"DragonsPlus"},{"id":102642294,"name":"RaymondBlaze"}],"primaryAuthor":"DragonsPlus","primaryCategoryId":6484,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create-dragons-plus","issuesURL":"https://github.com/DragonsPlusMinecraft/CreateDragonsPlus/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1195/420/256/256/638771027943462603.png","tags":[],"installedFile":{"id":7970093,"fileName":"CreateDragonsPlus-1.10.0b.jar","fileDate":"2026-04-23T02:10:36.103Z","fileLength":756460,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/93/CreateDragonsPlus-1.10.0b.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":285889198,"invalidFingerprint":false},{"foldername":"plus","fingerprint":2088382533,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2978998256,"invalidFingerprint":false},{"foldername":"data","fingerprint":1124534152,"invalidFingerprint":false},{"foldername":"create_dragons_plus.mixins.json","fingerprint":3053512535,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":350386812,"invalidFingerprint":false},{"foldername":"LICENSING.txt","fingerprint":748253416,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false},{"foldername":"LICENSE-CREATE.txt","fingerprint":1927476733,"invalidFingerprint":false},{"foldername":"create_dragons_plus.simulated.mixins.json","fingerprint":3711695609,"invalidFingerprint":false}],"packageFingerprint":2901045699,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1216624,"fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","hashes":[{"type":1,"value":"e50ae4f50173b12232b8dbd6b85568b4b657c0cf"},{"type":2,"value":"0417f6dc9cf5f4d5fdadc334df8ef289"}]},"dateInstalled":"2026-05-07T22:48:47.2716613Z","dateUpdated":"2026-05-07T22:48:47.2731111Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\CreateDragonsPlus-1.10.0b.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7970093,"fileName":"CreateDragonsPlus-1.10.0b.jar","fileDate":"2026-04-23T02:10:36.103Z","fileLength":756460,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/93/CreateDragonsPlus-1.10.0b.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":328085,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":285889198,"invalidFingerprint":false},{"foldername":"plus","fingerprint":2088382533,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2978998256,"invalidFingerprint":false},{"foldername":"data","fingerprint":1124534152,"invalidFingerprint":false},{"foldername":"create_dragons_plus.mixins.json","fingerprint":3053512535,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":350386812,"invalidFingerprint":false},{"foldername":"LICENSING.txt","fingerprint":748253416,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false},{"foldername":"LICENSE-CREATE.txt","fingerprint":1927476733,"invalidFingerprint":false},{"foldername":"create_dragons_plus.simulated.mixins.json","fingerprint":3711695609,"invalidFingerprint":false}],"packageFingerprint":2901045699,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1216624,"fileNameOnDisk":"CreateDragonsPlus-1.10.0b.jar","hashes":[{"type":1,"value":"e50ae4f50173b12232b8dbd6b85568b4b657c0cf"},{"type":2,"value":"0417f6dc9cf5f4d5fdadc334df8ef289"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4a3a1a13-929b-463a-8927-aa9b8eff74a2","modSource":0,"addonID":958881,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,422,5191,406,423],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Time On Display","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":104539068,"name":"jason13official"}],"primaryAuthor":"Lupin","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/time-on-display","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1043/640/256/256/638570980199473653.webp","tags":[],"installedFile":{"id":5609781,"fileName":"time_on_display-merged-1.21-2.0.0.jar","fileDate":"2024-08-09T00:26:27.71Z","fileLength":86367,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5609/781/time_on_display-merged-1.21-2.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3399074719,"invalidFingerprint":false},{"foldername":"common","fingerprint":2867161478,"invalidFingerprint":false},{"foldername":"common-time_on_display.mixins.json","fingerprint":4191055761,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":819714272,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.fabric.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.refmap.json","fingerprint":801273145,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":798270154,"invalidFingerprint":false},{"foldername":"forge","fingerprint":4078146579,"invalidFingerprint":false},{"foldername":"forge-time_on_display.forge.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"forge-time_on_display.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3493022719,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":3436262722,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.mixins.json","fingerprint":1929102713,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.neoforge.mixins.json","fingerprint":4008966462,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3583625351,"invalidFingerprint":false}],"packageFingerprint":407219464,"gameVersion":["Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":958881,"fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","hashes":[{"type":1,"value":"8d77892c5a990533366119f03be9b8cf15c7febe"},{"type":2,"value":"eeec198fb868f1568472a32342cb4a86"}]},"dateInstalled":"2026-05-07T21:58:07.2287546Z","dateUpdated":"2026-05-07T21:58:07.2299917Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\time_on_display-merged-1.21-2.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5609781,"fileName":"time_on_display-merged-1.21-2.0.0.jar","fileDate":"2024-08-09T00:26:27.71Z","fileLength":86367,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5609/781/time_on_display-merged-1.21-2.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968432,"type":3}],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":3399074719,"invalidFingerprint":false},{"foldername":"common","fingerprint":2867161478,"invalidFingerprint":false},{"foldername":"common-time_on_display.mixins.json","fingerprint":4191055761,"invalidFingerprint":false},{"foldername":"fabric","fingerprint":819714272,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.fabric.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.mixins.json","fingerprint":2807255377,"invalidFingerprint":false},{"foldername":"fabric-time_on_display.refmap.json","fingerprint":801273145,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":798270154,"invalidFingerprint":false},{"foldername":"forge","fingerprint":4078146579,"invalidFingerprint":false},{"foldername":"forge-time_on_display.forge.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"forge-time_on_display.mixins.json","fingerprint":1555934667,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3493022719,"invalidFingerprint":false},{"foldername":"neoforge","fingerprint":3436262722,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.mixins.json","fingerprint":1929102713,"invalidFingerprint":false},{"foldername":"neoforge-time_on_display.neoforge.mixins.json","fingerprint":4008966462,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3583625351,"invalidFingerprint":false}],"packageFingerprint":407219464,"gameVersion":["Fabric","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":958881,"fileNameOnDisk":"time_on_display-merged-1.21-2.0.0.jar","hashes":[{"type":1,"value":"8d77892c5a990533366119f03be9b8cf15c7febe"},{"type":2,"value":"eeec198fb868f1568472a32342cb4a86"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f657c0cd-babf-4ef8-946d-1af7b6e46542","modSource":0,"addonID":1191845,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,6814,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Redirected","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/redirected","issuesURL":"https://github.com/txnimc/Redirected/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1169/700/256/256/638740760495846032.png","tags":[],"installedFile":{"id":6148845,"fileName":"redirected-neoforge-1.0.0-1.21.1.jar","fileDate":"2025-02-02T07:04:31.317Z","fileLength":217587,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6148/845/redirected-neoforge-1.0.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1104882,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":374013366,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3903574420,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.20.1.json","fingerprint":3497248790,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.21.1.json","fingerprint":2345491289,"invalidFingerprint":false},{"foldername":"mixins.redirected_forge_1.20.1.json","fingerprint":2820300077,"invalidFingerprint":false},{"foldername":"mixins.redirected_neoforge_1.21.1.json","fingerprint":3426188056,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":180397325,"invalidFingerprint":false}],"packageFingerprint":1977061386,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1191845,"fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","hashes":[{"type":1,"value":"2704eeefedf52edc30d68c84e2ee0ccf4eea6da0"},{"type":2,"value":"8cdabfc021f961363b24f1abe57a4fb2"}]},"dateInstalled":"2026-05-07T21:58:48.945266Z","dateUpdated":"2026-05-07T21:58:48.9465221Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\redirected-neoforge-1.0.0-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6148845,"fileName":"redirected-neoforge-1.0.0-1.21.1.jar","fileDate":"2025-02-02T07:04:31.317Z","fileLength":217587,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6148/845/redirected-neoforge-1.0.0-1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1104882,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":374013366,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3903574420,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.20.1.json","fingerprint":3497248790,"invalidFingerprint":false},{"foldername":"mixins.redirected_fabric_1.21.1.json","fingerprint":2345491289,"invalidFingerprint":false},{"foldername":"mixins.redirected_forge_1.20.1.json","fingerprint":2820300077,"invalidFingerprint":false},{"foldername":"mixins.redirected_neoforge_1.21.1.json","fingerprint":3426188056,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":180397325,"invalidFingerprint":false}],"packageFingerprint":1977061386,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1191845,"fileNameOnDisk":"redirected-neoforge-1.0.0-1.21.1.jar","hashes":[{"type":1,"value":"2704eeefedf52edc30d68c84e2ee0ccf4eea6da0"},{"type":2,"value":"8cdabfc021f961363b24f1abe57a4fb2"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3cfb7ab6-c5be-4d7c-a26b-85f00e98bd16","modSource":0,"addonID":944149,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,422,406,426,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"StartInv | Seconds of Immortality!","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/startinv","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/920/239/256/256/638383488361008302.png","tags":[],"installedFile":{"id":5499027,"fileName":"neo_startinv-1.0.0-1.21.jar","fileDate":"2024-07-03T17:39:19.627Z","fileLength":9275,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5499/27/neo_startinv-1.0.0-1.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1714468772,"invalidFingerprint":false},{"foldername":"com","fingerprint":1190132239,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":682857377,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3880423854,"invalidFingerprint":false},{"foldername":"mixins.startinv.json","fingerprint":228722849,"invalidFingerprint":false}],"packageFingerprint":982140947,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":944149,"fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","hashes":[{"type":1,"value":"405274c56f428c5e3c8e5e552626c011696b55ac"},{"type":2,"value":"fe345a0e0a9e25b6395e16df5d0b9fac"}]},"dateInstalled":"2026-05-07T21:58:17.1197581Z","dateUpdated":"2026-05-07T21:58:17.1208073Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\neo_startinv-1.0.0-1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5499027,"fileName":"neo_startinv-1.0.0-1.21.jar","fileDate":"2024-07-03T17:39:19.627Z","fileLength":9275,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5499/27/neo_startinv-1.0.0-1.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1714468772,"invalidFingerprint":false},{"foldername":"com","fingerprint":1190132239,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":682857377,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3880423854,"invalidFingerprint":false},{"foldername":"mixins.startinv.json","fingerprint":228722849,"invalidFingerprint":false}],"packageFingerprint":982140947,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":944149,"fileNameOnDisk":"neo_startinv-1.0.0-1.21.jar","hashes":[{"type":1,"value":"405274c56f428c5e3c8e5e552626c011696b55ac"},{"type":2,"value":"fe345a0e0a9e25b6395e16df5d0b9fac"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"27d67f5d-4382-4c34-8423-7d728bbe0011","modSource":0,"addonID":60089,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Mouse Tweaks","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","authors":[{"id":7495712,"name":"YaLTeR"}],"primaryAuthor":"YaLTeR","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks","issuesURL":"https://github.com/YaLTeR/MouseTweaks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/467/691/256/256/637749969243449870.png","tags":[],"installedFile":{"id":5637846,"fileName":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","fileDate":"2024-08-17T15:55:16.403Z","fileLength":73938,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5637/846/MouseTweaks-neoforge-mc1.21-2.26.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1247581823,"invalidFingerprint":false},{"foldername":"yalter","fingerprint":2881444305,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2140027510,"invalidFingerprint":false},{"foldername":"mousetweaks-fabric.mixins.json","fingerprint":3954768689,"invalidFingerprint":false},{"foldername":"mousetweaks.mixins.json","fingerprint":1642826513,"invalidFingerprint":false},{"foldername":"mousetweaks_logo.png","fingerprint":1781016577,"invalidFingerprint":false}],"packageFingerprint":845432825,"gameVersion":["1.21","Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60089,"fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","hashes":[{"type":1,"value":"6dae57f4f50f7808d2ed9a18f6cd1c0d4640c6bc"},{"type":2,"value":"4ab6e808a59fdebecfbc92438b85b470"}]},"dateInstalled":"2026-05-07T21:58:01.3085301Z","dateUpdated":"2026-05-07T21:58:01.309584Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\MouseTweaks-neoforge-mc1.21-2.26.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5637846,"fileName":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","fileDate":"2024-08-17T15:55:16.403Z","fileLength":73938,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5637/846/MouseTweaks-neoforge-mc1.21-2.26.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1247581823,"invalidFingerprint":false},{"foldername":"yalter","fingerprint":2881444305,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2140027510,"invalidFingerprint":false},{"foldername":"mousetweaks-fabric.mixins.json","fingerprint":3954768689,"invalidFingerprint":false},{"foldername":"mousetweaks.mixins.json","fingerprint":1642826513,"invalidFingerprint":false},{"foldername":"mousetweaks_logo.png","fingerprint":1781016577,"invalidFingerprint":false}],"packageFingerprint":845432825,"gameVersion":["1.21","Client","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60089,"fileNameOnDisk":"MouseTweaks-neoforge-mc1.21-2.26.1.jar","hashes":[{"type":1,"value":"6dae57f4f50f7808d2ed9a18f6cd1c0d4640c6bc"},{"type":2,"value":"4ab6e808a59fdebecfbc92438b85b470"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"5e49e31c-7ab2-4b17-97b1-25bd67b85aad","modSource":0,"addonID":1091339,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6814,6821,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AllTheLeaks (Memory Leak Fix)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","authors":[{"id":107406482,"name":"Uncandango"}],"primaryAuthor":"Uncandango","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alltheleaks","issuesURL":"https://github.com/pietro-lopes/AllTheLeaks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1068/365/256/256/638602852129913496.png","tags":[],"installedFile":{"id":7955700,"fileName":"alltheleaks-1.1.8+1.21.1-neoforge.jar","fileDate":"2026-04-20T12:41:05.377Z","fileLength":536828,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7955/700/alltheleaks-1.1.8%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2795963896,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1979001933,"invalidFingerprint":false},{"foldername":"alltheleaks.mixins.json","fingerprint":1753949237,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":82175170,"invalidFingerprint":false}],"packageFingerprint":810386014,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1091339,"fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"f91b11a1cfa718b9291fbe7b80356f17a572577e"},{"type":2,"value":"f13d96d14efa73161caacc6df0aa808a"}]},"dateInstalled":"2026-05-07T21:58:38.241496Z","dateUpdated":"2026-05-07T21:58:38.242485Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alltheleaks-1.1.8+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7955700,"fileName":"alltheleaks-1.1.8+1.21.1-neoforge.jar","fileDate":"2026-04-20T12:41:05.377Z","fileLength":536828,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7955/700/alltheleaks-1.1.8%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2795963896,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1979001933,"invalidFingerprint":false},{"foldername":"alltheleaks.mixins.json","fingerprint":1753949237,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":82175170,"invalidFingerprint":false}],"packageFingerprint":810386014,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1091339,"fileNameOnDisk":"alltheleaks-1.1.8+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"f91b11a1cfa718b9291fbe7b80356f17a572577e"},{"type":2,"value":"f13d96d14efa73161caacc6df0aa808a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"36f6598d-fc4c-4505-a443-5980f2d38159","modSource":0,"addonID":499980,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Moonlight Lib","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/selene","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/402/662/256/256/637610797055895331.png","tags":[],"installedFile":{"id":8037440,"fileName":"moonlight-neoforge-1.21.1-3.0.5.jar","fileDate":"2026-05-04T11:42:02.987Z","fileLength":1573067,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8037/440/moonlight-neoforge-1.21.1-3.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3690277498,"invalidFingerprint":false},{"foldername":"net","fingerprint":2044505660,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4140233105,"invalidFingerprint":false},{"foldername":"moonlight-common.mixins.json","fingerprint":1823906894,"invalidFingerprint":false},{"foldername":"moonlight.accesswidener","fingerprint":394236303,"invalidFingerprint":false},{"foldername":"moonlight.mixins.json","fingerprint":2704494782,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2032883417,"invalidFingerprint":false},{"foldername":"data","fingerprint":534078977,"invalidFingerprint":false},{"foldername":"LICENSE_Moonlight Lib.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":816371809,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":499980,"fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","hashes":[{"type":1,"value":"c37ec1c8f2798354ff37851a5c620ca5d2564c2b"},{"type":2,"value":"5d4835b89314651bd2e3f43e8ce32e40"}]},"dateInstalled":"2026-05-07T21:58:04.8299047Z","dateUpdated":"2026-05-07T22:26:02.093541Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\moonlight-neoforge-1.21.1-3.0.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8037440,"fileName":"moonlight-neoforge-1.21.1-3.0.5.jar","fileDate":"2026-05-04T11:42:02.987Z","fileLength":1573067,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8037/440/moonlight-neoforge-1.21.1-3.0.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3690277498,"invalidFingerprint":false},{"foldername":"net","fingerprint":2044505660,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":4140233105,"invalidFingerprint":false},{"foldername":"moonlight-common.mixins.json","fingerprint":1823906894,"invalidFingerprint":false},{"foldername":"moonlight.accesswidener","fingerprint":394236303,"invalidFingerprint":false},{"foldername":"moonlight.mixins.json","fingerprint":2704494782,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2032883417,"invalidFingerprint":false},{"foldername":"data","fingerprint":534078977,"invalidFingerprint":false},{"foldername":"LICENSE_Moonlight Lib.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":816371809,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":499980,"fileNameOnDisk":"moonlight-neoforge-1.21.1-3.0.5.jar","hashes":[{"type":1,"value":"c37ec1c8f2798354ff37851a5c620ca5d2564c2b"},{"type":2,"value":"5d4835b89314651bd2e3f43e8ce32e40"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e8a3d123-87c5-4789-a7a7-2eae427e1611","modSource":0,"addonID":815548,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,409,422,406,6484],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Integrated Stronghold","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"integrated_stronghold-1.1.4+1.21.1-neoforge.jar","authors":[{"id":100087092,"name":"CraisinLord"}],"primaryAuthor":"CraisinLord","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/integrated-stronghold","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/995/790/256/256/638512173672079655.png","tags":[],"installedFile":{"id":7802495,"fileName":"integrated_stronghold-1.1.4+1.21.1-neoforge.jar","fileDate":"2026-03-24T01:09:50.54Z","fileLength":5125265,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7802/495/integrated_stronghold-1.1.4%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":548599,"type":2},{"addonId":817709,"type":3},{"addonId":404183,"type":2},{"addonId":531188,"type":2},{"addonId":551586,"type":2},{"addonId":220318,"type":2},{"addonId":412082,"type":3},{"addonId":394915,"type":2},{"addonId":401955,"type":2},{"addonId":245755,"type":2},{"addonId":243121,"type":3},{"addonId":247560,"type":2},{"addonId":398521,"type":2},{"addonId":428883,"type":2},{"addonId":413596,"type":2},{"addonId":426558,"type":2},{"addonId":390991,"type":2},{"addonId":311377,"type":2},{"addonId":250498,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2928468760,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedStronghold_common_dac55d1c3d7c43d0b24fcf81e4608720_3415319371a0be83cfe6c4f3244ac2ed779cd7573f518ebf3d404884c005522cintegrated_stronghold1141211commondevjar","fingerprint":2535358212,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2009458282,"invalidFingerprint":false},{"foldername":"com","fingerprint":1219966913,"invalidFingerprint":false},{"foldername":"data","fingerprint":1841911355,"invalidFingerprint":false},{"foldername":"integrated_stronghold-common-refmap.json","fingerprint":1105823494,"invalidFingerprint":false},{"foldername":"integrated_stronghold-common.mixins.json","fingerprint":1962089144,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3726285173,"invalidFingerprint":false}],"packageFingerprint":1736749463,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":815548,"fileNameOnDisk":"integrated_stronghold-1.1.4+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"9c425610a04f04d81ce9491e886c6df3fc4feac8"},{"type":2,"value":"27211eb209e71e310c93e35bd41a26c7"}]},"dateInstalled":"2026-05-07T23:24:08.3133395Z","dateUpdated":"2026-05-07T23:24:08.3163692Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\integrated_stronghold-1.1.4+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7802495,"fileName":"integrated_stronghold-1.1.4+1.21.1-neoforge.jar","fileDate":"2026-03-24T01:09:50.54Z","fileLength":5125265,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7802/495/integrated_stronghold-1.1.4%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":548599,"type":2},{"addonId":817709,"type":3},{"addonId":404183,"type":2},{"addonId":531188,"type":2},{"addonId":551586,"type":2},{"addonId":220318,"type":2},{"addonId":412082,"type":3},{"addonId":394915,"type":2},{"addonId":401955,"type":2},{"addonId":245755,"type":2},{"addonId":243121,"type":3},{"addonId":247560,"type":2},{"addonId":398521,"type":2},{"addonId":428883,"type":2},{"addonId":413596,"type":2},{"addonId":426558,"type":2},{"addonId":390991,"type":2},{"addonId":311377,"type":2},{"addonId":250498,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2928468760,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedStronghold_common_dac55d1c3d7c43d0b24fcf81e4608720_3415319371a0be83cfe6c4f3244ac2ed779cd7573f518ebf3d404884c005522cintegrated_stronghold1141211commondevjar","fingerprint":2535358212,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2009458282,"invalidFingerprint":false},{"foldername":"com","fingerprint":1219966913,"invalidFingerprint":false},{"foldername":"data","fingerprint":1841911355,"invalidFingerprint":false},{"foldername":"integrated_stronghold-common-refmap.json","fingerprint":1105823494,"invalidFingerprint":false},{"foldername":"integrated_stronghold-common.mixins.json","fingerprint":1962089144,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3726285173,"invalidFingerprint":false}],"packageFingerprint":1736749463,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":815548,"fileNameOnDisk":"integrated_stronghold-1.1.4+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"9c425610a04f04d81ce9491e886c6df3fc4feac8"},{"type":2,"value":"27211eb209e71e310c93e35bd41a26c7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e7e108f2-b690-4665-a557-4cb0b2746032","modSource":0,"addonID":661376,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[409,422,6484,419,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Integrated Villages","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"integrated_villages-1.3.2+1.21.1-neoforge.jar","authors":[{"id":100087092,"name":"CraisinLord"}],"primaryAuthor":"CraisinLord","primaryCategoryId":409,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/integrated-villages","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1019/715/256/256/638545406613803962.png","tags":[],"installedFile":{"id":7815319,"fileName":"integrated_villages-1.3.2+1.21.1-neoforge.jar","fileDate":"2026-03-26T05:01:58.813Z","fileLength":4595798,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7815/319/integrated_villages-1.3.2%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":591149,"type":2},{"addonId":704465,"type":2},{"addonId":398521,"type":2},{"addonId":817257,"type":2},{"addonId":839158,"type":2},{"addonId":817709,"type":3},{"addonId":886559,"type":2},{"addonId":243121,"type":2},{"addonId":332910,"type":2},{"addonId":309516,"type":2},{"addonId":832983,"type":2},{"addonId":606618,"type":2},{"addonId":245755,"type":2},{"addonId":220318,"type":2},{"addonId":659110,"type":2},{"addonId":406360,"type":2},{"addonId":412082,"type":3},{"addonId":426558,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2},{"addonId":264231,"type":2},{"addonId":835687,"type":2},{"addonId":289240,"type":2},{"addonId":523860,"type":2},{"addonId":484954,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1183238936,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedVillages_common_dac55d1c3d7c43d0b24fcf81e4608720_1e480553a4461082706929fa1c58d8bcb57a0cfbf28abd6eb7301a925f05d035integrated_villages1321211commondevjar","fingerprint":2203832070,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2193633428,"invalidFingerprint":false},{"foldername":"com","fingerprint":3804150135,"invalidFingerprint":false},{"foldername":"data","fingerprint":2805948875,"invalidFingerprint":false},{"foldername":"integrated_villages-common-refmap.json","fingerprint":2896035841,"invalidFingerprint":false},{"foldername":"integrated_villages-common.mixins.json","fingerprint":386579817,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3726285173,"invalidFingerprint":false}],"packageFingerprint":292805112,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":661376,"fileNameOnDisk":"integrated_villages-1.3.2+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"0077389fff1c943010a683d246e4b077a9636452"},{"type":2,"value":"ecacaffa6de4b13ee4a206f167a704ba"}]},"dateInstalled":"2026-05-07T23:24:27.358986Z","dateUpdated":"2026-05-07T23:24:27.3611317Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\integrated_villages-1.3.2+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7815319,"fileName":"integrated_villages-1.3.2+1.21.1-neoforge.jar","fileDate":"2026-03-26T05:01:58.813Z","fileLength":4595798,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7815/319/integrated_villages-1.3.2%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":591149,"type":2},{"addonId":704465,"type":2},{"addonId":398521,"type":2},{"addonId":817257,"type":2},{"addonId":839158,"type":2},{"addonId":817709,"type":3},{"addonId":886559,"type":2},{"addonId":243121,"type":2},{"addonId":332910,"type":2},{"addonId":309516,"type":2},{"addonId":832983,"type":2},{"addonId":606618,"type":2},{"addonId":245755,"type":2},{"addonId":220318,"type":2},{"addonId":659110,"type":2},{"addonId":406360,"type":2},{"addonId":412082,"type":3},{"addonId":426558,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2},{"addonId":264231,"type":2},{"addonId":835687,"type":2},{"addonId":289240,"type":2},{"addonId":523860,"type":2},{"addonId":484954,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1183238936,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedVillages_common_dac55d1c3d7c43d0b24fcf81e4608720_1e480553a4461082706929fa1c58d8bcb57a0cfbf28abd6eb7301a925f05d035integrated_villages1321211commondevjar","fingerprint":2203832070,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2193633428,"invalidFingerprint":false},{"foldername":"com","fingerprint":3804150135,"invalidFingerprint":false},{"foldername":"data","fingerprint":2805948875,"invalidFingerprint":false},{"foldername":"integrated_villages-common-refmap.json","fingerprint":2896035841,"invalidFingerprint":false},{"foldername":"integrated_villages-common.mixins.json","fingerprint":386579817,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3726285173,"invalidFingerprint":false}],"packageFingerprint":292805112,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":661376,"fileNameOnDisk":"integrated_villages-1.3.2+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"0077389fff1c943010a683d246e4b077a9636452"},{"type":2,"value":"ecacaffa6de4b13ee4a206f167a704ba"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3276bc00-6a53-4444-b6ff-aef2eec69f34","modSource":0,"addonID":882495,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"fix GPU memory leak[Forge/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fix-gpu-memory-leak","issuesURL":"https://github.com/someaddons/gpumemleakfix/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/841/827/256/256/638236647684351264.png","tags":[],"installedFile":{"id":5513549,"fileName":"gpumemleakfix-1.21-1.8.jar","fileDate":"2024-07-08T12:10:50.6Z","fileLength":6574,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5513/549/gpumemleakfix-1.21-1.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1891078187,"invalidFingerprint":false},{"foldername":"com","fingerprint":1771624309,"invalidFingerprint":false},{"foldername":"gpumemleakfix.mixins.json","fingerprint":510417135,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1348339019,"invalidFingerprint":false}],"packageFingerprint":1193908577,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882495,"fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","hashes":[{"type":1,"value":"1894d2f0dd0c275aea0f1a6265ebd5715569c208"},{"type":2,"value":"96a47a7cff915294a949f73a5f2a8816"}]},"dateInstalled":"2026-05-07T21:58:49.9944301Z","dateUpdated":"2026-05-07T21:58:49.9955648Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\gpumemleakfix-1.21-1.8.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5513549,"fileName":"gpumemleakfix-1.21-1.8.jar","fileDate":"2024-07-08T12:10:50.6Z","fileLength":6574,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5513/549/gpumemleakfix-1.21-1.8.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1891078187,"invalidFingerprint":false},{"foldername":"com","fingerprint":1771624309,"invalidFingerprint":false},{"foldername":"gpumemleakfix.mixins.json","fingerprint":510417135,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1348339019,"invalidFingerprint":false}],"packageFingerprint":1193908577,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882495,"fileNameOnDisk":"gpumemleakfix-1.21-1.8.jar","hashes":[{"type":1,"value":"1894d2f0dd0c275aea0f1a6265ebd5715569c208"},{"type":2,"value":"96a47a7cff915294a949f73a5f2a8816"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ed74ddac-2358-4f81-a709-de19b251b1bf","modSource":0,"addonID":558905,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,424,6814],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium/Embeddium Extras","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":6814,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/magnesium-extras","issuesURL":"https://github.com/txnimc/SodiumExtras/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1066/735/256/256/638600914286319886.png","tags":[],"installedFile":{"id":6394141,"fileName":"sodiumextras-neoforge-1.0.8-1.21.1.jar","fileDate":"2025-04-07T04:44:42.343Z","fileLength":276988,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6394/141/sodiumextras-neoforge-1.0.8-1.21.1.jar","isAlternate":false,"alternateFileId":6394143,"serverPackFileId":0,"dependencies":[{"addonId":1103431,"type":3},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3948137030,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2169881499,"invalidFingerprint":false},{"foldername":"mixins.sodiumextras.json","fingerprint":2195999977,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4133244206,"invalidFingerprint":false}],"packageFingerprint":4051323827,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":558905,"fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","hashes":[{"type":1,"value":"d678f6eb28fec11f3e99bc7f17f5e385703bc44a"},{"type":2,"value":"acbf3c92a89bcd595e7c0c668fc7309f"}]},"dateInstalled":"2026-05-07T21:58:37.5221069Z","dateUpdated":"2026-05-07T21:58:37.5231695Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodiumextras-neoforge-1.0.8-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6394141,"fileName":"sodiumextras-neoforge-1.0.8-1.21.1.jar","fileDate":"2025-04-07T04:44:42.343Z","fileLength":276988,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6394/141/sodiumextras-neoforge-1.0.8-1.21.1.jar","isAlternate":false,"alternateFileId":6394143,"serverPackFileId":0,"dependencies":[{"addonId":1103431,"type":3},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3948137030,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2169881499,"invalidFingerprint":false},{"foldername":"mixins.sodiumextras.json","fingerprint":2195999977,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4105100827,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4133244206,"invalidFingerprint":false}],"packageFingerprint":4051323827,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":558905,"fileNameOnDisk":"sodiumextras-neoforge-1.0.8-1.21.1.jar","hashes":[{"type":1,"value":"d678f6eb28fec11f3e99bc7f17f5e385703bc44a"},{"type":2,"value":"acbf3c92a89bcd595e7c0c668fc7309f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"115e2f67-b9c9-4803-9f2b-324fe53979ea","modSource":0,"addonID":556448,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[436,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Alex's Delight","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alexsdelight-1.6.jar","authors":[{"id":122139421,"name":"Baisylia"},{"id":101338784,"name":"NCP_Bails"}],"primaryAuthor":"Baisylia","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alexs-delight","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/467/198/256/256/637748653028908201.png","tags":[],"installedFile":{"id":7612806,"fileName":"alexsdelight-1.6.jar","fileDate":"2026-02-12T04:23:17.193Z","fileLength":89430,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7612/806/alexsdelight-1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":426558,"type":3},{"addonId":398521,"type":3},{"addonId":331936,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1614053159,"invalidFingerprint":false},{"foldername":"com","fingerprint":494016426,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":24391317,"invalidFingerprint":false},{"foldername":".cache","fingerprint":3793697574,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1539088391,"invalidFingerprint":false},{"foldername":"data","fingerprint":211968524,"invalidFingerprint":false}],"packageFingerprint":2106176820,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":556448,"fileNameOnDisk":"alexsdelight-1.6.jar","hashes":[{"type":1,"value":"19e8d1e255c431b706e79412be92d8448c668f4c"},{"type":2,"value":"17f05e921bee8b3cac08b8c655404734"}]},"dateInstalled":"2026-05-07T23:30:17.9657968Z","dateUpdated":"2026-05-07T23:30:17.9674147Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alexsdelight-1.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7612806,"fileName":"alexsdelight-1.6.jar","fileDate":"2026-02-12T04:23:17.193Z","fileLength":89430,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7612/806/alexsdelight-1.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":426558,"type":3},{"addonId":398521,"type":3},{"addonId":331936,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1614053159,"invalidFingerprint":false},{"foldername":"com","fingerprint":494016426,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":24391317,"invalidFingerprint":false},{"foldername":".cache","fingerprint":3793697574,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1539088391,"invalidFingerprint":false},{"foldername":"data","fingerprint":211968524,"invalidFingerprint":false}],"packageFingerprint":2106176820,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":556448,"fileNameOnDisk":"alexsdelight-1.6.jar","hashes":[{"type":1,"value":"19e8d1e255c431b706e79412be92d8448c668f4c"},{"type":2,"value":"17f05e921bee8b3cac08b8c655404734"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"df78585a-7d51-4b70-813c-7a2aa4225fbf","modSource":0,"addonID":271740,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Toast Control","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","authors":[{"id":10368195,"name":"Shadows_of_Fire"}],"primaryAuthor":"Shadows_of_Fire","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/toast-control","issuesURL":"https://github.com/Shadows-of-Fire/Toast-Control/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/105/330/256/256/636352185216944005.png","tags":[],"installedFile":{"id":6751464,"fileName":"ToastControl-1.21.1-9.0.1.jar","fileDate":"2025-07-10T07:02:27.877Z","fileLength":21079,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6751/464/ToastControl-1.21.1-9.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":283644,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":276283000,"invalidFingerprint":false},{"foldername":"dev","fingerprint":634000606,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3433595591,"invalidFingerprint":false},{"foldername":"toastcontrol.mixins.json","fingerprint":1861248534,"invalidFingerprint":false}],"packageFingerprint":3258843963,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":271740,"fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","hashes":[{"type":1,"value":"33477c2db0479c9be33d1ca3b2fa47cf6c97988c"},{"type":2,"value":"1f83b8749f48753bb50d9e22e5f6706c"}]},"dateInstalled":"2026-05-07T21:58:54.6980392Z","dateUpdated":"2026-05-07T21:58:54.6990175Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\ToastControl-1.21.1-9.0.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6751464,"fileName":"ToastControl-1.21.1-9.0.1.jar","fileDate":"2025-07-10T07:02:27.877Z","fileLength":21079,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6751/464/ToastControl-1.21.1-9.0.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":283644,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":276283000,"invalidFingerprint":false},{"foldername":"dev","fingerprint":634000606,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3433595591,"invalidFingerprint":false},{"foldername":"toastcontrol.mixins.json","fingerprint":1861248534,"invalidFingerprint":false}],"packageFingerprint":3258843963,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":271740,"fileNameOnDisk":"ToastControl-1.21.1-9.0.1.jar","hashes":[{"type":1,"value":"33477c2db0479c9be33d1ca3b2fa47cf6c97988c"},{"type":2,"value":"1f83b8749f48753bb50d9e22e5f6706c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"53e0805f-f267-4157-9344-0755b328050a","modSource":0,"addonID":361276,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,409],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Lootr (Forge & NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","authors":[{"id":10343357,"name":"Noobanidus"},{"id":101435003,"name":"embeddedt"},{"id":101090122,"name":"ZestyBlaze"}],"primaryAuthor":"Noobanidus","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lootr","issuesURL":"https://github.com/noobanidus/lootr/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1131/830/256/256/638691606432990450.png","tags":[],"installedFile":{"id":8041234,"fileName":"lootr-neoforge-1.21.1-1.11.37.120.jar","fileDate":"2026-05-05T02:13:59Z","fileLength":976023,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/234/lootr-neoforge-1.21.1-1.11.37.120.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2372064542,"invalidFingerprint":false},{"foldername":"noobanidus","fingerprint":3846940814,"invalidFingerprint":false},{"foldername":"lootr-common.mixins.json","fingerprint":827376249,"invalidFingerprint":false},{"foldername":"lootr-neoforge-digsite_workshop.mixins.json","fingerprint":1536792109,"invalidFingerprint":false},{"foldername":"lootr-neoforge.mixins.json","fingerprint":3250557091,"invalidFingerprint":false},{"foldername":".cache","fingerprint":986135317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2326843005,"invalidFingerprint":false},{"foldername":"data","fingerprint":3238902936,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":109395380,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2860865587,"invalidFingerprint":false}],"packageFingerprint":2200001215,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361276,"fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","hashes":[{"type":1,"value":"a8acaf64fb3991526bfe7456189ccde247334265"},{"type":2,"value":"c854cb36df6947d1a8bc222fec365359"}]},"dateInstalled":"2026-05-07T22:46:22.2211682Z","dateUpdated":"2026-05-07T22:46:22.2234087Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\lootr-neoforge-1.21.1-1.11.37.120.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8041234,"fileName":"lootr-neoforge-1.21.1-1.11.37.120.jar","fileDate":"2026-05-05T02:13:59Z","fileLength":976023,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8041/234/lootr-neoforge-1.21.1-1.11.37.120.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2372064542,"invalidFingerprint":false},{"foldername":"noobanidus","fingerprint":3846940814,"invalidFingerprint":false},{"foldername":"lootr-common.mixins.json","fingerprint":827376249,"invalidFingerprint":false},{"foldername":"lootr-neoforge-digsite_workshop.mixins.json","fingerprint":1536792109,"invalidFingerprint":false},{"foldername":"lootr-neoforge.mixins.json","fingerprint":3250557091,"invalidFingerprint":false},{"foldername":".cache","fingerprint":986135317,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2326843005,"invalidFingerprint":false},{"foldername":"data","fingerprint":3238902936,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":109395380,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2860865587,"invalidFingerprint":false}],"packageFingerprint":2200001215,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361276,"fileNameOnDisk":"lootr-neoforge-1.21.1-1.11.37.120.jar","hashes":[{"type":1,"value":"a8acaf64fb3991526bfe7456189ccde247334265"},{"type":2,"value":"c854cb36df6947d1a8bc222fec365359"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ccf23053-f5f0-4b6f-8f66-b3cde6446044","modSource":0,"addonID":886331,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[4465,5193,400,405],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Default Images","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-loading-images","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1496/124/256/256/638971892831575978.webp","tags":[],"installedFile":{"id":7228406,"fileName":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","fileDate":"2025-11-16T12:01:50.41Z","fileLength":50544037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/406/loadingbackgrounds_default_images-1.21.X-4.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2176806187,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2207580623,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1436098848,"invalidFingerprint":false}],"packageFingerprint":3695994406,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":886331,"fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","hashes":[{"type":1,"value":"0bacab4fba302803918bacc6e31540e461919a23"},{"type":2,"value":"a9f51da498a93f84f67abb3221704d9c"}]},"dateInstalled":"2026-05-07T21:58:33.5139953Z","dateUpdated":"2026-05-07T21:58:33.5253651Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_default_images-1.21.X-4.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228406,"fileName":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","fileDate":"2025-11-16T12:01:50.41Z","fileLength":50544037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/406/loadingbackgrounds_default_images-1.21.X-4.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2176806187,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":2207580623,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1436098848,"invalidFingerprint":false}],"packageFingerprint":3695994406,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":886331,"fileNameOnDisk":"loadingbackgrounds_default_images-1.21.X-4.0.0.zip","hashes":[{"type":1,"value":"0bacab4fba302803918bacc6e31540e461919a23"},{"type":2,"value":"a9f51da498a93f84f67abb3221704d9c"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f8e28e63-e630-4b1b-b96a-c7a93f05e738","modSource":0,"addonID":955399,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"GlitchCore","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","authors":[{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/glitchcore","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/925/423/256/256/638393995566142829.png","tags":[],"installedFile":{"id":5660740,"fileName":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","fileDate":"2024-08-25T01:50:50.273Z","fileLength":90918,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5660/740/GlitchCore-neoforge-1.21.1-2.1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1811036338,"invalidFingerprint":false},{"foldername":"glitchcore","fingerprint":2063544425,"invalidFingerprint":false},{"foldername":"glitchcore_logo.png","fingerprint":2312769639,"invalidFingerprint":false},{"foldername":"glitchcore.mixins.json","fingerprint":2847458275,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3711728899,"invalidFingerprint":false},{"foldername":"glitchcore.neoforge.mixins.json","fingerprint":1853363929,"invalidFingerprint":false},{"foldername":"glitchcore_icon_small.png","fingerprint":2023160491,"invalidFingerprint":false},{"foldername":"glitchcore.accesswidener","fingerprint":4145101881,"invalidFingerprint":false}],"packageFingerprint":152279774,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":955399,"fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","hashes":[{"type":1,"value":"8bce11b0b5233146051bb7b7a227247e03fe88b2"},{"type":2,"value":"ec491ad844e966641c5a124913c3c1e7"}]},"dateInstalled":"2026-05-07T22:47:40.2875644Z","dateUpdated":"2026-05-07T22:47:40.2890708Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\GlitchCore-neoforge-1.21.1-2.1.0.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5660740,"fileName":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","fileDate":"2024-08-25T01:50:50.273Z","fileLength":90918,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5660/740/GlitchCore-neoforge-1.21.1-2.1.0.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1811036338,"invalidFingerprint":false},{"foldername":"glitchcore","fingerprint":2063544425,"invalidFingerprint":false},{"foldername":"glitchcore_logo.png","fingerprint":2312769639,"invalidFingerprint":false},{"foldername":"glitchcore.mixins.json","fingerprint":2847458275,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3711728899,"invalidFingerprint":false},{"foldername":"glitchcore.neoforge.mixins.json","fingerprint":1853363929,"invalidFingerprint":false},{"foldername":"glitchcore_icon_small.png","fingerprint":2023160491,"invalidFingerprint":false},{"foldername":"glitchcore.accesswidener","fingerprint":4145101881,"invalidFingerprint":false}],"packageFingerprint":152279774,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":955399,"fileNameOnDisk":"GlitchCore-neoforge-1.21.1-2.1.0.0.jar","hashes":[{"type":1,"value":"8bce11b0b5233146051bb7b7a227247e03fe88b2"},{"type":2,"value":"ec491ad844e966641c5a124913c3c1e7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"1eb7f816-7f57-4978-8e40-a7ae124751c2","modSource":0,"addonID":60028,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[436,422,434,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Aquaculture 2","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","authors":[{"id":458081,"name":"Shadow"},{"id":8631507,"name":"Girafi"}],"primaryAuthor":"Shadow","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/aquaculture","issuesURL":"https://github.com/TeamMetallurgy/Aquaculture/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/230/320/256/256/637059909042064016.png","tags":[],"installedFile":{"id":7901588,"fileName":"Aquaculture-1.21.1-2.7.21.jar","fileDate":"2026-04-09T21:20:09.987Z","fileLength":605949,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7901/588/Aquaculture-1.21.1-2.7.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3120780631,"invalidFingerprint":false},{"foldername":"com","fingerprint":3488997465,"invalidFingerprint":false},{"foldername":"assets","fingerprint":489220449,"invalidFingerprint":false},{"foldername":"data","fingerprint":3757468306,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2564931986,"invalidFingerprint":false}],"packageFingerprint":4284657502,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60028,"fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","hashes":[{"type":1,"value":"93c2043c6a5cfbfbfba93321d044bc61d8a6547b"},{"type":2,"value":"53d4d0d0f62c555638c27206087c2476"}]},"dateInstalled":"2026-05-07T22:47:52.715588Z","dateUpdated":"2026-05-07T22:47:52.717004Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Aquaculture-1.21.1-2.7.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7901588,"fileName":"Aquaculture-1.21.1-2.7.21.jar","fileDate":"2026-04-09T21:20:09.987Z","fileLength":605949,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7901/588/Aquaculture-1.21.1-2.7.21.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3120780631,"invalidFingerprint":false},{"foldername":"com","fingerprint":3488997465,"invalidFingerprint":false},{"foldername":"assets","fingerprint":489220449,"invalidFingerprint":false},{"foldername":"data","fingerprint":3757468306,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2564931986,"invalidFingerprint":false}],"packageFingerprint":4284657502,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":60028,"fileNameOnDisk":"Aquaculture-1.21.1-2.7.21.jar","hashes":[{"type":1,"value":"93c2043c6a5cfbfbfba93321d044bc61d8a6547b"},{"type":2,"value":"53d4d0d0f62c555638c27206087c2476"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"abd0256f-6980-4564-a5c0-cee97f90d712","modSource":0,"addonID":419699,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Architectury API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"architectury-13.0.8-neoforge.jar","authors":[{"id":32851078,"name":"shedaniel"},{"id":19463137,"name":"MaxNeedsSnacks"},{"id":57500433,"name":"Juicebus"}],"primaryAuthor":"shedaniel","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/architectury-api","issuesURL":"https://github.com/architectury/architectury/issues","wikiURL":"https://docs.architectury.dev/plugin:get_started","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/313/420/256/256/637408811378175814.png","tags":[],"installedFile":{"id":5786327,"fileName":"architectury-13.0.8-neoforge.jar","fileDate":"2024-10-05T19:24:07.34Z","fileLength":584004,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5786/327/architectury-13.0.8-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2830765833,"invalidFingerprint":false},{"foldername":"architectury-common-refmap.json","fingerprint":2053242975,"invalidFingerprint":false},{"foldername":"architectury-common.mixins.json","fingerprint":3973693202,"invalidFingerprint":false},{"foldername":"architectury.mixins.json","fingerprint":1646327958,"invalidFingerprint":false},{"foldername":"architectury_inject_architectury_common_90b77f7e91db42de8d10e5cc821610bb_5bd1878b82892d39a5055ed8d0e40a74688282c910e605d53cbddbcf6ff84c53architectury1308devjar","fingerprint":2353119672,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3788613633,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":337711864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1096803035,"invalidFingerprint":false}],"packageFingerprint":418634412,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":419699,"fileNameOnDisk":"architectury-13.0.8-neoforge.jar","hashes":[{"type":1,"value":"6ca11d3cc136bf69bb8f4d56982481eb85b5100b"},{"type":2,"value":"7a45a948b525c031ca85d221dfdbed85"}]},"dateInstalled":"2026-05-07T21:58:45.0710902Z","dateUpdated":"2026-05-07T21:58:45.0721519Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\architectury-13.0.8-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5786327,"fileName":"architectury-13.0.8-neoforge.jar","fileDate":"2024-10-05T19:24:07.34Z","fileLength":584004,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5786/327/architectury-13.0.8-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2830765833,"invalidFingerprint":false},{"foldername":"architectury-common-refmap.json","fingerprint":2053242975,"invalidFingerprint":false},{"foldername":"architectury-common.mixins.json","fingerprint":3973693202,"invalidFingerprint":false},{"foldername":"architectury.mixins.json","fingerprint":1646327958,"invalidFingerprint":false},{"foldername":"architectury_inject_architectury_common_90b77f7e91db42de8d10e5cc821610bb_5bd1878b82892d39a5055ed8d0e40a74688282c910e605d53cbddbcf6ff84c53architectury1308devjar","fingerprint":2353119672,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3788613633,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":337711864,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1096803035,"invalidFingerprint":false}],"packageFingerprint":418634412,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":419699,"fileNameOnDisk":"architectury-13.0.8-neoforge.jar","hashes":[{"type":1,"value":"6ca11d3cc136bf69bb8f4d56982481eb85b5100b"},{"type":2,"value":"7a45a948b525c031ca85d221dfdbed85"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"911fe5ef-8359-41ec-b3eb-52f730db1639","modSource":0,"addonID":326652,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cupboard","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cupboard-1.21-3.5.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":5191,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cupboard","issuesURL":"https://github.com/someaddons/cupboard/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/852/567/256/256/638255508280634753.png","tags":[],"installedFile":{"id":7746488,"fileName":"cupboard-1.21-3.5.jar","fileDate":"2026-03-12T10:30:19.31Z","fileLength":26659,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7746/488/cupboard-1.21-3.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1134223964,"invalidFingerprint":false},{"foldername":"com","fingerprint":2916834756,"invalidFingerprint":false},{"foldername":"cupboard.mixins.json","fingerprint":768032476,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3152166936,"invalidFingerprint":false}],"packageFingerprint":3036562125,"gameVersion":["1.21","Client","1.21.5","1.21.4","1.21.1","1.21.3","NeoForge","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":326652,"fileNameOnDisk":"cupboard-1.21-3.5.jar","hashes":[{"type":1,"value":"e5f55c8f9d172048fe6f8b919cda1dbe3cbfbc70"},{"type":2,"value":"48430a7d993b39ac3559f4773acc6678"}]},"dateInstalled":"2026-05-07T21:58:25.3022977Z","dateUpdated":"2026-05-07T21:58:25.303541Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cupboard-1.21-3.5.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7746488,"fileName":"cupboard-1.21-3.5.jar","fileDate":"2026-03-12T10:30:19.31Z","fileLength":26659,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7746/488/cupboard-1.21-3.5.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1134223964,"invalidFingerprint":false},{"foldername":"com","fingerprint":2916834756,"invalidFingerprint":false},{"foldername":"cupboard.mixins.json","fingerprint":768032476,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3152166936,"invalidFingerprint":false}],"packageFingerprint":3036562125,"gameVersion":["1.21","Client","1.21.5","1.21.4","1.21.1","1.21.3","NeoForge","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":326652,"fileNameOnDisk":"cupboard-1.21-3.5.jar","hashes":[{"type":1,"value":"e5f55c8f9d172048fe6f8b919cda1dbe3cbfbc70"},{"type":2,"value":"48430a7d993b39ac3559f4773acc6678"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"0e34dde9-e582-4bcc-a5d9-2d60c776ee30","modSource":0,"addonID":412082,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,4558,424,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Supplementaries","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","authors":[{"id":101295357,"name":"MehVahdJukaar"}],"primaryAuthor":"MehVahdJukaar","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/supplementaries","issuesURL":"https://github.com/MehVahdJukaar/Supplementaries/issues","wikiURL":"https://github.com/MehVahdJukaar/Supplementaries/wiki/Customization","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/358/166/256/256/637518566737953306_animated.gif","tags":[],"installedFile":{"id":8051628,"fileName":"supplementaries-neoforge-1.21.1-3.6.4.jar","fileDate":"2026-05-07T07:08:01.613Z","fileLength":13282562,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8051/628/supplementaries-neoforge-1.21.1-3.6.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1771785152,"invalidFingerprint":false},{"foldername":"net","fingerprint":3364092196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1807538907,"invalidFingerprint":false},{"foldername":"supplementaries-common.mixins.json","fingerprint":2347168856,"invalidFingerprint":false},{"foldername":"supplementaries.accesswidener","fingerprint":644601365,"invalidFingerprint":false},{"foldername":"supplementaries.mixins.json","fingerprint":1992579400,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1204094186,"invalidFingerprint":false},{"foldername":"data","fingerprint":3549520724,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":566625331,"invalidFingerprint":false},{"foldername":"LICENSE_Supplementaries.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":3238514946,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":412082,"fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","hashes":[{"type":1,"value":"54ac028b2a73cca26c021cdccb7328cf0037ff62"},{"type":2,"value":"c445a6b793e996e80305ff882ebed844"}]},"dateInstalled":"2026-05-07T22:45:40.8993192Z","dateUpdated":"2026-05-07T22:45:40.9037583Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\supplementaries-neoforge-1.21.1-3.6.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8051628,"fileName":"supplementaries-neoforge-1.21.1-3.6.4.jar","fileDate":"2026-05-07T07:08:01.613Z","fileLength":13282562,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8051/628/supplementaries-neoforge-1.21.1-3.6.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":499980,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1771785152,"invalidFingerprint":false},{"foldername":"net","fingerprint":3364092196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1807538907,"invalidFingerprint":false},{"foldername":"supplementaries-common.mixins.json","fingerprint":2347168856,"invalidFingerprint":false},{"foldername":"supplementaries.accesswidener","fingerprint":644601365,"invalidFingerprint":false},{"foldername":"supplementaries.mixins.json","fingerprint":1992579400,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1204094186,"invalidFingerprint":false},{"foldername":"data","fingerprint":3549520724,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":566625331,"invalidFingerprint":false},{"foldername":"LICENSE_Supplementaries.md","fingerprint":2838826641,"invalidFingerprint":false}],"packageFingerprint":3238514946,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":412082,"fileNameOnDisk":"supplementaries-neoforge-1.21.1-3.6.4.jar","hashes":[{"type":1,"value":"54ac028b2a73cca26c021cdccb7328cf0037ff62"},{"type":2,"value":"c445a6b793e996e80305ff882ebed844"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"21d46178-505e-40cd-a628-a71335dbdfc2","modSource":0,"addonID":238086,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,421,5314,406,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"KubeJS","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","authors":[{"id":11776558,"name":"LatvianModder"}],"primaryAuthor":"LatvianModder","primaryCategoryId":5314,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/kubejs","issuesURL":"https://kubejs.com/support?source=kubejs","wikiURL":"https://kubejs.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1053/159/256/256/638583716122159056.png","tags":[],"installedFile":{"id":8012065,"fileName":"kubejs-neoforge-2101.7.2-build.363.jar","fileDate":"2026-04-29T22:00:01.697Z","fileLength":2270442,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8012/65/kubejs-neoforge-2101.7.2-build.363.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":416294,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4225922610,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1033092382,"invalidFingerprint":false},{"foldername":"kubejs.classfilter.txt","fingerprint":769867264,"invalidFingerprint":false},{"foldername":"kubejs.mixins.json","fingerprint":4290470743,"invalidFingerprint":false},{"foldername":"kubejs.plugins.txt","fingerprint":1479902872,"invalidFingerprint":false},{"foldername":"kubejs_logo.png","fingerprint":2417335303,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3450518192,"invalidFingerprint":false},{"foldername":"data","fingerprint":1232684477,"invalidFingerprint":false}],"packageFingerprint":3609311698,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":238086,"fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","hashes":[{"type":1,"value":"d4e88254e8c26687d4c6aeb4dfa9c2ad70f260a2"},{"type":2,"value":"b8d47302e577f0ca33d08f46c3e6625b"}]},"dateInstalled":"2026-05-07T22:46:40.7653178Z","dateUpdated":"2026-05-07T22:46:40.7672689Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\kubejs-neoforge-2101.7.2-build.363.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8012065,"fileName":"kubejs-neoforge-2101.7.2-build.363.jar","fileDate":"2026-04-29T22:00:01.697Z","fileLength":2270442,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8012/65/kubejs-neoforge-2101.7.2-build.363.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":416294,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4225922610,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1033092382,"invalidFingerprint":false},{"foldername":"kubejs.classfilter.txt","fingerprint":769867264,"invalidFingerprint":false},{"foldername":"kubejs.mixins.json","fingerprint":4290470743,"invalidFingerprint":false},{"foldername":"kubejs.plugins.txt","fingerprint":1479902872,"invalidFingerprint":false},{"foldername":"kubejs_logo.png","fingerprint":2417335303,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3450518192,"invalidFingerprint":false},{"foldername":"data","fingerprint":1232684477,"invalidFingerprint":false}],"packageFingerprint":3609311698,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":238086,"fileNameOnDisk":"kubejs-neoforge-2101.7.2-build.363.jar","hashes":[{"type":1,"value":"d4e88254e8c26687d4c6aeb4dfa9c2ad70f260a2"},{"type":2,"value":"b8d47302e577f0ca33d08f46c3e6625b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"5180f6ee-9235-44da-9f3a-10727e10c29f","modSource":0,"addonID":618298,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Core","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-core","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/540/438/256/256/637866039314801108.png","tags":[],"installedFile":{"id":8046952,"fileName":"sophisticatedcore-1.21.1-1.4.38.1847.jar","fileDate":"2026-05-06T07:37:22.877Z","fileLength":1518673,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/952/sophisticatedcore-1.21.1-1.4.38.1847.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4047366804,"invalidFingerprint":false},{"foldername":"net","fingerprint":3117517409,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1532756958,"invalidFingerprint":false},{"foldername":"sophisticatedcore.mixins.json","fingerprint":2078575015,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3640101168,"invalidFingerprint":false},{"foldername":"sophisticatedcore.create.mixins.json","fingerprint":1928847927,"invalidFingerprint":false},{"foldername":"data","fingerprint":1813028607,"invalidFingerprint":false}],"packageFingerprint":2847046695,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":618298,"fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","hashes":[{"type":1,"value":"1a1245e38ede90317d08b75d68f41494a1b97704"},{"type":2,"value":"9ab42d1c8f1e1c694858f3c770bb15a7"}]},"dateInstalled":"2026-05-07T22:44:42.3062255Z","dateUpdated":"2026-05-07T22:44:42.3079085Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedcore-1.21.1-1.4.38.1847.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8046952,"fileName":"sophisticatedcore-1.21.1-1.4.38.1847.jar","fileDate":"2026-05-06T07:37:22.877Z","fileLength":1518673,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8046/952/sophisticatedcore-1.21.1-1.4.38.1847.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4047366804,"invalidFingerprint":false},{"foldername":"net","fingerprint":3117517409,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1532756958,"invalidFingerprint":false},{"foldername":"sophisticatedcore.mixins.json","fingerprint":2078575015,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3640101168,"invalidFingerprint":false},{"foldername":"sophisticatedcore.create.mixins.json","fingerprint":1928847927,"invalidFingerprint":false},{"foldername":"data","fingerprint":1813028607,"invalidFingerprint":false}],"packageFingerprint":2847046695,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":618298,"fileNameOnDisk":"sophisticatedcore-1.21.1-1.4.38.1847.jar","hashes":[{"type":1,"value":"1a1245e38ede90317d08b75d68f41494a1b97704"},{"type":2,"value":"9ab42d1c8f1e1c694858f3c770bb15a7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"713a6b09-48a4-46ca-b569-d4aa09f9761b","modSource":0,"addonID":817709,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,422,406,409],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Integrated API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"integrated_api-1.7.4+1.21.1-neoforge.jar","authors":[{"id":100087092,"name":"CraisinLord"}],"primaryAuthor":"CraisinLord","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/integrated-api","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/995/787/256/256/638512172106489990.png","tags":[],"installedFile":{"id":7921681,"fileName":"integrated_api-1.7.4+1.21.1-neoforge.jar","fileDate":"2026-04-13T16:34:55.513Z","fileLength":470845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7921/681/integrated_api-1.7.4%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3190346439,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedAPI_common_dac55d1c3d7c43d0b24fcf81e4608720_6a1cd71daaea8164df8f683c8a4122b8eebc8edbaccb4b9e65f7d070e753141fintegrated_api1741211commondevjar","fingerprint":1687446145,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2523089384,"invalidFingerprint":false},{"foldername":"com","fingerprint":2798743687,"invalidFingerprint":false},{"foldername":"data","fingerprint":3051736328,"invalidFingerprint":false},{"foldername":"integrated_api-common-refmap.json","fingerprint":3110418838,"invalidFingerprint":false},{"foldername":"integrated_api-common.mixins.json","fingerprint":3666016008,"invalidFingerprint":false},{"foldername":"integrated_api-neoforge.mixins.json","fingerprint":256878246,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2178215406,"invalidFingerprint":false}],"packageFingerprint":1443521508,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":817709,"fileNameOnDisk":"integrated_api-1.7.4+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"11e291c2c37a0b7563cf7b8bc7e70aee868e6eb4"},{"type":2,"value":"03437cac57e025b8aa51ba11683a2f33"}]},"dateInstalled":"2026-05-07T23:22:48.8945373Z","dateUpdated":"2026-05-07T23:22:48.8960203Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\integrated_api-1.7.4+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7921681,"fileName":"integrated_api-1.7.4+1.21.1-neoforge.jar","fileDate":"2026-04-13T16:34:55.513Z","fileLength":470845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7921/681/integrated_api-1.7.4%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3190346439,"invalidFingerprint":false},{"foldername":"architectury_inject_IntegratedAPI_common_dac55d1c3d7c43d0b24fcf81e4608720_6a1cd71daaea8164df8f683c8a4122b8eebc8edbaccb4b9e65f7d070e753141fintegrated_api1741211commondevjar","fingerprint":1687446145,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2523089384,"invalidFingerprint":false},{"foldername":"com","fingerprint":2798743687,"invalidFingerprint":false},{"foldername":"data","fingerprint":3051736328,"invalidFingerprint":false},{"foldername":"integrated_api-common-refmap.json","fingerprint":3110418838,"invalidFingerprint":false},{"foldername":"integrated_api-common.mixins.json","fingerprint":3666016008,"invalidFingerprint":false},{"foldername":"integrated_api-neoforge.mixins.json","fingerprint":256878246,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2178215406,"invalidFingerprint":false}],"packageFingerprint":1443521508,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":817709,"fileNameOnDisk":"integrated_api-1.7.4+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"11e291c2c37a0b7563cf7b8bc7e70aee868e6eb4"},{"type":2,"value":"03437cac57e025b8aa51ba11683a2f33"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6015b356-12a6-4375-8012-8419b1aa064e","modSource":0,"addonID":388800,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Polymorph (Fabric/Forge/Quilt)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","authors":[{"id":34683772,"name":"TheIllusiveC4"}],"primaryAuthor":"TheIllusiveC4","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/polymorph","issuesURL":"https://github.com/TheIllusiveC4/Polymorph/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/279/271/256/256/637277042531842540.png","tags":[],"installedFile":{"id":6794589,"fileName":"polymorph-neoforge-1.1.0+1.21.1.jar","fileDate":"2025-07-21T10:56:20.123Z","fileLength":174972,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6794/589/polymorph-neoforge-1.1.0%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1898173682,"invalidFingerprint":false},{"foldername":"com","fingerprint":1750886828,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4252131204,"invalidFingerprint":false},{"foldername":"polymorph_icon.png","fingerprint":2565812113,"invalidFingerprint":false},{"foldername":"polymorph.mixins.json","fingerprint":3447760356,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.neoforge.mixins.json","fingerprint":2969094330,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.mixins.json","fingerprint":1413208718,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1851461949,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1157955771,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":4104718648,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":661612897,"invalidFingerprint":false}],"packageFingerprint":2982501720,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":388800,"fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","hashes":[{"type":1,"value":"84f8c539fa326dc723ae62b7a6916d6b01982d07"},{"type":2,"value":"2368e0c92ae882677bbf4b87418656b9"}]},"dateInstalled":"2026-05-07T21:58:06.2033557Z","dateUpdated":"2026-05-07T21:58:06.2044413Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\polymorph-neoforge-1.1.0+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6794589,"fileName":"polymorph-neoforge-1.1.0+1.21.1.jar","fileDate":"2025-07-21T10:56:20.123Z","fileLength":174972,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6794/589/polymorph-neoforge-1.1.0%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1898173682,"invalidFingerprint":false},{"foldername":"com","fingerprint":1750886828,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4252131204,"invalidFingerprint":false},{"foldername":"polymorph_icon.png","fingerprint":2565812113,"invalidFingerprint":false},{"foldername":"polymorph.mixins.json","fingerprint":3447760356,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.neoforge.mixins.json","fingerprint":2969094330,"invalidFingerprint":false},{"foldername":"polymorph-compatibility.mixins.json","fingerprint":1413208718,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1851461949,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1157955771,"invalidFingerprint":false},{"foldername":"COPYING","fingerprint":2226923820,"invalidFingerprint":false},{"foldername":"COPYING.LESSER","fingerprint":1136524626,"invalidFingerprint":false},{"foldername":"README.md","fingerprint":4104718648,"invalidFingerprint":false},{"foldername":"CHANGELOG.md","fingerprint":661612897,"invalidFingerprint":false}],"packageFingerprint":2982501720,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":388800,"fileNameOnDisk":"polymorph-neoforge-1.1.0+1.21.1.jar","hashes":[{"type":1,"value":"84f8c539fa326dc723ae62b7a6916d6b01982d07"},{"type":2,"value":"2368e0c92ae882677bbf4b87418656b9"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"43b4ac96-6fa1-475c-af76-b2a2ab09a9c2","modSource":0,"addonID":254284,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AmbientSounds 6","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","authors":[{"id":8685730,"name":"CreativeMD"}],"primaryAuthor":"CreativeMD","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ambientsounds","issuesURL":"https://github.com/CreativeMD/AmbientSounds/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/65/45/256/256/636158453613581226.png","tags":[],"installedFile":{"id":8043019,"fileName":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","fileDate":"2026-05-05T12:27:30.767Z","fileLength":84811632,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8043/19/AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":257814,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339489981,"invalidFingerprint":false},{"foldername":"team","fingerprint":2058735581,"invalidFingerprint":false},{"foldername":"ambientsounds.mixins.json","fingerprint":3880996333,"invalidFingerprint":false},{"foldername":"ambientsounds.png","fingerprint":3887141381,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3518751924,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":844488719,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3371263586,"invalidFingerprint":false}],"packageFingerprint":169092502,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":254284,"fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","hashes":[{"type":1,"value":"c79ab328b2c46068effebdcb3f26e98dc4404cb0"},{"type":2,"value":"fdd3f4054a8a2716cb4057d81e61a0c7"}]},"dateInstalled":"2026-05-07T22:47:11.6952515Z","dateUpdated":"2026-05-07T22:47:11.7159099Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8043019,"fileName":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","fileDate":"2026-05-05T12:27:30.767Z","fileLength":84811632,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8043/19/AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":257814,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2339489981,"invalidFingerprint":false},{"foldername":"team","fingerprint":2058735581,"invalidFingerprint":false},{"foldername":"ambientsounds.mixins.json","fingerprint":3880996333,"invalidFingerprint":false},{"foldername":"ambientsounds.png","fingerprint":3887141381,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3518751924,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":844488719,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3371263586,"invalidFingerprint":false}],"packageFingerprint":169092502,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":254284,"fileNameOnDisk":"AmbientSounds_NEOFORGE_v6.3.8_mc1.21.1.jar","hashes":[{"type":1,"value":"c79ab328b2c46068effebdcb3f26e98dc4404cb0"},{"type":2,"value":"fdd3f4054a8a2716cb4057d81e61a0c7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"0bed0127-f99b-4043-9c3d-00eb3b383da3","modSource":0,"addonID":317780,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,414],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Xaero's World Map","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","authors":[{"id":12362980,"name":"xaero96"}],"primaryAuthor":"xaero96","primaryCategoryId":423,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map","issuesURL":"https://legacy.curseforge.com/minecraft/mc-mods/xaeros-world-map/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/196/654/256/256/636886857118683130.png","tags":[],"installedFile":{"id":8042208,"fileName":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","fileDate":"2026-05-05T08:36:40.087Z","fileLength":1387011,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8042/208/xaeroworldmap-neoforge-1.21.1-1.40.16.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":263420,"type":2},{"addonId":636608,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2915310817,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1873849846,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565779974,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":91174732,"invalidFingerprint":false},{"foldername":"xaeroworldmap.mixins.json","fingerprint":1689920110,"invalidFingerprint":false},{"foldername":"xaeroworldmap.neoforge.mixins.json","fingerprint":401619445,"invalidFingerprint":false}],"packageFingerprint":2287221288,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":317780,"fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","hashes":[{"type":1,"value":"d0865b6153c4d0feaf1551fb5309884ec3568c03"},{"type":2,"value":"0b76c5c6d2e7598a801f159844f7bfab"}]},"dateInstalled":"2026-05-07T22:44:47.0059371Z","dateUpdated":"2026-05-07T22:44:47.0077218Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\xaeroworldmap-neoforge-1.21.1-1.40.16.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8042208,"fileName":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","fileDate":"2026-05-05T08:36:40.087Z","fileLength":1387011,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8042/208/xaeroworldmap-neoforge-1.21.1-1.40.16.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":263420,"type":2},{"addonId":636608,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2915310817,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1873849846,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565779974,"invalidFingerprint":false},{"foldername":"xaero","fingerprint":91174732,"invalidFingerprint":false},{"foldername":"xaeroworldmap.mixins.json","fingerprint":1689920110,"invalidFingerprint":false},{"foldername":"xaeroworldmap.neoforge.mixins.json","fingerprint":401619445,"invalidFingerprint":false}],"packageFingerprint":2287221288,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":317780,"fileNameOnDisk":"xaeroworldmap-neoforge-1.21.1-1.40.16.jar","hashes":[{"type":1,"value":"d0865b6153c4d0feaf1551fb5309884ec3568c03"},{"type":2,"value":"0b76c5c6d2e7598a801f159844f7bfab"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"7a3454ae-d110-4a94-bb45-0a688ac475ae","modSource":0,"addonID":223852,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Storage Drawers","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","authors":[{"id":6833007,"name":"Texelsaur"}],"primaryAuthor":"Texelsaur","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/storage-drawers","issuesURL":"https://github.com/jaquadro/StorageDrawers/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/10/842/256/256/635468327818431130.png","tags":[],"installedFile":{"id":6995432,"fileName":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","fileDate":"2025-09-14T09:40:03.98Z","fileLength":1131419,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6995/432/StorageDrawers-neoforge-1.21.1-13.11.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3937469495,"invalidFingerprint":false},{"foldername":"com","fingerprint":408188765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":188157379,"invalidFingerprint":false},{"foldername":"data","fingerprint":3286145630,"invalidFingerprint":false},{"foldername":"storagedrawers.accesswidener","fingerprint":2358561593,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":784390785,"invalidFingerprint":false}],"packageFingerprint":1362863274,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":223852,"fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","hashes":[{"type":1,"value":"5347db4d1150b132841bd124d1608f812bf8076f"},{"type":2,"value":"dabc8395767c993960db28b301bfbcf1"}]},"dateInstalled":"2026-05-07T22:48:43.6707702Z","dateUpdated":"2026-05-07T22:48:43.6722834Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\StorageDrawers-neoforge-1.21.1-13.11.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6995432,"fileName":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","fileDate":"2025-09-14T09:40:03.98Z","fileLength":1131419,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6995/432/StorageDrawers-neoforge-1.21.1-13.11.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3937469495,"invalidFingerprint":false},{"foldername":"com","fingerprint":408188765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":188157379,"invalidFingerprint":false},{"foldername":"data","fingerprint":3286145630,"invalidFingerprint":false},{"foldername":"storagedrawers.accesswidener","fingerprint":2358561593,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":784390785,"invalidFingerprint":false}],"packageFingerprint":1362863274,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":223852,"fileNameOnDisk":"StorageDrawers-neoforge-1.21.1-13.11.4.jar","hashes":[{"type":1,"value":"5347db4d1150b132841bd124d1608f812bf8076f"},{"type":2,"value":"dabc8395767c993960db28b301bfbcf1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6d978328-df74-4659-bc97-da8a304d9abd","modSource":0,"addonID":1037680,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[408,434,422,5191,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Awesome 3D Mace","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"},{"id":129240526,"name":"lowercasebtw"},{"id":108329762,"name":"Skatric_"}],"primaryAuthor":"Lupin","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/awesome-3d-mace","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1018/233/256/256/638544822272410121.png","tags":[],"installedFile":{"id":7243121,"fileName":"mace3d-1.2.0-1.21.1+neoforge.jar","fileDate":"2025-11-20T18:04:21.317Z","fileLength":188719,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7243/121/mace3d-1.2.0-1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1843129765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2913730749,"invalidFingerprint":false},{"foldername":"dev","fingerprint":2738780732,"invalidFingerprint":false},{"foldername":"mace3d.mixins.json","fingerprint":1705950270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":273960316,"invalidFingerprint":false}],"packageFingerprint":3820136208,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1037680,"fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","hashes":[{"type":1,"value":"47bc853901ab453be4f55c4759d1bc01364d7316"},{"type":2,"value":"0d8747635dd74a25116ae4bef769bc0a"}]},"dateInstalled":"2026-05-07T21:58:42.5750142Z","dateUpdated":"2026-05-07T21:58:42.5758878Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\mace3d-1.2.0-1.21.1+neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7243121,"fileName":"mace3d-1.2.0-1.21.1+neoforge.jar","fileDate":"2025-11-20T18:04:21.317Z","fileLength":188719,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7243/121/mace3d-1.2.0-1.21.1%2bneoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1843129765,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2913730749,"invalidFingerprint":false},{"foldername":"dev","fingerprint":2738780732,"invalidFingerprint":false},{"foldername":"mace3d.mixins.json","fingerprint":1705950270,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":273960316,"invalidFingerprint":false}],"packageFingerprint":3820136208,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1037680,"fileNameOnDisk":"mace3d-1.2.0-1.21.1+neoforge.jar","hashes":[{"type":1,"value":"47bc853901ab453be4f55c4759d1bc01364d7316"},{"type":2,"value":"0d8747635dd74a25116ae4bef769bc0a"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"86a1d40f-236d-4513-b2ef-a0bd06b5370f","modSource":0,"addonID":220318,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[407,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Biomes O' Plenty","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","authors":[{"id":6883388,"name":"Forstride"},{"id":9704465,"name":"TheAdubbz"}],"primaryAuthor":"Forstride","primaryCategoryId":407,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/biomes-o-plenty","issuesURL":"https://github.com/Glitchfiend/BiomesOPlenty/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/477/194/256/256/637771671789296797.png","tags":[],"installedFile":{"id":7251965,"fileName":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","fileDate":"2025-11-23T04:05:05.193Z","fileLength":22338081,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7251/965/BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":940057,"type":3},{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1375306347,"invalidFingerprint":false},{"foldername":"biomesoplenty","fingerprint":436268774,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1499534005,"invalidFingerprint":false},{"foldername":"biomesoplenty.neoforge.mixins.json","fingerprint":3621304227,"invalidFingerprint":false},{"foldername":"assets","fingerprint":903437356,"invalidFingerprint":false},{"foldername":"biomesoplenty.accesswidener","fingerprint":403888900,"invalidFingerprint":false},{"foldername":"biomesoplenty_logo.png","fingerprint":2745841392,"invalidFingerprint":false},{"foldername":"data","fingerprint":2356029796,"invalidFingerprint":false},{"foldername":"biomesoplenty.mixins.json","fingerprint":3338520145,"invalidFingerprint":false},{"foldername":".cache","fingerprint":1018158453,"invalidFingerprint":false}],"packageFingerprint":2025728047,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":220318,"fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","hashes":[{"type":1,"value":"a0dec78a9c1bb7e0167e5326aaf3c58a94f3aa86"},{"type":2,"value":"5fffd607544c0c158957a5df7a510bd8"}]},"dateInstalled":"2026-05-07T23:17:41.0302698Z","dateUpdated":"2026-05-07T23:17:41.0631028Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7251965,"fileName":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","fileDate":"2025-11-23T04:05:05.193Z","fileLength":22338081,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7251/965/BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":940057,"type":3},{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1375306347,"invalidFingerprint":false},{"foldername":"biomesoplenty","fingerprint":436268774,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1499534005,"invalidFingerprint":false},{"foldername":"biomesoplenty.neoforge.mixins.json","fingerprint":3621304227,"invalidFingerprint":false},{"foldername":"assets","fingerprint":903437356,"invalidFingerprint":false},{"foldername":"biomesoplenty.accesswidener","fingerprint":403888900,"invalidFingerprint":false},{"foldername":"biomesoplenty_logo.png","fingerprint":2745841392,"invalidFingerprint":false},{"foldername":"data","fingerprint":2356029796,"invalidFingerprint":false},{"foldername":"biomesoplenty.mixins.json","fingerprint":3338520145,"invalidFingerprint":false},{"foldername":".cache","fingerprint":1018158453,"invalidFingerprint":false}],"packageFingerprint":2025728047,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":220318,"fileNameOnDisk":"BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar","hashes":[{"type":1,"value":"a0dec78a9c1bb7e0167e5326aaf3c58a94f3aa86"},{"type":2,"value":"5fffd607544c0c158957a5df7a510bd8"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"06ff369f-52a1-4a71-8b93-9a491b047024","modSource":0,"addonID":1315611,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5191,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Accessories Compatibility Layer","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","authors":[{"id":100277261,"name":"Blodhgarm"}],"primaryAuthor":"Blodhgarm","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/accessories-compat-layer","issuesURL":"https://github.com/wisp-forest/accessories-compat-layer/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1375/457/256/256/638892570347250676.png","tags":[],"installedFile":{"id":7585673,"fileName":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","fileDate":"2026-02-06T19:18:03.92Z","fileLength":405416,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7585/673/accessories_compat_layer-neoforge-0.1.12%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":532610,"type":3},{"addonId":938917,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":719714238,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common-common-refmap.json","fingerprint":1309914895,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common.mixins.json","fingerprint":2389349121,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-curios.mixins.json","fingerprint":2234185362,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-neoforge.mixins.json","fingerprint":3477667976,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-trinkets.mixins.json","fingerprint":3631708226,"invalidFingerprint":false},{"foldername":"accessories_compat_layer.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402476106,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":118629613,"invalidFingerprint":false},{"foldername":"io","fingerprint":2666805157,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2036385988,"invalidFingerprint":false}],"packageFingerprint":3503433516,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1315611,"fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","hashes":[{"type":1,"value":"59dd35650925d72f5158816caf895f3d9fa0edf4"},{"type":2,"value":"f6465aa6e300ef9048dd782fa1d29cca"}]},"dateInstalled":"2026-05-07T22:53:55.7971451Z","dateUpdated":"2026-05-07T22:53:55.7986521Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\accessories_compat_layer-neoforge-0.1.12+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7585673,"fileName":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","fileDate":"2026-02-06T19:18:03.92Z","fileLength":405416,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7585/673/accessories_compat_layer-neoforge-0.1.12%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":532610,"type":3},{"addonId":938917,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":719714238,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common-common-refmap.json","fingerprint":1309914895,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-common.mixins.json","fingerprint":2389349121,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-curios.mixins.json","fingerprint":2234185362,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-neoforge.mixins.json","fingerprint":3477667976,"invalidFingerprint":false},{"foldername":"accessories_compat_layer-trinkets.mixins.json","fingerprint":3631708226,"invalidFingerprint":false},{"foldername":"accessories_compat_layer.accesswidener","fingerprint":1095485847,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402476106,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":118629613,"invalidFingerprint":false},{"foldername":"io","fingerprint":2666805157,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2036385988,"invalidFingerprint":false}],"packageFingerprint":3503433516,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1315611,"fileNameOnDisk":"accessories_compat_layer-neoforge-0.1.12+1.21.1.jar","hashes":[{"type":1,"value":"59dd35650925d72f5158816caf895f3d9fa0edf4"},{"type":2,"value":"f6465aa6e300ef9048dd782fa1d29cca"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ee707879-a427-47ee-9eef-135c96a00388","modSource":0,"addonID":361579,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"spark","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"spark-1.10.124-neoforge.jar","authors":[{"id":54676657,"name":"Iucko"}],"primaryAuthor":"Iucko","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/spark","issuesURL":"https://github.com/lucko/spark/issues","wikiURL":"https://spark.lucko.me/docs","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/495/151/256/256/637808085409071880.png","tags":[],"installedFile":{"id":6225208,"fileName":"spark-1.10.124-neoforge.jar","fileDate":"2025-02-23T11:38:31.027Z","fileLength":3642581,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6225/208/spark-1.10.124-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2169941584,"invalidFingerprint":false},{"foldername":"me","fingerprint":620895083,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":875227375,"invalidFingerprint":false},{"foldername":"spark-native","fingerprint":433455606,"invalidFingerprint":false},{"foldername":"win32-x86","fingerprint":2564852001,"invalidFingerprint":false},{"foldername":"win32-x86-64","fingerprint":2158727245,"invalidFingerprint":false}],"packageFingerprint":3447435049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361579,"fileNameOnDisk":"spark-1.10.124-neoforge.jar","hashes":[{"type":1,"value":"9430cc2ab64ff89d698be593769fb9f9ee4efae6"},{"type":2,"value":"a61dd250e618f8fd62fc6b0943831c50"}]},"dateInstalled":"2026-05-07T21:58:55.9444532Z","dateUpdated":"2026-05-07T21:58:55.9462454Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\spark-1.10.124-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6225208,"fileName":"spark-1.10.124-neoforge.jar","fileDate":"2025-02-23T11:38:31.027Z","fileLength":3642581,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6225/208/spark-1.10.124-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2169941584,"invalidFingerprint":false},{"foldername":"me","fingerprint":620895083,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":875227375,"invalidFingerprint":false},{"foldername":"spark-native","fingerprint":433455606,"invalidFingerprint":false},{"foldername":"win32-x86","fingerprint":2564852001,"invalidFingerprint":false},{"foldername":"win32-x86-64","fingerprint":2158727245,"invalidFingerprint":false}],"packageFingerprint":3447435049,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":361579,"fileNameOnDisk":"spark-1.10.124-neoforge.jar","hashes":[{"type":1,"value":"9430cc2ab64ff89d698be593769fb9f9ee4efae6"},{"type":2,"value":"a61dd250e618f8fd62fc6b0943831c50"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"68ffa61f-2ddc-4b75-bbd9-5b7c32e1e96b","modSource":0,"addonID":531761,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Balm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/balm","issuesURL":"https://github.com/TwelveIterations/Balm/issues","wikiURL":"https://balm.twelveiterations.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1107/117/256/256/638657111836546584.png","tags":[],"installedFile":{"id":7420963,"fileName":"balm-neoforge-1.21.1-21.0.56.jar","fileDate":"2026-01-05T13:50:26.647Z","fileLength":739709,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7420/963/balm-neoforge-1.21.1-21.0.56.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4013853730,"invalidFingerprint":false},{"foldername":"net","fingerprint":2433240582,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":320221365,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2093007951,"invalidFingerprint":false},{"foldername":"balm.neoforge.mixins.json","fingerprint":3931949274,"invalidFingerprint":false},{"foldername":"data","fingerprint":3917391617,"invalidFingerprint":false},{"foldername":"balm.png","fingerprint":3535347704,"invalidFingerprint":false},{"foldername":"wthit_plugins.json","fingerprint":2086325127,"invalidFingerprint":false},{"foldername":"balm.mixins.json","fingerprint":451320591,"invalidFingerprint":false},{"foldername":"LICENSE_Balm","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1850182331,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":531761,"fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","hashes":[{"type":1,"value":"c1c1d4859c7943c7d1c181c07fa7273a1d56df15"},{"type":2,"value":"7ab16721c9a8bb96666233d8ef46b47d"}]},"dateInstalled":"2026-05-07T21:58:06.7251958Z","dateUpdated":"2026-05-07T21:58:06.7263838Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\balm-neoforge-1.21.1-21.0.56.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7420963,"fileName":"balm-neoforge-1.21.1-21.0.56.jar","fileDate":"2026-01-05T13:50:26.647Z","fileLength":739709,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7420/963/balm-neoforge-1.21.1-21.0.56.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4013853730,"invalidFingerprint":false},{"foldername":"net","fingerprint":2433240582,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":320221365,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2093007951,"invalidFingerprint":false},{"foldername":"balm.neoforge.mixins.json","fingerprint":3931949274,"invalidFingerprint":false},{"foldername":"data","fingerprint":3917391617,"invalidFingerprint":false},{"foldername":"balm.png","fingerprint":3535347704,"invalidFingerprint":false},{"foldername":"wthit_plugins.json","fingerprint":2086325127,"invalidFingerprint":false},{"foldername":"balm.mixins.json","fingerprint":451320591,"invalidFingerprint":false},{"foldername":"LICENSE_Balm","fingerprint":1031176930,"invalidFingerprint":false}],"packageFingerprint":1850182331,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":531761,"fileNameOnDisk":"balm-neoforge-1.21.1-21.0.56.jar","hashes":[{"type":1,"value":"c1c1d4859c7943c7d1c181c07fa7273a1d56df15"},{"type":2,"value":"7ab16721c9a8bb96666233d8ef46b47d"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"06aea849-7169-442d-8af0-effdc435542c","modSource":0,"addonID":1016013,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[402,394,405,403,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Chests","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Chests - 1.1.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":394,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-chests","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1302/596/256/256/638846733472264521.webp","tags":[],"installedFile":{"id":7451276,"fileName":"Realistic Chests - 1.1.zip","fileDate":"2026-01-12T18:12:27.543Z","fileLength":475866,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/276/Realistic%20Chests%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2291289666,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3660398786,"invalidFingerprint":false}],"packageFingerprint":916013278,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1016013,"fileNameOnDisk":"Realistic Chests - 1.1.zip","hashes":[{"type":1,"value":"22960c0ddc700e0debf1acb70b60b751af8ab38e"},{"type":2,"value":"c5849bd0460bcf3c7752d8d6864f6dae"}]},"dateInstalled":"2026-05-07T21:58:35.515544Z","dateUpdated":"2026-05-07T21:58:35.5174269Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Chests - 1.1.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7451276,"fileName":"Realistic Chests - 1.1.zip","fileDate":"2026-01-12T18:12:27.543Z","fileLength":475866,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7451/276/Realistic%20Chests%20-%201.1.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":2291289666,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3660398786,"invalidFingerprint":false}],"packageFingerprint":916013278,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1016013,"fileNameOnDisk":"Realistic Chests - 1.1.zip","hashes":[{"type":1,"value":"22960c0ddc700e0debf1acb70b60b751af8ab38e"},{"type":2,"value":"c5849bd0460bcf3c7752d8d6864f6dae"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"6852120c-5547-4998-be13-3902682a8c4b","modSource":0,"addonID":448233,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Entity Culling Fabric/Forge","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","authors":[{"id":100212189,"name":"tr7zw"}],"primaryAuthor":"tr7zw","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/entityculling","issuesURL":"https://github.com/tr7zw/EntityCulling/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/345/318/256/256/637492631463701682.png","tags":[],"installedFile":{"id":8053771,"fileName":"entityculling-neoforge-1.10.2-mc1.21.1.jar","fileDate":"2026-05-07T17:02:06.093Z","fileLength":1582824,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8053/771/entityculling-neoforge-1.10.2-mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2096466311,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1929528592,"invalidFingerprint":false},{"foldername":"LICENSE-EntityCulling","fingerprint":3421239066,"invalidFingerprint":false},{"foldername":"assets","fingerprint":225464463,"invalidFingerprint":false},{"foldername":"com","fingerprint":1200952869,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3474774877,"invalidFingerprint":false},{"foldername":"entityculling.mixins.json","fingerprint":2732222196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1128112900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1336019042,"invalidFingerprint":false}],"packageFingerprint":1090075427,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":448233,"fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","hashes":[{"type":1,"value":"6c6f885e0359c2b0601cbec76fda406caeb49cca"},{"type":2,"value":"88831a176ed788b91d9c881a70a86902"}]},"dateInstalled":"2026-05-07T21:58:02.953484Z","dateUpdated":"2026-05-07T22:25:59.3890691Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\entityculling-neoforge-1.10.2-mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8053771,"fileName":"entityculling-neoforge-1.10.2-mc1.21.1.jar","fileDate":"2026-05-07T17:02:06.093Z","fileLength":1582824,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8053/771/entityculling-neoforge-1.10.2-mc1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2096466311,"invalidFingerprint":false},{"foldername":"LICENSE","fingerprint":1929528592,"invalidFingerprint":false},{"foldername":"LICENSE-EntityCulling","fingerprint":3421239066,"invalidFingerprint":false},{"foldername":"assets","fingerprint":225464463,"invalidFingerprint":false},{"foldername":"com","fingerprint":1200952869,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3474774877,"invalidFingerprint":false},{"foldername":"entityculling.mixins.json","fingerprint":2732222196,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1128112900,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1336019042,"invalidFingerprint":false}],"packageFingerprint":1090075427,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":448233,"fileNameOnDisk":"entityculling-neoforge-1.10.2-mc1.21.1.jar","hashes":[{"type":1,"value":"6c6f885e0359c2b0601cbec76fda406caeb49cca"},{"type":2,"value":"88831a176ed788b91d9c881a70a86902"}]},"allowModDistribution":false,"exportDisabledReason":0,"groupId":null},{"instanceID":"034eca0f-b951-4e92-b6cf-77c8e505482b","modSource":0,"addonID":1386611,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[5193,404,400,405,403],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better GUI - Workbench, Villagers...","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":114802045,"name":"yusuf26"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/better-vanilla-gui","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1524/317/256/256/638989765415539180.webp","tags":[],"installedFile":{"id":7819803,"fileName":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","fileDate":"2026-03-26T22:54:16.04Z","fileLength":12423207,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7819/803/Better%20Vanilla%20GUI%20(With%20OptiGUI)%20-%20MC%201.21.1%20-%203.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"Credits.txt","fingerprint":2159287669,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4120494466,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1348194029,"invalidFingerprint":false},{"foldername":"respackopts.json5","fingerprint":4034398857,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1902362250,"invalidFingerprint":false}],"packageFingerprint":2249827972,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1386611,"fileNameOnDisk":"Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip","hashes":[{"type":1,"value":"55d241004872ac30f6deaa5b5accdb08d2d3ac9b"},{"type":2,"value":"9ef853347ecf2c4f1dae8bccb982a6af"}]},"dateInstalled":"2026-05-07T21:58:13.7767189Z","dateUpdated":"2026-05-07T21:58:14.3882714Z","status":3,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Better Vanilla GUI (With OptiGUI) - MC 1.21.1 - 3.1.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7819808,"fileName":"Better Vanilla GUI (Without OptiGUI) - MC 1.21.1 - 3.1.0.zip","fileDate":"2026-03-26T22:54:55.433Z","fileLength":12423207,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7819/808/Better%20Vanilla%20GUI%20(Without%20OptiGUI)%20-%20MC%201.21.1%20-%203.1.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"Credits.txt","fingerprint":2159287669,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4120494466,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1348194029,"invalidFingerprint":false},{"foldername":"respackopts.json5","fingerprint":4034398857,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1902362250,"invalidFingerprint":false}],"packageFingerprint":3074793684,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1386611,"fileNameOnDisk":"Better Vanilla GUI (Without OptiGUI) - MC 1.21.1 - 3.1.0.zip","hashes":[{"type":1,"value":"1136fdacdf63dae37993d77730b99001310c1dfa"},{"type":2,"value":"3b98e99ffffefddb76e22c969b5613e1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f8b9af47-91e8-4b21-9814-8556cc5ea918","modSource":0,"addonID":968868,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Zeta","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Zeta-1.1-40.jar","authors":[{"id":3852549,"name":"Vazkii"},{"id":24267430,"name":"quat"},{"id":101075617,"name":"Siuolplex"},{"id":102652063,"name":"IThundxr"}],"primaryAuthor":"Vazkii","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/zeta","issuesURL":"https://github.com/VazkiiMods/Zeta/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/941/302/256/256/638422437053245782.png","tags":[],"installedFile":{"id":7980010,"fileName":"Zeta-1.1-40.jar","fileDate":"2026-04-24T23:54:24.36Z","fileLength":763725,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7980/10/Zeta-1.1-40.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1340951831,"invalidFingerprint":false},{"foldername":"math","fingerprint":281416082,"invalidFingerprint":false},{"foldername":"org","fingerprint":3181711105,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3136112178,"invalidFingerprint":false},{"foldername":"zeta.mixins.json","fingerprint":1107258868,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":633059509,"invalidFingerprint":false},{"foldername":"zeta_forge.mixins.json","fingerprint":2744003411,"invalidFingerprint":false},{"foldername":"data","fingerprint":4015252978,"invalidFingerprint":false}],"packageFingerprint":2109350600,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968868,"fileNameOnDisk":"Zeta-1.1-40.jar","hashes":[{"type":1,"value":"72f6efe421cfc0547c774ae8241d727b7d996754"},{"type":2,"value":"cc0d6e584cfca1f1383c9f120c035c22"}]},"dateInstalled":"2026-05-07T23:22:49.9075496Z","dateUpdated":"2026-05-07T23:22:49.9091532Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Zeta-1.1-40.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7980010,"fileName":"Zeta-1.1-40.jar","fileDate":"2026-04-24T23:54:24.36Z","fileLength":763725,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7980/10/Zeta-1.1-40.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1340951831,"invalidFingerprint":false},{"foldername":"math","fingerprint":281416082,"invalidFingerprint":false},{"foldername":"org","fingerprint":3181711105,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3136112178,"invalidFingerprint":false},{"foldername":"zeta.mixins.json","fingerprint":1107258868,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":633059509,"invalidFingerprint":false},{"foldername":"zeta_forge.mixins.json","fingerprint":2744003411,"invalidFingerprint":false},{"foldername":"data","fingerprint":4015252978,"invalidFingerprint":false}],"packageFingerprint":2109350600,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":968868,"fileNameOnDisk":"Zeta-1.1-40.jar","hashes":[{"type":1,"value":"72f6efe421cfc0547c774ae8241d727b7d996754"},{"type":2,"value":"cc0d6e584cfca1f1383c9f120c035c22"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"e2ebc9c1-3b70-45d2-8686-1decd98d7b36","modSource":0,"addonID":1049917,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426,424,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Dynamic Trees for Nature's Spirit","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar","authors":[{"id":104804096,"name":"joe_vettek"}],"primaryAuthor":"joe_vettek","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/dynamic-trees-for-natures-spirit","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1027/435/256/256/638548834035916074.jpeg","tags":[],"installedFile":{"id":6736086,"fileName":"Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar","fileDate":"2025-07-06T07:24:11.517Z","fileLength":394005,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6736/86/Dynamic%20Trees%20for%20Nature%27s%20Spirit-1.21.1-neoforge-1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1044992,"type":3},{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2931202295,"invalidFingerprint":false},{"foldername":"xueluoanping","fingerprint":1070775752,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1374232756,"invalidFingerprint":false},{"foldername":"data","fingerprint":1443688668,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1294647691,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2331419665,"invalidFingerprint":false},{"foldername":"trees","fingerprint":1432571588,"invalidFingerprint":false}],"packageFingerprint":1803031159,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1049917,"fileNameOnDisk":"Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar","hashes":[{"type":1,"value":"8f8a5aafd10e3da3e0657c3d74706741adc4a7b7"},{"type":2,"value":"963fec4ca7f5c62afa9fe66140fc3aa7"}]},"dateInstalled":"2026-05-07T23:16:21.485739Z","dateUpdated":"2026-05-07T23:16:21.4875869Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6736086,"fileName":"Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar","fileDate":"2025-07-06T07:24:11.517Z","fileLength":394005,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6736/86/Dynamic%20Trees%20for%20Nature%27s%20Spirit-1.21.1-neoforge-1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1044992,"type":3},{"addonId":252818,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2931202295,"invalidFingerprint":false},{"foldername":"xueluoanping","fingerprint":1070775752,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1374232756,"invalidFingerprint":false},{"foldername":"data","fingerprint":1443688668,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1294647691,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2331419665,"invalidFingerprint":false},{"foldername":"trees","fingerprint":1432571588,"invalidFingerprint":false}],"packageFingerprint":1803031159,"gameVersion":["Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1049917,"fileNameOnDisk":"Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar","hashes":[{"type":1,"value":"8f8a5aafd10e3da3e0657c3d74706741adc4a7b7"},{"type":2,"value":"963fec4ca7f5c62afa9fe66140fc3aa7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"76842d4c-e98d-4a96-b37a-b0b42a27fd27","modSource":0,"addonID":1103431,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sodium/Embeddium Options API","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","authors":[{"id":102782844,"name":"Txni"}],"primaryAuthor":"Txni","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sodium-options-api","issuesURL":"https://github.com/txnimc/SodiumOptionsAPI/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1080/739/256/256/638620165439711976.png","tags":[],"installedFile":{"id":6100815,"fileName":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","fileDate":"2025-01-18T20:48:18.213Z","fileLength":309122,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6100/815/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","isAlternate":false,"alternateFileId":6100821,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":937528710,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1038961657,"invalidFingerprint":false},{"foldername":"licenses","fingerprint":4180073098,"invalidFingerprint":false},{"foldername":"mixins.sodiumoptionsapi.json","fingerprint":997596813,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1740227982,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4153736018,"invalidFingerprint":false}],"packageFingerprint":2527579799,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1103431,"fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","hashes":[{"type":1,"value":"5d014d031fa77ab600e07835b032ef4dcb79b442"},{"type":2,"value":"1411af8defb5136119d3cf706d3d9cd8"}]},"dateInstalled":"2026-05-07T21:58:41.8857856Z","dateUpdated":"2026-05-07T21:58:41.88701Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6100815,"fileName":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","fileDate":"2025-01-18T20:48:18.213Z","fileLength":309122,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6100/815/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","isAlternate":false,"alternateFileId":6100821,"serverPackFileId":0,"dependencies":[{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":937528710,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1038961657,"invalidFingerprint":false},{"foldername":"licenses","fingerprint":4180073098,"invalidFingerprint":false},{"foldername":"mixins.sodiumoptionsapi.json","fingerprint":997596813,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1740227982,"invalidFingerprint":false},{"foldername":"toni","fingerprint":4153736018,"invalidFingerprint":false}],"packageFingerprint":2527579799,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1103431,"fileNameOnDisk":"sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar","hashes":[{"type":1,"value":"5d014d031fa77ab600e07835b032ef4dcb79b442"},{"type":2,"value":"1411af8defb5136119d3cf706d3d9cd8"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"09cbcabc-2070-4df6-8154-f9a33ed43a8e","modSource":0,"addonID":416294,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5314],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Rhino","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"rhino-2101.2.7-build.81.jar","authors":[{"id":11776558,"name":"LatvianModder"}],"primaryAuthor":"LatvianModder","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/rhino","issuesURL":"https://kubejs.com/support?source=rhino","wikiURL":"https://kubejs.com/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1053/155/256/256/638583713150199979.png","tags":[],"installedFile":{"id":7104526,"fileName":"rhino-2101.2.7-build.81.jar","fileDate":"2025-10-13T22:22:58.843Z","fileLength":882032,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7104/526/rhino-2101.2.7-build.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":965621183,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3693405486,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":178108278,"invalidFingerprint":false},{"foldername":"rhino_logo.png","fingerprint":1543393451,"invalidFingerprint":false}],"packageFingerprint":3887879530,"gameVersion":["1.21","Fabric","1.21.4","Forge","1.21.1","1.21.3","NeoForge","1.21.2","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":416294,"fileNameOnDisk":"rhino-2101.2.7-build.81.jar","hashes":[{"type":1,"value":"5dcc80079095706645d567353095297948a41eea"},{"type":2,"value":"050aad61e018a810b0f183ad50e084c6"}]},"dateInstalled":"2026-05-07T22:46:40.2391884Z","dateUpdated":"2026-05-07T22:46:40.2410542Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\rhino-2101.2.7-build.81.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7104526,"fileName":"rhino-2101.2.7-build.81.jar","fileDate":"2025-10-13T22:22:58.843Z","fileLength":882032,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7104/526/rhino-2101.2.7-build.81.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":965621183,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3693405486,"invalidFingerprint":false},{"foldername":"fabric.mod.json","fingerprint":178108278,"invalidFingerprint":false},{"foldername":"rhino_logo.png","fingerprint":1543393451,"invalidFingerprint":false}],"packageFingerprint":3887879530,"gameVersion":["1.21","Fabric","1.21.4","Forge","1.21.1","1.21.3","NeoForge","1.21.2","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Fabric","gameVersionTypeId":68441},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Forge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":416294,"fileNameOnDisk":"rhino-2101.2.7-build.81.jar","hashes":[{"type":1,"value":"5dcc80079095706645d567353095297948a41eea"},{"type":2,"value":"050aad61e018a810b0f183ad50e084c6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"65556eb6-04d2-4b0f-bd66-62841d5c73c2","modSource":0,"addonID":348521,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Cloth Config API (Fabric/Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","authors":[{"id":32851078,"name":"shedaniel"},{"id":101070148,"name":"LinkieIsBetterThanK9"}],"primaryAuthor":"shedaniel","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/cloth-config","issuesURL":"https://github.com/shedaniel/ClothConfig/issues","wikiURL":"https://shedaniel.gitbook.io/cloth-config/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/282/467/256/256/637289313020452406.png","tags":[],"installedFile":{"id":5729127,"fileName":"cloth-config-15.0.140-neoforge.jar","fileDate":"2024-09-16T17:18:01.157Z","fileLength":1163890,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5729/127/cloth-config-15.0.140-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2767812205,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":4008471873,"invalidFingerprint":false},{"foldername":"architectury_inject_clothconfig_common_d551de04735c42148ec07a78c43007d1_c487a9cf12e7d5bea169da255b814f03602bdeb8b51cff67162252c24f285789clothconfig150140devjar","fingerprint":2775278757,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1622707384,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2356087988,"invalidFingerprint":false},{"foldername":"me","fingerprint":1406389870,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":524945892,"invalidFingerprint":false}],"packageFingerprint":1440957232,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348521,"fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","hashes":[{"type":1,"value":"c3e5733ba4503b102589a026000fd5ce0212f6f2"},{"type":2,"value":"4c3757160403fcccb8ad468c2ea22862"}]},"dateInstalled":"2026-05-07T21:57:59.1039313Z","dateUpdated":"2026-05-07T21:57:59.1054777Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\cloth-config-15.0.140-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5729127,"fileName":"cloth-config-15.0.140-neoforge.jar","fileDate":"2024-09-16T17:18:01.157Z","fileLength":1163890,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5729/127/cloth-config-15.0.140-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2767812205,"invalidFingerprint":false},{"foldername":"LICENSE.md","fingerprint":4008471873,"invalidFingerprint":false},{"foldername":"architectury_inject_clothconfig_common_d551de04735c42148ec07a78c43007d1_c487a9cf12e7d5bea169da255b814f03602bdeb8b51cff67162252c24f285789clothconfig150140devjar","fingerprint":2775278757,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1622707384,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":2356087988,"invalidFingerprint":false},{"foldername":"me","fingerprint":1406389870,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":524945892,"invalidFingerprint":false}],"packageFingerprint":1440957232,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":348521,"fileNameOnDisk":"cloth-config-15.0.140-neoforge.jar","hashes":[{"type":1,"value":"c3e5733ba4503b102589a026000fd5ce0212f6f2"},{"type":2,"value":"4c3757160403fcccb8ad468c2ea22862"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"cdc5a95f-9a35-4895-86ce-d8848a6e17eb","modSource":0,"addonID":243121,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Quark","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Quark-4.1-478.jar","authors":[{"id":3852549,"name":"Vazkii"},{"id":9570609,"name":"wiresegal"}],"primaryAuthor":"Vazkii","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/quark","issuesURL":"https://github.com/Vazkii/Quark/issues","wikiURL":"https://quark.vazkii.net/","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/588/295/256/256/637958240318838626.png","tags":[],"installedFile":{"id":8044924,"fileName":"Quark-4.1-478.jar","fileDate":"2026-05-05T19:58:55.413Z","fileLength":15591088,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8044/924/Quark-4.1-478.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968868,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1608357447,"invalidFingerprint":false},{"foldername":"org","fingerprint":448010777,"invalidFingerprint":false},{"foldername":"aurelienribon","fingerprint":541847184,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1159635870,"invalidFingerprint":false},{"foldername":".cache","fingerprint":48930058,"invalidFingerprint":false},{"foldername":"quark_integrations.mixins.json","fingerprint":817758403,"invalidFingerprint":false},{"foldername":"proxypack.mcmeta","fingerprint":1081534585,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":3152271986,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1500272464,"invalidFingerprint":false},{"foldername":"proxypack.png","fingerprint":3491929732,"invalidFingerprint":false},{"foldername":"quark.mixins.json","fingerprint":1349774055,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2324007818,"invalidFingerprint":false},{"foldername":"data","fingerprint":19377247,"invalidFingerprint":false}],"packageFingerprint":315923211,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":243121,"fileNameOnDisk":"Quark-4.1-478.jar","hashes":[{"type":1,"value":"22e2c53f44b3e437b423fa16705a880d72ffbbe7"},{"type":2,"value":"4721e664a29d4d57fc0eaf5283d05ff9"}]},"dateInstalled":"2026-05-07T23:22:52.5781722Z","dateUpdated":"2026-05-07T23:22:52.5842353Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Quark-4.1-478.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8044924,"fileName":"Quark-4.1-478.jar","fileDate":"2026-05-05T19:58:55.413Z","fileLength":15591088,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8044/924/Quark-4.1-478.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":968868,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1608357447,"invalidFingerprint":false},{"foldername":"org","fingerprint":448010777,"invalidFingerprint":false},{"foldername":"aurelienribon","fingerprint":541847184,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1159635870,"invalidFingerprint":false},{"foldername":".cache","fingerprint":48930058,"invalidFingerprint":false},{"foldername":"quark_integrations.mixins.json","fingerprint":817758403,"invalidFingerprint":false},{"foldername":"proxypack.mcmeta","fingerprint":1081534585,"invalidFingerprint":false},{"foldername":"datapacks","fingerprint":3152271986,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1500272464,"invalidFingerprint":false},{"foldername":"proxypack.png","fingerprint":3491929732,"invalidFingerprint":false},{"foldername":"quark.mixins.json","fingerprint":1349774055,"invalidFingerprint":false},{"foldername":"resourcepacks","fingerprint":2324007818,"invalidFingerprint":false},{"foldername":"data","fingerprint":19377247,"invalidFingerprint":false}],"packageFingerprint":315923211,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":243121,"fileNameOnDisk":"Quark-4.1-478.jar","hashes":[{"type":1,"value":"22e2c53f44b3e437b423fa16705a880d72ffbbe7"},{"type":2,"value":"4721e664a29d4d57fc0eaf5283d05ff9"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"45e59325-0a84-4965-a0a8-993b2da2df24","modSource":0,"addonID":532610,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"oωo (owo-lib)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","authors":[{"id":35371227,"name":"gliscowo"}],"primaryAuthor":"gliscowo","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/owo-lib","issuesURL":"https://github.com/glisco03/owo-lib/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/439/260/256/256/637686200233061049.png","tags":[],"installedFile":{"id":6785734,"fileName":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","fileDate":"2025-07-19T00:45:21.91Z","fileLength":1221583,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6785/734/owo-lib-neoforge-0.12.15.5-beta.1%2b1.21.jar","isAlternate":false,"alternateFileId":6785735,"serverPackFileId":0,"dependencies":[{"addonId":889079,"type":1}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":819452121,"invalidFingerprint":false},{"foldername":"LICENSE_owo-lib-neoforge","fingerprint":516078654,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":3662089215,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1509669401,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":785070536,"invalidFingerprint":false},{"foldername":"io","fingerprint":2600215563,"invalidFingerprint":false},{"foldername":"owo.accesswidener","fingerprint":2477971041,"invalidFingerprint":false},{"foldername":"owo.mixins.json","fingerprint":3665693971,"invalidFingerprint":false}],"packageFingerprint":990455198,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":532610,"fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","hashes":[{"type":1,"value":"48dda11a6710591cf162bdbedf982ea21dd1f2ed"},{"type":2,"value":"4c8323c3d0493f7e82a2287e5ca9df7f"}]},"dateInstalled":"2026-05-07T22:53:53.5284585Z","dateUpdated":"2026-05-07T22:53:53.5304907Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6785734,"fileName":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","fileDate":"2025-07-19T00:45:21.91Z","fileLength":1221583,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6785/734/owo-lib-neoforge-0.12.15.5-beta.1%2b1.21.jar","isAlternate":false,"alternateFileId":6785735,"serverPackFileId":0,"dependencies":[{"addonId":889079,"type":1}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":819452121,"invalidFingerprint":false},{"foldername":"LICENSE_owo-lib-neoforge","fingerprint":516078654,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":3662089215,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1509669401,"invalidFingerprint":false},{"foldername":"interfaces.json","fingerprint":785070536,"invalidFingerprint":false},{"foldername":"io","fingerprint":2600215563,"invalidFingerprint":false},{"foldername":"owo.accesswidener","fingerprint":2477971041,"invalidFingerprint":false},{"foldername":"owo.mixins.json","fingerprint":3665693971,"invalidFingerprint":false}],"packageFingerprint":990455198,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":532610,"fileNameOnDisk":"owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar","hashes":[{"type":1,"value":"48dda11a6710591cf162bdbedf982ea21dd1f2ed"},{"type":2,"value":"4c8323c3d0493f7e82a2287e5ca9df7f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"309086e2-d220-4bb9-8726-2e146ce43ce9","modSource":0,"addonID":888288,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,4465,5193],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds - Structures","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","authors":[{"id":101842572,"name":"Lupin"}],"primaryAuthor":"Lupin","primaryCategoryId":5193,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/loading-backgrounds-structures","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1492/409/256/256/638969816572464931.webp","tags":[],"installedFile":{"id":7228395,"fileName":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:59:48.38Z","fileLength":55570868,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/395/loadingbackgrounds_structures-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1336439579,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1952494468,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":173428093,"invalidFingerprint":false}],"packageFingerprint":2703244904,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888288,"fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"6a56a36686a55ed9d6e4b9d8b9f36d04338495d9"},{"type":2,"value":"c04bf18745d4dbe53cb0cef4396bf1bc"}]},"dateInstalled":"2026-05-07T21:58:24.7645391Z","dateUpdated":"2026-05-07T21:58:24.7798674Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\loadingbackgrounds_structures-1.21.X-3.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7228395,"fileName":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","fileDate":"2025-11-16T11:59:48.38Z","fileLength":55570868,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7228/395/loadingbackgrounds_structures-1.21.X-3.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1336439579,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":1952494468,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":173428093,"invalidFingerprint":false}],"packageFingerprint":2703244904,"gameVersion":["1.21","1.21.8","1.21.5","1.21.4","1.21.1","1.21.6","1.21.3","1.21.7","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":888288,"fileNameOnDisk":"loadingbackgrounds_structures-1.21.X-3.0.0.zip","hashes":[{"type":1,"value":"6a56a36686a55ed9d6e4b9d8b9f36d04338495d9"},{"type":2,"value":"c04bf18745d4dbe53cb0cef4396bf1bc"}]},"allowModDistribution":false,"exportDisabledReason":0,"groupId":null},{"instanceID":"2f71fc3d-2235-4097-8ca2-2ee7c3d19b1b","modSource":0,"addonID":257814,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"CreativeCore","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","authors":[{"id":8685730,"name":"CreativeMD"}],"primaryAuthor":"CreativeMD","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/creativecore","issuesURL":"https://github.com/CreativeMD/CreativeCore/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/86/225/256/256/636207446427836220.png","tags":[],"installedFile":{"id":8004779,"fileName":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","fileDate":"2026-04-28T11:32:11.477Z","fileLength":1216443,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8004/779/CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","isAlternate":false,"alternateFileId":8004780,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3247265611,"invalidFingerprint":false},{"foldername":"team","fingerprint":2262564845,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402582953,"invalidFingerprint":false},{"foldername":"creativecore.forge.mixins.json","fingerprint":3478165571,"invalidFingerprint":false},{"foldername":"creativecore.mixins.json","fingerprint":1356086701,"invalidFingerprint":false},{"foldername":"creativecore.png","fingerprint":1124175186,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565355498,"invalidFingerprint":false}],"packageFingerprint":1531775076,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":257814,"fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","hashes":[{"type":1,"value":"c3f1aa493ce0d3d60ba76e2b2d6b1dd65f60bde6"},{"type":2,"value":"294370b4063e84654bc9c662a33b6a5b"}]},"dateInstalled":"2026-05-07T22:47:03.7274599Z","dateUpdated":"2026-05-07T22:47:03.7288977Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8004779,"fileName":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","fileDate":"2026-04-28T11:32:11.477Z","fileLength":1216443,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8004/779/CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","isAlternate":false,"alternateFileId":8004780,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3247265611,"invalidFingerprint":false},{"foldername":"team","fingerprint":2262564845,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1402582953,"invalidFingerprint":false},{"foldername":"creativecore.forge.mixins.json","fingerprint":3478165571,"invalidFingerprint":false},{"foldername":"creativecore.mixins.json","fingerprint":1356086701,"invalidFingerprint":false},{"foldername":"creativecore.png","fingerprint":1124175186,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1565355498,"invalidFingerprint":false}],"packageFingerprint":1531775076,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":257814,"fileNameOnDisk":"CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar","hashes":[{"type":1,"value":"c3f1aa493ce0d3d60ba76e2b2d6b1dd65f60bde6"},{"type":2,"value":"294370b4063e84654bc9c662a33b6a5b"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"788a31fb-efa0-4544-b446-68757634d7bd","modSource":0,"addonID":291874,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[416,407,424],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Serene Seasons","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","authors":[{"id":9704465,"name":"TheAdubbz"},{"id":6883388,"name":"Forstride"}],"primaryAuthor":"TheAdubbz","primaryCategoryId":416,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/serene-seasons","issuesURL":"https://github.com/Glitchfiend/SereneSeasons/issues","wikiURL":"https://github.com/Glitchfiend/SereneSeasons/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/881/200/256/256/638311173747555092.png","tags":[],"installedFile":{"id":6182596,"fileName":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","fileDate":"2025-02-11T19:35:48.86Z","fileLength":159205,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6182/596/SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1976747111,"invalidFingerprint":false},{"foldername":"sereneseasons","fingerprint":902611544,"invalidFingerprint":false},{"foldername":"sereneseasons.accesswidener","fingerprint":2881013965,"invalidFingerprint":false},{"foldername":"sereneseasons.neoforge.mixins.json","fingerprint":275329139,"invalidFingerprint":false},{"foldername":"data","fingerprint":1943920533,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2737650996,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1630887287,"invalidFingerprint":false},{"foldername":"sereneseasons.mixins.json","fingerprint":1526950209,"invalidFingerprint":false},{"foldername":"sereneseasons_logo.png","fingerprint":2591895052,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1101028231,"invalidFingerprint":false}],"packageFingerprint":341671071,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":291874,"fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","hashes":[{"type":1,"value":"8b9034d4c43f880b1f1ebdd3943219de0b0bc4c5"},{"type":2,"value":"2928f502140c1ff72adf2df7642d9ba6"}]},"dateInstalled":"2026-05-07T22:48:12.7793975Z","dateUpdated":"2026-05-07T22:48:13.1968922Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\SereneSeasons-neoforge-1.21.1-10.1.0.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6182596,"fileName":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","fileDate":"2025-02-11T19:35:48.86Z","fileLength":159205,"releaseType":2,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6182/596/SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":955399,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1976747111,"invalidFingerprint":false},{"foldername":"sereneseasons","fingerprint":902611544,"invalidFingerprint":false},{"foldername":"sereneseasons.accesswidener","fingerprint":2881013965,"invalidFingerprint":false},{"foldername":"sereneseasons.neoforge.mixins.json","fingerprint":275329139,"invalidFingerprint":false},{"foldername":"data","fingerprint":1943920533,"invalidFingerprint":false},{"foldername":".cache","fingerprint":2737650996,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1630887287,"invalidFingerprint":false},{"foldername":"sereneseasons.mixins.json","fingerprint":1526950209,"invalidFingerprint":false},{"foldername":"sereneseasons_logo.png","fingerprint":2591895052,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1101028231,"invalidFingerprint":false}],"packageFingerprint":341671071,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":291874,"fileNameOnDisk":"SereneSeasons-neoforge-1.21.1-10.1.0.3.jar","hashes":[{"type":1,"value":"8b9034d4c43f880b1f1ebdd3943219de0b0bc4c5"},{"type":2,"value":"2928f502140c1ff72adf2df7642d9ba6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"137eceb0-638e-405d-98e5-115d4a71a82f","modSource":0,"addonID":422301,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[420,434],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Sophisticated Backpacks","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","authors":[{"id":13011800,"name":"P3pp3rF1y"}],"primaryAuthor":"P3pp3rF1y","primaryCategoryId":420,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/sophisticated-backpacks","issuesURL":"https://github.com/P3pp3rF1y/SophisticatedBackpacks/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/375/56/256/256/637549610342642859.png","tags":[],"installedFile":{"id":8034895,"fileName":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","fileDate":"2026-05-03T21:56:40.073Z","fileLength":1023758,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/895/sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2},{"addonId":618298,"type":3},{"addonId":235577,"type":2},{"addonId":309927,"type":2},{"addonId":513769,"type":2},{"addonId":233071,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":944465999,"invalidFingerprint":false},{"foldername":"net","fingerprint":3077487566,"invalidFingerprint":false},{"foldername":"assets","fingerprint":792390393,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1102936719,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2552684475,"invalidFingerprint":false},{"foldername":"data","fingerprint":3427607510,"invalidFingerprint":false}],"packageFingerprint":1820929664,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":422301,"fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","hashes":[{"type":1,"value":"52cd2b8ddbb79509b5b268849658097ebb8ed947"},{"type":2,"value":"8dfae39d2266f457798791c74deff8e6"}]},"dateInstalled":"2026-05-07T22:44:42.7361296Z","dateUpdated":"2026-05-07T22:44:42.7381227Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\sophisticatedbackpacks-1.21.1-3.25.44.1736.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8034895,"fileName":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","fileDate":"2026-05-03T21:56:40.073Z","fileLength":1023758,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8034/895/sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":238222,"type":2},{"addonId":618298,"type":3},{"addonId":235577,"type":2},{"addonId":309927,"type":2},{"addonId":513769,"type":2},{"addonId":233071,"type":2},{"addonId":964817,"type":2},{"addonId":456956,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":944465999,"invalidFingerprint":false},{"foldername":"net","fingerprint":3077487566,"invalidFingerprint":false},{"foldername":"assets","fingerprint":792390393,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1102936719,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2552684475,"invalidFingerprint":false},{"foldername":"data","fingerprint":3427607510,"invalidFingerprint":false}],"packageFingerprint":1820929664,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":422301,"fileNameOnDisk":"sophisticatedbackpacks-1.21.1-3.25.44.1736.jar","hashes":[{"type":1,"value":"52cd2b8ddbb79509b5b268849658097ebb8ed947"},{"type":2,"value":"8dfae39d2266f457798791c74deff8e6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"4bf64d1f-7e22-4911-8b36-9c4e06f6f123","modSource":0,"addonID":245755,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[414,422,419,435],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Waystones","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","authors":[{"id":12099681,"name":"BlayTheNinth"}],"primaryAuthor":"BlayTheNinth","primaryCategoryId":414,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/waystones","issuesURL":"https://github.com/TwelveIterations/Waystones/issues","wikiURL":"https://mods.twelveiterations.com/mc/waystones","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1107/108/256/256/638657104456838765.png","tags":[],"installedFile":{"id":7966157,"fileName":"waystones-neoforge-1.21.1-21.1.30.jar","fileDate":"2026-04-22T10:25:41.083Z","fileLength":877356,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/157/waystones-neoforge-1.21.1-21.1.30.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2418406938,"invalidFingerprint":false},{"foldername":"net","fingerprint":14642118,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4230722188,"invalidFingerprint":false},{"foldername":"data","fingerprint":3199261378,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4101434448,"invalidFingerprint":false},{"foldername":"waystones.png","fingerprint":3621685521,"invalidFingerprint":false},{"foldername":"waystones.mixins.json","fingerprint":1757013245,"invalidFingerprint":false},{"foldername":"waystones.neoforge.mixins.json","fingerprint":3074898549,"invalidFingerprint":false},{"foldername":"waila_plugins.json","fingerprint":2657459217,"invalidFingerprint":false},{"foldername":"LICENSE_Waystones","fingerprint":3262730626,"invalidFingerprint":false}],"packageFingerprint":2011091434,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":245755,"fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","hashes":[{"type":1,"value":"1321fbbe1484498b481ef05b6aef374b07fe6a23"},{"type":2,"value":"9863a0076b33e3fa7b066d9a87099580"}]},"dateInstalled":"2026-05-07T22:44:38.9149136Z","dateUpdated":"2026-05-07T22:44:38.9181841Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\waystones-neoforge-1.21.1-21.1.30.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7966157,"fileName":"waystones-neoforge-1.21.1-21.1.30.jar","fileDate":"2026-04-22T10:25:41.083Z","fileLength":877356,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7966/157/waystones-neoforge-1.21.1-21.1.30.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":531761,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2418406938,"invalidFingerprint":false},{"foldername":"net","fingerprint":14642118,"invalidFingerprint":false},{"foldername":"assets","fingerprint":4230722188,"invalidFingerprint":false},{"foldername":"data","fingerprint":3199261378,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4101434448,"invalidFingerprint":false},{"foldername":"waystones.png","fingerprint":3621685521,"invalidFingerprint":false},{"foldername":"waystones.mixins.json","fingerprint":1757013245,"invalidFingerprint":false},{"foldername":"waystones.neoforge.mixins.json","fingerprint":3074898549,"invalidFingerprint":false},{"foldername":"waila_plugins.json","fingerprint":2657459217,"invalidFingerprint":false},{"foldername":"LICENSE_Waystones","fingerprint":3262730626,"invalidFingerprint":false}],"packageFingerprint":2011091434,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":245755,"fileNameOnDisk":"waystones-neoforge-1.21.1-21.1.30.jar","hashes":[{"type":1,"value":"1321fbbe1484498b481ef05b6aef374b07fe6a23"},{"type":2,"value":"9863a0076b33e3fa7b066d9a87099580"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"31c6aa14-0156-48ae-8dcc-b09896fd8d6d","modSource":0,"addonID":398521,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[436,424,416],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Farmer's Delight","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","authors":[{"id":101274836,"name":"vectorwing"}],"primaryAuthor":"vectorwing","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/farmers-delight","issuesURL":"https://github.com/vectorwing/FarmersDelight/issues","wikiURL":"https://github.com/vectorwing/FarmersDelight/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/396/11/256/256/637595005615179370.png","tags":[],"installedFile":{"id":8007613,"fileName":"FarmersDelight-1.21.1-1.3.1.jar","fileDate":"2026-04-28T23:36:59.26Z","fileLength":3124506,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8007/613/FarmersDelight-1.21.1-1.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":906165429,"invalidFingerprint":false},{"foldername":"vectorwing","fingerprint":2588209880,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2450840978,"invalidFingerprint":false},{"foldername":"data","fingerprint":3387193386,"invalidFingerprint":false},{"foldername":"farmersdelight.mixins.json","fingerprint":3352035160,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1179971505,"invalidFingerprint":false}],"packageFingerprint":4238055937,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":398521,"fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","hashes":[{"type":1,"value":"49477fafca740e7ae348d934b552fb313358e8fe"},{"type":2,"value":"ca20746e84b96587248b08ae9bc7a4a1"}]},"dateInstalled":"2026-05-07T22:45:09.6199455Z","dateUpdated":"2026-05-07T22:45:09.6222045Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\FarmersDelight-1.21.1-1.3.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8007613,"fileName":"FarmersDelight-1.21.1-1.3.1.jar","fileDate":"2026-04-28T23:36:59.26Z","fileLength":3124506,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8007/613/FarmersDelight-1.21.1-1.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":906165429,"invalidFingerprint":false},{"foldername":"vectorwing","fingerprint":2588209880,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2450840978,"invalidFingerprint":false},{"foldername":"data","fingerprint":3387193386,"invalidFingerprint":false},{"foldername":"farmersdelight.mixins.json","fingerprint":3352035160,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":1179971505,"invalidFingerprint":false}],"packageFingerprint":4238055937,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":398521,"fileNameOnDisk":"FarmersDelight-1.21.1-1.3.1.jar","hashes":[{"type":1,"value":"49477fafca740e7ae348d934b552fb313358e8fe"},{"type":2,"value":"ca20746e84b96587248b08ae9bc7a4a1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9c572686-ffe7-491f-9cd0-f58d99416968","modSource":0,"addonID":248787,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[423,436],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AppleSkin","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","authors":[{"id":13914149,"name":"squeek502"}],"primaryAuthor":"squeek502","primaryCategoryId":436,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/appleskin","issuesURL":"https://github.com/squeek502/AppleSkin/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/47/527/256/256/636066936394500688.png","tags":[],"installedFile":{"id":7854442,"fileName":"appleskin-neoforge-mc1.21-3.0.9.jar","fileDate":"2026-04-01T04:44:43.28Z","fileLength":75804,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/442/appleskin-neoforge-mc1.21-3.0.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1402117717,"invalidFingerprint":false},{"foldername":"squeek","fingerprint":1948646999,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3071333817,"invalidFingerprint":false},{"foldername":"appleskin.png","fingerprint":1383794256,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3550300041,"invalidFingerprint":false}],"packageFingerprint":3551532297,"gameVersion":["1.21","1.21.1","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":248787,"fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","hashes":[{"type":1,"value":"81cf0e668f991f83ac8820c386fbd6c9c3602246"},{"type":2,"value":"db5fe7619d502cf5b9bc972a955cd3bc"}]},"dateInstalled":"2026-05-07T22:35:20.55543Z","dateUpdated":"2026-05-07T22:35:20.5570005Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\appleskin-neoforge-mc1.21-3.0.9.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7854442,"fileName":"appleskin-neoforge-mc1.21-3.0.9.jar","fileDate":"2026-04-01T04:44:43.28Z","fileLength":75804,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7854/442/appleskin-neoforge-mc1.21-3.0.9.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1402117717,"invalidFingerprint":false},{"foldername":"squeek","fingerprint":1948646999,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3071333817,"invalidFingerprint":false},{"foldername":"appleskin.png","fingerprint":1383794256,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3550300041,"invalidFingerprint":false}],"packageFingerprint":3551532297,"gameVersion":["1.21","1.21.1","NeoForge","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":248787,"fileNameOnDisk":"appleskin-neoforge-mc1.21-3.0.9.jar","hashes":[{"type":1,"value":"81cf0e668f991f83ac8820c386fbd6c9c3602246"},{"type":2,"value":"db5fe7619d502cf5b9bc972a955cd3bc"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"a85a4d49-1a04-4356-a810-bd97a79c4ec3","modSource":0,"addonID":969926,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,405,404,4465,393],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Beautiful Enchanted Books","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":101158803,"name":"arkadyaaa"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/beautiful-enchanted-books","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1034/7/256/256/638557790324640117.png","tags":[],"installedFile":{"id":7186843,"fileName":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","fileDate":"2025-11-04T20:34:51.733Z","fileLength":1481276,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7186/843/Beautiful%20Enchanted%20Books%20-%20MC%201.21.1%20-%208.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.png","fingerprint":3621463897,"invalidFingerprint":false},{"foldername":"assets","fingerprint":941511318,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4269189600,"invalidFingerprint":false}],"packageFingerprint":2251500048,"gameVersion":["1.21","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":969926,"fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","hashes":[{"type":1,"value":"2365ef13a4b01c11ae4341eb346a707d5500fdf8"},{"type":2,"value":"3c22aaa8f4a662c3234227957afea625"}]},"dateInstalled":"2026-05-07T21:58:46.2791336Z","dateUpdated":"2026-05-07T21:58:46.2803882Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7186843,"fileName":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","fileDate":"2025-11-04T20:34:51.733Z","fileLength":1481276,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7186/843/Beautiful%20Enchanted%20Books%20-%20MC%201.21.1%20-%208.0.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"pack.png","fingerprint":3621463897,"invalidFingerprint":false},{"foldername":"assets","fingerprint":941511318,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":4269189600,"invalidFingerprint":false}],"packageFingerprint":2251500048,"gameVersion":["1.21","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":969926,"fileNameOnDisk":"Beautiful Enchanted Books - MC 1.21.1 - 8.0.0.zip","hashes":[{"type":1,"value":"2365ef13a4b01c11ae4341eb346a707d5500fdf8"},{"type":2,"value":"3c22aaa8f4a662c3234227957afea625"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"8776050d-fdc8-4235-828d-e02f193f3a0c","modSource":0,"addonID":882539,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[5191,6814,421,424,426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Loading Backgrounds","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","authors":[{"id":101842572,"name":"Lupin"},{"id":102790755,"name":"luavixen"},{"id":108329762,"name":"Skatric_"}],"primaryAuthor":"Lupin","primaryCategoryId":424,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/loading-backgrounds","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/982/463/256/256/638490256256247666.png","tags":[],"installedFile":{"id":6843634,"fileName":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","fileDate":"2025-08-03T17:17:35.27Z","fileLength":173392,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6843/634/loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3035020781,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3048128871,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-icon.png","fingerprint":1658491222,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-mixins.json","fingerprint":3354045684,"invalidFingerprint":false},{"foldername":"lupin-loadingbackgrounds-common-1.20.2-common-refmap.json","fingerprint":2995555857,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2499582814,"invalidFingerprint":false}],"packageFingerprint":1461452846,"gameVersion":["1.20.2","1.21","1.20.5","NeoForge","1.20.3","1.20.6","1.20.4","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882539,"fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","hashes":[{"type":1,"value":"4a84d25201376f369045e4bec5263c7f0666b457"},{"type":2,"value":"de2b469a6bc78a5c27b435d16f464949"}]},"dateInstalled":"2026-05-07T21:58:34.2411747Z","dateUpdated":"2026-05-07T21:58:34.2425137Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6843634,"fileName":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","fileDate":"2025-08-03T17:17:35.27Z","fileLength":173392,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6843/634/loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3035020781,"invalidFingerprint":false},{"foldername":"dev","fingerprint":3048128871,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-icon.png","fingerprint":1658491222,"invalidFingerprint":false},{"foldername":"loadingbackgrounds-mixins.json","fingerprint":3354045684,"invalidFingerprint":false},{"foldername":"lupin-loadingbackgrounds-common-1.20.2-common-refmap.json","fingerprint":2995555857,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2499582814,"invalidFingerprint":false}],"packageFingerprint":1461452846,"gameVersion":["1.20.2","1.21","1.20.5","NeoForge","1.20.3","1.20.6","1.20.4","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":882539,"fileNameOnDisk":"loadingbackgrounds-2.0.0-neoforge-1.20.2_to_1.21.1.jar","hashes":[{"type":1,"value":"4a84d25201376f369045e4bec5263c7f0666b457"},{"type":2,"value":"de2b469a6bc78a5c27b435d16f464949"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"60f000a4-8192-4db9-8f18-5196b8c227b7","modSource":0,"addonID":233019,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"AI Improvements","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","authors":[{"id":7270863,"name":"QueenOfMissiles"}],"primaryAuthor":"QueenOfMissiles","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/ai-improvements","issuesURL":"https://github.com/BuiltBrokenModding/AI-Improvements/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/21/699/256/256/635731173265581096.png","tags":[],"installedFile":{"id":5426792,"fileName":"AI-Improvements-1.21-0.5.3.jar","fileDate":"2024-06-14T06:55:01.61Z","fileLength":28984,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5426/792/AI-Improvements-1.21-0.5.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1822189550,"invalidFingerprint":false},{"foldername":"com","fingerprint":3430159950,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1560577833,"invalidFingerprint":false}],"packageFingerprint":3163557722,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":233019,"fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","hashes":[{"type":1,"value":"b4a8e11384454bcc341043b251db7fb5afdfdf45"},{"type":2,"value":"fd80ae9f154ac230e60fb138f9b5453f"}]},"dateInstalled":"2026-05-07T21:58:04.1076106Z","dateUpdated":"2026-05-07T21:58:04.1087471Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\AI-Improvements-1.21-0.5.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5426792,"fileName":"AI-Improvements-1.21-0.5.3.jar","fileDate":"2024-06-14T06:55:01.61Z","fileLength":28984,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5426/792/AI-Improvements-1.21-0.5.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1822189550,"invalidFingerprint":false},{"foldername":"com","fingerprint":3430159950,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1560577833,"invalidFingerprint":false}],"packageFingerprint":3163557722,"gameVersion":["1.21","Client","1.21.4","NeoForge","1.21.3","1.21.1","Server","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":233019,"fileNameOnDisk":"AI-Improvements-1.21-0.5.3.jar","hashes":[{"type":1,"value":"b4a8e11384454bcc341043b251db7fb5afdfdf45"},{"type":2,"value":"fd80ae9f154ac230e60fb138f9b5453f"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"03b7e0bd-80be-46be-95aa-3b73c0d83c88","modSource":0,"addonID":459701,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,423,5191,425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Catalogue","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","authors":[{"id":7244595,"name":"MrCrayfish"}],"primaryAuthor":"MrCrayfish","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/catalogue","issuesURL":"https://github.com/MrCrayfish/Catalogue/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/871/330/256/256/638288815001830113.png","tags":[],"installedFile":{"id":6926815,"fileName":"catalogue-neoforge-1.21.1-1.11.2.jar","fileDate":"2025-08-25T14:04:06.81Z","fileLength":302750,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/815/catalogue-neoforge-1.21.1-1.11.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":457570,"type":2}],"isAvailable":true,"modules":[{"foldername":"LICENSE_catalogue","fingerprint":2228520401,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3157043706,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3435018633,"invalidFingerprint":false},{"foldername":"com","fingerprint":2403037888,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":817107357,"invalidFingerprint":false}],"packageFingerprint":3329807613,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":459701,"fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","hashes":[{"type":1,"value":"6d67f855c20bc6392763cfb22e1152da4e8015b4"},{"type":2,"value":"cc87e5716eb52398b2c46e4032126de4"}]},"dateInstalled":"2026-05-07T21:58:36.0434778Z","dateUpdated":"2026-05-07T21:58:36.0448444Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\catalogue-neoforge-1.21.1-1.11.2.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6926815,"fileName":"catalogue-neoforge-1.21.1-1.11.2.jar","fileDate":"2025-08-25T14:04:06.81Z","fileLength":302750,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/815/catalogue-neoforge-1.21.1-1.11.2.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":457570,"type":2}],"isAvailable":true,"modules":[{"foldername":"LICENSE_catalogue","fingerprint":2228520401,"invalidFingerprint":false},{"foldername":"META-INF","fingerprint":3157043706,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3435018633,"invalidFingerprint":false},{"foldername":"com","fingerprint":2403037888,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":817107357,"invalidFingerprint":false}],"packageFingerprint":3329807613,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":459701,"fileNameOnDisk":"catalogue-neoforge-1.21.1-1.11.2.jar","hashes":[{"type":1,"value":"6d67f855c20bc6392763cfb22e1152da4e8015b4"},{"type":2,"value":"cc87e5716eb52398b2c46e4032126de4"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"75578b64-d0ab-4c77-9b81-a1f39ff5b952","modSource":0,"addonID":1415723,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Citadel (Unofficial Port)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"citadel-1.21.1-2.7.6.jar","authors":[{"id":130596600,"name":"Raguto"}],"primaryAuthor":"Raguto","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/citadel-1-21-1-port","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1585/203/256/256/639025963417433066.png","tags":[],"installedFile":{"id":7982052,"fileName":"citadel-1.21.1-2.7.6.jar","fileDate":"2026-04-25T11:58:32.843Z","fileLength":3028943,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7982/52/citadel-1.21.1-2.7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3735960462,"invalidFingerprint":false},{"foldername":"com","fingerprint":912630898,"invalidFingerprint":false},{"foldername":"assets","fingerprint":434321890,"invalidFingerprint":false},{"foldername":"citadel.mixins.json","fingerprint":2773772769,"invalidFingerprint":false},{"foldername":"citadel.png","fingerprint":1603167710,"invalidFingerprint":false},{"foldername":"data","fingerprint":1022396413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2373386176,"invalidFingerprint":false},{"foldername":"net","fingerprint":610374922,"invalidFingerprint":false},{"foldername":"git.properties","fingerprint":700042850,"invalidFingerprint":false},{"foldername":"org","fingerprint":2567598862,"invalidFingerprint":false}],"packageFingerprint":3647258928,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1415723,"fileNameOnDisk":"citadel-1.21.1-2.7.6.jar","hashes":[{"type":1,"value":"e0392370117ec16a721f8d65728944398de77607"},{"type":2,"value":"f489330f610335c782c61ce8815b16f1"}]},"dateInstalled":"2026-05-07T23:28:44.4185252Z","dateUpdated":"2026-05-07T23:28:44.4209019Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\citadel-1.21.1-2.7.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7982052,"fileName":"citadel-1.21.1-2.7.6.jar","fileDate":"2026-04-25T11:58:32.843Z","fileLength":3028943,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7982/52/citadel-1.21.1-2.7.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3735960462,"invalidFingerprint":false},{"foldername":"com","fingerprint":912630898,"invalidFingerprint":false},{"foldername":"assets","fingerprint":434321890,"invalidFingerprint":false},{"foldername":"citadel.mixins.json","fingerprint":2773772769,"invalidFingerprint":false},{"foldername":"citadel.png","fingerprint":1603167710,"invalidFingerprint":false},{"foldername":"data","fingerprint":1022396413,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":2373386176,"invalidFingerprint":false},{"foldername":"net","fingerprint":610374922,"invalidFingerprint":false},{"foldername":"git.properties","fingerprint":700042850,"invalidFingerprint":false},{"foldername":"org","fingerprint":2567598862,"invalidFingerprint":false}],"packageFingerprint":3647258928,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1415723,"fileNameOnDisk":"citadel-1.21.1-2.7.6.jar","hashes":[{"type":1,"value":"e0392370117ec16a721f8d65728944398de77607"},{"type":2,"value":"f489330f610335c782c61ce8815b16f1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9d02c643-5f4f-4ad0-ae2a-757688a06a4d","modSource":0,"addonID":1289099,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[426],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Every Compat (Gems Realm)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","authors":[{"id":12753167,"name":"xelbayria"}],"primaryAuthor":"xelbayria","primaryCategoryId":426,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/gems-realm","issuesURL":"https://github.com/Xelbayria/GemsRealm/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1320/59/256/256/638858307611587571_animated.gif","tags":[],"installedFile":{"id":8020040,"fileName":"gemsrealm-1.21-2.11.3-neoforge.jar","fileDate":"2026-05-01T08:22:58.097Z","fileLength":872536,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8020/40/gemsrealm-1.21-2.11.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":860325,"type":2},{"addonId":453925,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":846508,"type":2},{"addonId":628539,"type":3},{"addonId":1310308,"type":2},{"addonId":610032,"type":2},{"addonId":351725,"type":2},{"addonId":363569,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1237135732,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2319941563,"invalidFingerprint":false},{"foldername":"architectury_inject_gemsrealm_common_4c4400bb4b1e4c5fa00fc9adf57c0b57_f2ff59cb25e56c2daec52ba02a5830ce884d4301be3a88de3b8c2fbf426568cdgemsrealm1212113devjar","fingerprint":1200949374,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1840774418,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":2062508550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":60683870,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1289099,"fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","hashes":[{"type":1,"value":"f5103b91488597ccc856aa85285f9ec6958f34bc"},{"type":2,"value":"5017cc8ea580a21ce97a7c41101fc2e7"}]},"dateInstalled":"2026-05-07T23:01:12.5446519Z","dateUpdated":"2026-05-07T23:01:12.5466407Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\gemsrealm-1.21-2.11.3-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":8020040,"fileName":"gemsrealm-1.21-2.11.3-neoforge.jar","fileDate":"2026-05-01T08:22:58.097Z","fileLength":872536,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/8020/40/gemsrealm-1.21-2.11.3-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":860325,"type":2},{"addonId":453925,"type":2},{"addonId":499980,"type":3},{"addonId":328085,"type":2},{"addonId":846508,"type":2},{"addonId":628539,"type":3},{"addonId":1310308,"type":2},{"addonId":610032,"type":2},{"addonId":351725,"type":2},{"addonId":363569,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1237135732,"invalidFingerprint":false},{"foldername":"architectury.common.json","fingerprint":2319941563,"invalidFingerprint":false},{"foldername":"architectury_inject_gemsrealm_common_4c4400bb4b1e4c5fa00fc9adf57c0b57_f2ff59cb25e56c2daec52ba02a5830ce884d4301be3a88de3b8c2fbf426568cdgemsrealm1212113devjar","fingerprint":1200949374,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1840774418,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":122586944,"invalidFingerprint":false},{"foldername":"net","fingerprint":2062508550,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3051426763,"invalidFingerprint":false}],"packageFingerprint":60683870,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1289099,"fileNameOnDisk":"gemsrealm-1.21-2.11.3-neoforge.jar","hashes":[{"type":1,"value":"f5103b91488597ccc856aa85285f9ec6958f34bc"},{"type":2,"value":"5017cc8ea580a21ce97a7c41101fc2e7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"9117b92d-0d1e-457a-bc49-b499a18872fd","modSource":0,"addonID":548115,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,4558,5191,412],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Alternate Current","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","authors":[{"id":101963199,"name":"SpaceWalkerRS"}],"primaryAuthor":"SpaceWalkerRS","primaryCategoryId":4558,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/alternate-current","issuesURL":"https://github.com/SpaceWalkerRS/alternate-current/issues","wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/456/903/256/256/637728514120819434.png","tags":[],"installedFile":{"id":5665477,"fileName":"alternate_current-mc1.21-1.9.0.jar","fileDate":"2024-08-26T15:08:51.89Z","fileLength":50425,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5665/477/alternate_current-mc1.21-1.9.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3580729026,"invalidFingerprint":false},{"foldername":"alternate","fingerprint":1771629927,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1819287746,"invalidFingerprint":false},{"foldername":"alternate-current.mixins.json","fingerprint":3359494202,"invalidFingerprint":false}],"packageFingerprint":4040730689,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":548115,"fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","hashes":[{"type":1,"value":"1201c14362f2bad7062d315f8a9b26afbabd2c9c"},{"type":2,"value":"27530bb4fcd327476406d6e3caf94523"}]},"dateInstalled":"2026-05-07T21:58:47.6913027Z","dateUpdated":"2026-05-07T21:58:47.692377Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\alternate_current-mc1.21-1.9.0.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":5665477,"fileName":"alternate_current-mc1.21-1.9.0.jar","fileDate":"2024-08-26T15:08:51.89Z","fileLength":50425,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/5665/477/alternate_current-mc1.21-1.9.0.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3580729026,"invalidFingerprint":false},{"foldername":"alternate","fingerprint":1771629927,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1819287746,"invalidFingerprint":false},{"foldername":"alternate-current.mixins.json","fingerprint":3359494202,"invalidFingerprint":false}],"packageFingerprint":4040730689,"gameVersion":["1.21","NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":548115,"fileNameOnDisk":"alternate_current-mc1.21-1.9.0.jar","hashes":[{"type":1,"value":"1201c14362f2bad7062d315f8a9b26afbabd2c9c"},{"type":2,"value":"27530bb4fcd327476406d6e3caf94523"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"f84cb194-d746-4b16-b3c0-b2c4322310bb","modSource":0,"addonID":511319,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Reese's Sodium Options","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","authors":[{"id":101292193,"name":"FlashyReese"}],"primaryAuthor":"FlashyReese","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/reeses-sodium-options","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/414/599/256/256/637636962431399112.png","tags":[],"installedFile":{"id":6091021,"fileName":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","fileDate":"2025-01-15T20:35:53.37Z","fileLength":78451,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6091/21/reeses-sodium-options-neoforge-1.8.3%2bmc1.21.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":447673,"type":2},{"addonId":455508,"type":2},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1745742539,"invalidFingerprint":false},{"foldername":"me","fingerprint":577932017,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1671116850,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":222260298,"invalidFingerprint":false},{"foldername":"reeses-sodium-options.mixins.json","fingerprint":307738624,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":4014633969,"invalidFingerprint":false}],"packageFingerprint":3206533594,"gameVersion":["1.21","1.21.5","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":511319,"fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","hashes":[{"type":1,"value":"b03d05495be28d8cef7a34872941bb8d703d60e6"},{"type":2,"value":"f3a0d7f31993d6f34e90f816f82cbcaf"}]},"dateInstalled":"2026-05-07T21:58:45.6371147Z","dateUpdated":"2026-05-07T21:58:45.6383847Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6091021,"fileName":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","fileDate":"2025-01-15T20:35:53.37Z","fileLength":78451,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6091/21/reeses-sodium-options-neoforge-1.8.3%2bmc1.21.4.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":447673,"type":2},{"addonId":455508,"type":2},{"addonId":394468,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1745742539,"invalidFingerprint":false},{"foldername":"me","fingerprint":577932017,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1671116850,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":222260298,"invalidFingerprint":false},{"foldername":"reeses-sodium-options.mixins.json","fingerprint":307738624,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":4014633969,"invalidFingerprint":false}],"packageFingerprint":3206533594,"gameVersion":["1.21","1.21.5","1.21.4","NeoForge","1.21.3","1.21.1","1.21.2"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":511319,"fileNameOnDisk":"reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar","hashes":[{"type":1,"value":"b03d05495be28d8cef7a34872941bb8d703d60e6"},{"type":2,"value":"f3a0d7f31993d6f34e90f816f82cbcaf"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"0f914fb0-9762-458f-8431-5bacc98a771d","modSource":0,"addonID":1475755,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[425,421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Simply Tooltips","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"SimplyTooltips-neoforge-0.1.3.jar","authors":[{"id":31238923,"name":"sweenuss"}],"primaryAuthor":"sweenuss","primaryCategoryId":425,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/simply-tooltips","issuesURL":null,"wikiURL":null,"thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1701/277/256/256/639080402139087558_animated.gif","tags":[],"installedFile":{"id":7718627,"fileName":"SimplyTooltips-neoforge-0.1.3.jar","fileDate":"2026-03-06T10:34:06.02Z","fileLength":5320037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7718/627/SimplyTooltips-neoforge-0.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3},{"addonId":1005914,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":751694119,"invalidFingerprint":false},{"foldername":"SimplyTooltips-common-common-refmap.json","fingerprint":2887845312,"invalidFingerprint":false},{"foldername":"architectury_inject_simplytooltips_common_293a311c78194c87bd62820f063c5f51_8d4646d13a865e22f317ff331c10742ef9c2a68a7f0b96bb7fbf2d08dbe95929SimplyTooltipscommon013devjar","fingerprint":906042315,"invalidFingerprint":false},{"foldername":"assets","fingerprint":780144130,"invalidFingerprint":false},{"foldername":"data","fingerprint":4189127425,"invalidFingerprint":false},{"foldername":"net","fingerprint":1728193776,"invalidFingerprint":false},{"foldername":"simplytooltips.mixins.json","fingerprint":3957052761,"invalidFingerprint":false}],"packageFingerprint":1710669293,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1475755,"fileNameOnDisk":"SimplyTooltips-neoforge-0.1.3.jar","hashes":[{"type":1,"value":"2bbc2c8b5eb0fcc7ece66e336639a4fd554fd746"},{"type":2,"value":"642f83d1cefeb228cc01b70b744189ca"}]},"dateInstalled":"2026-05-07T23:25:52.4858542Z","dateUpdated":"2026-05-07T23:25:52.488555Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\SimplyTooltips-neoforge-0.1.3.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7718627,"fileName":"SimplyTooltips-neoforge-0.1.3.jar","fileDate":"2026-03-06T10:34:06.02Z","fileLength":5320037,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7718/627/SimplyTooltips-neoforge-0.1.3.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":419699,"type":3},{"addonId":1005914,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":751694119,"invalidFingerprint":false},{"foldername":"SimplyTooltips-common-common-refmap.json","fingerprint":2887845312,"invalidFingerprint":false},{"foldername":"architectury_inject_simplytooltips_common_293a311c78194c87bd62820f063c5f51_8d4646d13a865e22f317ff331c10742ef9c2a68a7f0b96bb7fbf2d08dbe95929SimplyTooltipscommon013devjar","fingerprint":906042315,"invalidFingerprint":false},{"foldername":"assets","fingerprint":780144130,"invalidFingerprint":false},{"foldername":"data","fingerprint":4189127425,"invalidFingerprint":false},{"foldername":"net","fingerprint":1728193776,"invalidFingerprint":false},{"foldername":"simplytooltips.mixins.json","fingerprint":3957052761,"invalidFingerprint":false}],"packageFingerprint":1710669293,"gameVersion":["Client","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1475755,"fileNameOnDisk":"SimplyTooltips-neoforge-0.1.3.jar","hashes":[{"type":1,"value":"2bbc2c8b5eb0fcc7ece66e336639a4fd554fd746"},{"type":2,"value":"642f83d1cefeb228cc01b70b744189ca"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"23fb3f55-390f-4c90-afb9-16311f04afc5","modSource":0,"addonID":688768,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[6484,412,426,420],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Create: Enchantment Industry","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","authors":[{"id":103651564,"name":"DragonsPlus"},{"id":101665330,"name":"MarbleGate"},{"id":102642294,"name":"RaymondBlaze"}],"primaryAuthor":"DragonsPlus","primaryCategoryId":6484,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/create-enchantment-industry","issuesURL":"https://github.com/DragonsPlusMinecraft/CreateEnchantmentIndustry/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1224/199/256/256/638802282774958966.png","tags":[],"installedFile":{"id":7970748,"fileName":"create-enchantment-industry-2.3.1.jar","fileDate":"2026-04-23T05:38:15.267Z","fileLength":684729,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/748/create-enchantment-industry-2.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1216624,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":911849162,"invalidFingerprint":false},{"foldername":"plus","fingerprint":1655801640,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3754098218,"invalidFingerprint":false},{"foldername":"create_enchantment_industry.mixins.json","fingerprint":2866782084,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":833838587,"invalidFingerprint":false},{"foldername":"data","fingerprint":3417059926,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false}],"packageFingerprint":2385602194,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":688768,"fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","hashes":[{"type":1,"value":"e9a57b322459bda9905e4287d2582ad600909b11"},{"type":2,"value":"726c75329cdaa2fdfb1cb07b2f12e034"}]},"dateInstalled":"2026-05-07T22:48:47.8275882Z","dateUpdated":"2026-05-07T22:48:47.8290574Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\create-enchantment-industry-2.3.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7970748,"fileName":"create-enchantment-industry-2.3.1.jar","fileDate":"2026-04-23T05:38:15.267Z","fileLength":684729,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7970/748/create-enchantment-industry-2.3.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":1216624,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":911849162,"invalidFingerprint":false},{"foldername":"plus","fingerprint":1655801640,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3754098218,"invalidFingerprint":false},{"foldername":"create_enchantment_industry.mixins.json","fingerprint":2866782084,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":833838587,"invalidFingerprint":false},{"foldername":"data","fingerprint":3417059926,"invalidFingerprint":false},{"foldername":"LICENSE.txt","fingerprint":3788311694,"invalidFingerprint":false}],"packageFingerprint":2385602194,"gameVersion":["1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":688768,"fileNameOnDisk":"create-enchantment-industry-2.3.1.jar","hashes":[{"type":1,"value":"e9a57b322459bda9905e4287d2582ad600909b11"},{"type":2,"value":"726c75329cdaa2fdfb1cb07b2f12e034"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"3be4275e-ccaa-4243-be83-7d01bf345e41","modSource":0,"addonID":1109361,"gameID":432,"categoryClassID":12,"categorySection":{"id":9,"gameId":432,"name":"Resource Packs","packageType":3,"path":"resourcepacks","initialInclusionPattern":"([^\\/\\\\]+\\.zip)$","extraIncludePattern":"([^\\/\\\\]+\\.zip)$","gameCategoryId":12},"categoryIds":[400,403,404,393,401],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Realistic Animals","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks","fileNameOnDisk":"Realistic Animals - 4.0.zip","authors":[{"id":101842572,"name":"Lupin"},{"id":109518791,"name":"AviArt"}],"primaryAuthor":"Lupin","primaryCategoryId":393,"packageType":3,"webSiteURL":"https://www.curseforge.com/minecraft/texture-packs/realistic-animals","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/1099/937/256/256/638647010872522095.png","tags":[],"installedFile":{"id":7890871,"fileName":"Realistic Animals - 4.0.zip","fileDate":"2026-04-07T17:05:26.007Z","fileLength":364263,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/871/Realistic%20Animals%20-%204.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1620957069,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3479019965,"invalidFingerprint":false}],"packageFingerprint":313675047,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109361,"fileNameOnDisk":"Realistic Animals - 4.0.zip","hashes":[{"type":1,"value":"1244bd6127251904f010d917dd143b0a0d4f8066"},{"type":2,"value":"425f6c838dc74e13c35141c7ce4dbad1"}]},"dateInstalled":"2026-05-07T21:58:44.0032835Z","dateUpdated":"2026-05-07T21:58:44.0049813Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\resourcepacks\\Realistic Animals - 4.0.zip"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7890871,"fileName":"Realistic Animals - 4.0.zip","fileDate":"2026-04-07T17:05:26.007Z","fileLength":364263,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7890/871/Realistic%20Animals%20-%204.0.zip","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"assets","fingerprint":1620957069,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1724043574,"invalidFingerprint":false},{"foldername":"pack.png","fingerprint":3479019965,"invalidFingerprint":false}],"packageFingerprint":313675047,"gameVersion":["1.16.3","1.17.1","1.21","1.16.1","1.18.1","1.16","1.16.5","1.19.3","1.20.2","1.19.4","1.21.8","1.17","1.20.5","1.21.5","1.18","1.21.4","1.20.1","1.20","1.20.6","1.21.1","1.21.6","1.21.3","1.21.7","1.19.1","1.20.4","1.18.2","1.19.2","1.20.3","1.16.2","1.16.4","1.19","1.21.2","1.21.9","1.21.10","1.21.11","26.1","26.1.1","26.1.2"],"sortableGameVersion":[{"gameVersion":"1.16.3","gameVersionName":"1.16.3","gameVersionTypeId":70886},{"gameVersion":"1.17.1","gameVersionName":"1.17.1","gameVersionTypeId":73242},{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.16.1","gameVersionName":"1.16.1","gameVersionTypeId":70886},{"gameVersion":"1.18.1","gameVersionName":"1.18.1","gameVersionTypeId":73250},{"gameVersion":"1.16","gameVersionName":"1.16","gameVersionTypeId":70886},{"gameVersion":"1.16.5","gameVersionName":"1.16.5","gameVersionTypeId":70886},{"gameVersion":"1.19.3","gameVersionName":"1.19.3","gameVersionTypeId":73407},{"gameVersion":"1.20.2","gameVersionName":"1.20.2","gameVersionTypeId":75125},{"gameVersion":"1.19.4","gameVersionName":"1.19.4","gameVersionTypeId":73407},{"gameVersion":"1.21.8","gameVersionName":"1.21.8","gameVersionTypeId":77784},{"gameVersion":"1.17","gameVersionName":"1.17","gameVersionTypeId":73242},{"gameVersion":"1.20.5","gameVersionName":"1.20.5","gameVersionTypeId":75125},{"gameVersion":"1.21.5","gameVersionName":"1.21.5","gameVersionTypeId":77784},{"gameVersion":"1.18","gameVersionName":"1.18","gameVersionTypeId":73250},{"gameVersion":"1.21.4","gameVersionName":"1.21.4","gameVersionTypeId":77784},{"gameVersion":"1.20.1","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersion":"1.20","gameVersionName":"1.20","gameVersionTypeId":75125},{"gameVersion":"1.20.6","gameVersionName":"1.20.6","gameVersionTypeId":75125},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"1.21.6","gameVersionName":"1.21.6","gameVersionTypeId":77784},{"gameVersion":"1.21.3","gameVersionName":"1.21.3","gameVersionTypeId":77784},{"gameVersion":"1.21.7","gameVersionName":"1.21.7","gameVersionTypeId":77784},{"gameVersion":"1.19.1","gameVersionName":"1.19.1","gameVersionTypeId":73407},{"gameVersion":"1.20.4","gameVersionName":"1.20.4","gameVersionTypeId":75125},{"gameVersion":"1.18.2","gameVersionName":"1.18.2","gameVersionTypeId":73250},{"gameVersion":"1.19.2","gameVersionName":"1.19.2","gameVersionTypeId":73407},{"gameVersion":"1.20.3","gameVersionName":"1.20.3","gameVersionTypeId":75125},{"gameVersion":"1.16.2","gameVersionName":"1.16.2","gameVersionTypeId":70886},{"gameVersion":"1.16.4","gameVersionName":"1.16.4","gameVersionTypeId":70886},{"gameVersion":"1.19","gameVersionName":"1.19","gameVersionTypeId":73407},{"gameVersion":"1.21.2","gameVersionName":"1.21.2","gameVersionTypeId":77784},{"gameVersion":"1.21.9","gameVersionName":"1.21.9","gameVersionTypeId":77784},{"gameVersion":"1.21.10","gameVersionName":"1.21.10","gameVersionTypeId":77784},{"gameVersion":"1.21.11","gameVersionName":"1.21.11","gameVersionTypeId":77784},{"gameVersion":"26.1","gameVersionName":"26.1","gameVersionTypeId":83806},{"gameVersion":"26.1.1","gameVersionName":"26.1.1","gameVersionTypeId":83806},{"gameVersion":"26.1.2","gameVersionName":"26.1.2","gameVersionTypeId":83806}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1109361,"fileNameOnDisk":"Realistic Animals - 4.0.zip","hashes":[{"type":1,"value":"1244bd6127251904f010d917dd143b0a0d4f8066"},{"type":2,"value":"425f6c838dc74e13c35141c7ce4dbad1"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"88285737-628e-4af3-bbed-4d7f7a421176","modSource":0,"addonID":551586,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,409,422,411],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"L_Ender 's Cataclysm","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","authors":[{"id":102522496,"name":"mcl_ender"}],"primaryAuthor":"mcl_ender","primaryCategoryId":422,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/lendercataclysm","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/460/870/256/256/637739722679428303.png","tags":[],"installedFile":{"id":7908490,"fileName":"L_Ender's Cataclysm 1.21.1-3.27.jar","fileDate":"2026-04-11T04:44:09.66Z","fileLength":73346519,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7908/490/L_Ender%27s%20Cataclysm%201.21.1-3.27.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":1001614,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2561796072,"invalidFingerprint":false},{"foldername":"com","fingerprint":1489347563,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1941882570,"invalidFingerprint":false},{"foldername":"cataclysm.mixins.json","fingerprint":1376117912,"invalidFingerprint":false},{"foldername":"data","fingerprint":2168082264,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1286228978,"invalidFingerprint":false}],"packageFingerprint":2946987299,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551586,"fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","hashes":[{"type":1,"value":"f34a5e3994fff1953c631b87b3dfa89ed62c26dc"},{"type":2,"value":"2d2a331b023c5569d2a7793a46b8ccb6"}]},"dateInstalled":"2026-05-07T22:51:48.2490835Z","dateUpdated":"2026-05-07T22:51:48.2658186Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\L_Ender's Cataclysm 1.21.1-3.27.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7908490,"fileName":"L_Ender's Cataclysm 1.21.1-3.27.jar","fileDate":"2026-04-11T04:44:09.66Z","fileLength":73346519,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7908/490/L_Ender%27s%20Cataclysm%201.21.1-3.27.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":309927,"type":3},{"addonId":1001614,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":2561796072,"invalidFingerprint":false},{"foldername":"com","fingerprint":1489347563,"invalidFingerprint":false},{"foldername":"assets","fingerprint":1941882570,"invalidFingerprint":false},{"foldername":"cataclysm.mixins.json","fingerprint":1376117912,"invalidFingerprint":false},{"foldername":"data","fingerprint":2168082264,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1286228978,"invalidFingerprint":false}],"packageFingerprint":2946987299,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":551586,"fileNameOnDisk":"L_Ender's Cataclysm 1.21.1-3.27.jar","hashes":[{"type":1,"value":"f34a5e3994fff1953c631b87b3dfa89ed62c26dc"},{"type":2,"value":"2d2a331b023c5569d2a7793a46b8ccb6"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"531f3de7-e387-433f-afa3-73ab11488469","modSource":0,"addonID":485681,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[410,435,406],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Chunky (Forge/NeoForge)","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","authors":[{"id":43770124,"name":"pop4959"}],"primaryAuthor":"pop4959","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator-forge","issuesURL":"https://github.com/pop4959/Chunky/issues","wikiURL":"https://github.com/pop4959/Chunky/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/385/932/256/256/637574074357834213.png","tags":[],"installedFile":{"id":6383261,"fileName":"Chunky-NeoForge-1.4.23.jar","fileDate":"2025-04-04T06:52:00.777Z","fileLength":340572,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6383/261/Chunky-NeoForge-1.4.23.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3902992925,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":455959045,"invalidFingerprint":false},{"foldername":"lang","fingerprint":1106760030,"invalidFingerprint":false},{"foldername":"org","fingerprint":4219575363,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3497244563,"invalidFingerprint":false},{"foldername":"version.properties","fingerprint":3786076894,"invalidFingerprint":false}],"packageFingerprint":233801764,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":485681,"fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","hashes":[{"type":1,"value":"ab0c74743a653020fe2dfc4986b43e893947f3e9"},{"type":2,"value":"c461f3132c48d7bc71a9f2b307273a88"}]},"dateInstalled":"2026-05-07T21:58:17.8223864Z","dateUpdated":"2026-05-07T21:58:17.8235759Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Chunky-NeoForge-1.4.23.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6383261,"fileName":"Chunky-NeoForge-1.4.23.jar","fileDate":"2025-04-04T06:52:00.777Z","fileLength":340572,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6383/261/Chunky-NeoForge-1.4.23.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":3902992925,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":455959045,"invalidFingerprint":false},{"foldername":"lang","fingerprint":1106760030,"invalidFingerprint":false},{"foldername":"org","fingerprint":4219575363,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3497244563,"invalidFingerprint":false},{"foldername":"version.properties","fingerprint":3786076894,"invalidFingerprint":false}],"packageFingerprint":233801764,"gameVersion":["1.21","Client","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":485681,"fileNameOnDisk":"Chunky-NeoForge-1.4.23.jar","hashes":[{"type":1,"value":"ab0c74743a653020fe2dfc4986b43e893947f3e9"},{"type":2,"value":"c461f3132c48d7bc71a9f2b307273a88"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2f9f3341-228e-472f-87b8-cb52c5f4cef8","modSource":0,"addonID":283644,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Placebo","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","authors":[{"id":10368195,"name":"Shadows_of_Fire"}],"primaryAuthor":"Shadows_of_Fire","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/placebo","issuesURL":"https://github.com/Shadows-of-Fire/Placebo/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/134/260/256/256/636490526725752670.png","tags":[],"installedFile":{"id":6926281,"fileName":"Placebo-1.21.1-9.9.1.jar","fileDate":"2025-08-25T10:59:44.943Z","fileLength":324056,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/281/Placebo-1.21.1-9.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1393014458,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1358407876,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3944127840,"invalidFingerprint":false},{"foldername":"placebo.mixins.json","fingerprint":2415682722,"invalidFingerprint":false}],"packageFingerprint":2914591491,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":283644,"fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","hashes":[{"type":1,"value":"1c2b8c38066d6f36209c5dadee25c184ef65202e"},{"type":2,"value":"cc725fc5406d3af893484cfbba06f6ed"}]},"dateInstalled":"2026-05-07T21:58:43.1184776Z","dateUpdated":"2026-05-07T21:58:43.1197119Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\Placebo-1.21.1-9.9.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6926281,"fileName":"Placebo-1.21.1-9.9.1.jar","fileDate":"2025-08-25T10:59:44.943Z","fileLength":324056,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6926/281/Placebo-1.21.1-9.9.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":1393014458,"invalidFingerprint":false},{"foldername":"dev","fingerprint":1358407876,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3944127840,"invalidFingerprint":false},{"foldername":"placebo.mixins.json","fingerprint":2415682722,"invalidFingerprint":false}],"packageFingerprint":2914591491,"gameVersion":["NeoForge","1.21.1"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":283644,"fileNameOnDisk":"Placebo-1.21.1-9.9.1.jar","hashes":[{"type":1,"value":"1c2b8c38066d6f36209c5dadee25c184ef65202e"},{"type":2,"value":"cc725fc5406d3af893484cfbba06f6ed"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"b044f96d-c9f4-4bb8-b32f-722dda834723","modSource":0,"addonID":639842,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[434,5191,421,422],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Better Combat [Fabric & Forge]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","authors":[{"id":103343666,"name":"daedelus_dev"}],"primaryAuthor":"daedelus_dev","primaryCategoryId":434,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/better-combat-by-daedelus","issuesURL":"https://github.com/ZsoltMolnarrr/BetterCombat/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/566/413/256/256/637925434672465483.png","tags":[],"installedFile":{"id":7721843,"fileName":"bettercombat-neoforge-2.3.2+1.21.1.jar","fileDate":"2026-03-07T00:07:02.223Z","fileLength":1041845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7721/843/bettercombat-neoforge-2.3.2%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3},{"addonId":658587,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":369848084,"invalidFingerprint":false},{"foldername":"architectury_inject_bettercombat_common_9d2909d1bdc740dc9068c5095b3e016f_b9bc9fc20502f9be054ebf38606fc1f0e67f2294ec4967cb549764635c89d610bettercombatcommon2321211devjar","fingerprint":1588863865,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2801934907,"invalidFingerprint":false},{"foldername":"bettercombat-common-common-refmap.json","fingerprint":1121318103,"invalidFingerprint":false},{"foldername":"bettercombat.mixins.json","fingerprint":532072833,"invalidFingerprint":false},{"foldername":"data","fingerprint":3859456340,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2872503917,"invalidFingerprint":false},{"foldername":"net","fingerprint":1996889433,"invalidFingerprint":false}],"packageFingerprint":4062790500,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":639842,"fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","hashes":[{"type":1,"value":"f752fbbf81027948ef4ab0fc0066260ccf574179"},{"type":2,"value":"c474bddc1a32e216eb6b0986b8a1eb51"}]},"dateInstalled":"2026-05-07T22:48:14.1675365Z","dateUpdated":"2026-05-07T22:48:14.1690836Z","status":4,"installSource":7,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\bettercombat-neoforge-2.3.2+1.21.1.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7721843,"fileName":"bettercombat-neoforge-2.3.2+1.21.1.jar","fileDate":"2026-03-07T00:07:02.223Z","fileLength":1041845,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7721/843/bettercombat-neoforge-2.3.2%2b1.21.1.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":348521,"type":3},{"addonId":658587,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":369848084,"invalidFingerprint":false},{"foldername":"architectury_inject_bettercombat_common_9d2909d1bdc740dc9068c5095b3e016f_b9bc9fc20502f9be054ebf38606fc1f0e67f2294ec4967cb549764635c89d610bettercombatcommon2321211devjar","fingerprint":1588863865,"invalidFingerprint":false},{"foldername":"assets","fingerprint":2801934907,"invalidFingerprint":false},{"foldername":"bettercombat-common-common-refmap.json","fingerprint":1121318103,"invalidFingerprint":false},{"foldername":"bettercombat.mixins.json","fingerprint":532072833,"invalidFingerprint":false},{"foldername":"data","fingerprint":3859456340,"invalidFingerprint":false},{"foldername":"logo.png","fingerprint":2872503917,"invalidFingerprint":false},{"foldername":"net","fingerprint":1996889433,"invalidFingerprint":false}],"packageFingerprint":4062790500,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":639842,"fileNameOnDisk":"bettercombat-neoforge-2.3.2+1.21.1.jar","hashes":[{"type":1,"value":"f752fbbf81027948ef4ab0fc0066260ccf574179"},{"type":2,"value":"c474bddc1a32e216eb6b0986b8a1eb51"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"28060032-d459-4db5-aaee-615e5ee72cd8","modSource":0,"addonID":1005914,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[421,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fzzy Config","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fzzy_config-0.7.6+1.21+neoforge.jar","authors":[{"id":103101273,"name":"fzzyhmstrs"}],"primaryAuthor":"fzzyhmstrs","primaryCategoryId":421,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fzzy-config","issuesURL":"https://github.com/fzzyhmstrs/fconfig/issues","wikiURL":"https://github.com/fzzyhmstrs/fconfig/wiki","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/983/198/256/256/638491432276475239.png","tags":[],"installedFile":{"id":7568897,"fileName":"fzzy_config-0.7.6+1.21+neoforge.jar","fileDate":"2026-02-03T01:49:37.233Z","fileLength":2369895,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7568/897/fzzy_config-0.7.6%2b1.21%2bneoforge.jar","isAlternate":false,"alternateFileId":7568898,"serverPackFileId":0,"dependencies":[{"addonId":351264,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":921891654,"invalidFingerprint":false},{"foldername":"assets","fingerprint":618523741,"invalidFingerprint":false},{"foldername":"fzzy_config_LICENSE","fingerprint":4210262563,"invalidFingerprint":false},{"foldername":"fzzy_config_credits.txt","fingerprint":3846419403,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1181427411,"invalidFingerprint":false},{"foldername":"me","fingerprint":3359804243,"invalidFingerprint":false}],"packageFingerprint":3178451079,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1005914,"fileNameOnDisk":"fzzy_config-0.7.6+1.21+neoforge.jar","hashes":[{"type":1,"value":"c0910f9b975aaab8545ce950539748fb33d704d1"},{"type":2,"value":"cd0823556e6d24046bd0f4ba74cd4981"}]},"dateInstalled":"2026-05-07T23:25:51.567664Z","dateUpdated":"2026-05-07T23:25:51.5695343Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fzzy_config-0.7.6+1.21+neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7568897,"fileName":"fzzy_config-0.7.6+1.21+neoforge.jar","fileDate":"2026-02-03T01:49:37.233Z","fileLength":2369895,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7568/897/fzzy_config-0.7.6%2b1.21%2bneoforge.jar","isAlternate":false,"alternateFileId":7568898,"serverPackFileId":0,"dependencies":[{"addonId":351264,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":921891654,"invalidFingerprint":false},{"foldername":"assets","fingerprint":618523741,"invalidFingerprint":false},{"foldername":"fzzy_config_LICENSE","fingerprint":4210262563,"invalidFingerprint":false},{"foldername":"fzzy_config_credits.txt","fingerprint":3846419403,"invalidFingerprint":false},{"foldername":"icon.png","fingerprint":1181427411,"invalidFingerprint":false},{"foldername":"me","fingerprint":3359804243,"invalidFingerprint":false}],"packageFingerprint":3178451079,"gameVersion":["1.21","1.21.1","NeoForge"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":1005914,"fileNameOnDisk":"fzzy_config-0.7.6+1.21+neoforge.jar","hashes":[{"type":1,"value":"c0910f9b975aaab8545ce950539748fb33d704d1"},{"type":2,"value":"cd0823556e6d24046bd0f4ba74cd4981"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"ed1e5d65-1eb9-48d0-9b2d-08d2669b9e28","modSource":0,"addonID":605375,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[422,434,406,409,6484],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Integrated Dungeons and Structures","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"idas-1.13.5+1.21.1-neoforge.jar","authors":[{"id":100087092,"name":"CraisinLord"}],"primaryAuthor":"CraisinLord","primaryCategoryId":406,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/idas","issuesURL":null,"wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/995/786/256/256/638512171328390575.png","tags":[],"installedFile":{"id":7922750,"fileName":"idas-1.13.5+1.21.1-neoforge.jar","fileDate":"2026-04-13T20:28:55.18Z","fileLength":14393329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7922/750/idas-1.13.5%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":398521,"type":2},{"addonId":412082,"type":3},{"addonId":817709,"type":3},{"addonId":245755,"type":2},{"addonId":328085,"type":3},{"addonId":243121,"type":3},{"addonId":264231,"type":2},{"addonId":426558,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":737534084,"invalidFingerprint":false},{"foldername":"architectury_inject_IDAS_common_dac55d1c3d7c43d0b24fcf81e4608720_bab264217f45292024a1fce2a7b336af076c4a443afd76afb34a5482ce55a839idas11351211commondevjar","fingerprint":3768933642,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3566094146,"invalidFingerprint":false},{"foldername":"com","fingerprint":2802644054,"invalidFingerprint":false},{"foldername":"data","fingerprint":19935956,"invalidFingerprint":false},{"foldername":"idas-common-refmap.json","fingerprint":1277738546,"invalidFingerprint":false},{"foldername":"idas-common.mixins.json","fingerprint":4044446513,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1030312901,"invalidFingerprint":false}],"packageFingerprint":1792311093,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":605375,"fileNameOnDisk":"idas-1.13.5+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"79ca4558dd307dea3bd66134f89d617776c2f92b"},{"type":2,"value":"318f3a549a7af01fc0afdec63f089da7"}]},"dateInstalled":"2026-05-07T23:22:56.0056698Z","dateUpdated":"2026-05-07T23:22:56.0102817Z","status":4,"installSource":1,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\idas-1.13.5+1.21.1-neoforge.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":7922750,"fileName":"idas-1.13.5+1.21.1-neoforge.jar","fileDate":"2026-04-13T20:28:55.18Z","fileLength":14393329,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/7922/750/idas-1.13.5%2b1.21.1-neoforge.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":398521,"type":2},{"addonId":412082,"type":3},{"addonId":817709,"type":3},{"addonId":245755,"type":2},{"addonId":328085,"type":3},{"addonId":243121,"type":3},{"addonId":264231,"type":2},{"addonId":426558,"type":2}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":737534084,"invalidFingerprint":false},{"foldername":"architectury_inject_IDAS_common_dac55d1c3d7c43d0b24fcf81e4608720_bab264217f45292024a1fce2a7b336af076c4a443afd76afb34a5482ce55a839idas11351211commondevjar","fingerprint":3768933642,"invalidFingerprint":false},{"foldername":"assets","fingerprint":3566094146,"invalidFingerprint":false},{"foldername":"com","fingerprint":2802644054,"invalidFingerprint":false},{"foldername":"data","fingerprint":19935956,"invalidFingerprint":false},{"foldername":"idas-common-refmap.json","fingerprint":1277738546,"invalidFingerprint":false},{"foldername":"idas-common.mixins.json","fingerprint":4044446513,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":1030312901,"invalidFingerprint":false}],"packageFingerprint":1792311093,"gameVersion":["Client","1.21.1","NeoForge","Server"],"sortableGameVersion":[{"gameVersion":"","gameVersionName":"Client","gameVersionTypeId":75208},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":605375,"fileNameOnDisk":"idas-1.13.5+1.21.1-neoforge.jar","hashes":[{"type":1,"value":"79ca4558dd307dea3bd66134f89d617776c2f92b"},{"type":2,"value":"318f3a549a7af01fc0afdec63f089da7"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null},{"instanceID":"2fe50a9c-af8c-47a3-99de-438bcd66e58a","modSource":0,"addonID":951499,"gameID":432,"categoryClassID":6,"categorySection":{"id":8,"gameId":432,"name":"Mods","packageType":6,"path":"mods","initialInclusionPattern":".","gameCategoryId":6},"categoryIds":[435,423,5191],"gameInstanceID":"adf66e7d-eb8b-4303-b93b-0a79aaa895cc","name":"Fast Async World Save[Forge/Neo/Fabric]","modFolderPath":"C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods","fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","authors":[{"id":100114338,"name":"someaddon"}],"primaryAuthor":"someaddon","primaryCategoryId":435,"packageType":6,"webSiteURL":"https://www.curseforge.com/minecraft/mc-mods/fast-async-world-save-forge-fabric","issuesURL":"https://github.com/someaddons/FastAsyncWorldSave/issues","wikiURL":"","thumbnailUrl":"https://media.forgecdn.net/avatars/thumbnails/920/973/256/256/638384996050010285.png","tags":[],"installedFile":{"id":6935204,"fileName":"fastasyncworldsave-1.21-2.6.jar","fileDate":"2025-08-27T19:36:35.293Z","fileLength":11050,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6935/204/fastasyncworldsave-1.21-2.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4202243576,"invalidFingerprint":false},{"foldername":"com","fingerprint":2002104558,"invalidFingerprint":false},{"foldername":"fastasyncworldsave.mixins.json","fingerprint":2089655399,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3185219565,"invalidFingerprint":false}],"packageFingerprint":1703092068,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":951499,"fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","hashes":[{"type":1,"value":"87e019715314631f2c8288cf7c73a52a61b2d61b"},{"type":2,"value":"4df9371b5466dfbb56c375f4963f2845"}]},"dateInstalled":"2026-05-07T21:58:19.0103569Z","dateUpdated":"2026-05-07T21:58:19.0118457Z","status":4,"installSource":0,"preferenceReleaseType":null,"preferenceAutoInstallUpdates":null,"preferenceAlternateFile":false,"isEnabled":true,"isLocked":false,"filePaths":["C:\\Users\\mrleo1nid\\curseforge\\minecraft\\Instances\\PupaMLupa\\mods\\fastasyncworldsave-1.21-2.6.jar"],"preferenceIsIgnored":false,"isModified":false,"isWorkingCopy":false,"isFuzzyMatch":false,"manifestName":null,"installedTargets":[],"latestFile":{"id":6935204,"fileName":"fastasyncworldsave-1.21-2.6.jar","fileDate":"2025-08-27T19:36:35.293Z","fileLength":11050,"releaseType":1,"fileStatus":4,"downloadUrl":"https://edge.forgecdn.net/files/6935/204/fastasyncworldsave-1.21-2.6.jar","isAlternate":false,"alternateFileId":0,"serverPackFileId":0,"dependencies":[{"addonId":326652,"type":3}],"isAvailable":true,"modules":[{"foldername":"META-INF","fingerprint":4202243576,"invalidFingerprint":false},{"foldername":"com","fingerprint":2002104558,"invalidFingerprint":false},{"foldername":"fastasyncworldsave.mixins.json","fingerprint":2089655399,"invalidFingerprint":false},{"foldername":"pack.mcmeta","fingerprint":3185219565,"invalidFingerprint":false}],"packageFingerprint":1703092068,"gameVersion":["1.21","NeoForge","1.21.1","Server"],"sortableGameVersion":[{"gameVersion":"1.21","gameVersionName":"1.21","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"NeoForge","gameVersionTypeId":68441},{"gameVersion":"1.21.1","gameVersionName":"1.21.1","gameVersionTypeId":77784},{"gameVersion":"","gameVersionName":"Server","gameVersionTypeId":75208}],"isCompatibleWithClient":false,"isEarlyAccessContent":false,"restrictProjectFileAccess":0,"projectStatus":4,"projectId":951499,"fileNameOnDisk":"fastasyncworldsave-1.21-2.6.jar","hashes":[{"type":1,"value":"87e019715314631f2c8288cf7c73a52a61b2d61b"},{"type":2,"value":"4df9371b5466dfbb56c375f4963f2845"}]},"allowModDistribution":true,"exportDisabledReason":0,"groupId":null}],"installedGamePrerequisites":[],"wasNameManuallyChanged":false,"wasGameVersionTypeIdManuallyChanged":false} \ No newline at end of file diff --git a/mods/Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar b/mods/Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar new file mode 100644 index 0000000..c668e24 Binary files /dev/null and b/mods/Dynamic Trees for Nature's Spirit-1.21.1-neoforge-1.3.jar differ diff --git a/mods/DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar b/mods/DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar new file mode 100644 index 0000000..a1320cd Binary files /dev/null and b/mods/DynamicTreesPlus-neoforge-1.21.1-1.3.2.jar differ diff --git a/mods/Quark-4.1-478.jar b/mods/Quark-4.1-478.jar new file mode 100644 index 0000000..0b466f3 Binary files /dev/null and b/mods/Quark-4.1-478.jar differ diff --git a/mods/SimplyTooltips-neoforge-0.1.3.jar b/mods/SimplyTooltips-neoforge-0.1.3.jar new file mode 100644 index 0000000..9969e72 Binary files /dev/null and b/mods/SimplyTooltips-neoforge-0.1.3.jar differ diff --git a/mods/Zeta-1.1-40.jar b/mods/Zeta-1.1-40.jar new file mode 100644 index 0000000..08b0354 Binary files /dev/null and b/mods/Zeta-1.1-40.jar differ diff --git a/mods/alexsdelight-1.6.jar b/mods/alexsdelight-1.6.jar new file mode 100644 index 0000000..2474732 Binary files /dev/null and b/mods/alexsdelight-1.6.jar differ diff --git a/mods/alexsmobs-1.22.17.jar b/mods/alexsmobs-1.22.17.jar new file mode 100644 index 0000000..4ad2734 Binary files /dev/null and b/mods/alexsmobs-1.22.17.jar differ diff --git a/mods/citadel-1.21.1-2.7.6.jar b/mods/citadel-1.21.1-2.7.6.jar new file mode 100644 index 0000000..850bac5 Binary files /dev/null and b/mods/citadel-1.21.1-2.7.6.jar differ diff --git a/mods/dtbop-3.4.0.jar b/mods/dtbop-3.4.0.jar new file mode 100644 index 0000000..1120aea Binary files /dev/null and b/mods/dtbop-3.4.0.jar differ diff --git a/mods/dynamictrees-neoforge-1.21.1-1.7.0.jar b/mods/dynamictrees-neoforge-1.21.1-1.7.0.jar new file mode 100644 index 0000000..a0d1deb Binary files /dev/null and b/mods/dynamictrees-neoforge-1.21.1-1.7.0.jar differ diff --git a/mods/fzzy_config-0.7.6+1.21+neoforge.jar b/mods/fzzy_config-0.7.6+1.21+neoforge.jar new file mode 100644 index 0000000..c5ea8ff Binary files /dev/null and b/mods/fzzy_config-0.7.6+1.21+neoforge.jar differ diff --git a/mods/idas-1.13.5+1.21.1-neoforge.jar b/mods/idas-1.13.5+1.21.1-neoforge.jar new file mode 100644 index 0000000..7bea45f Binary files /dev/null and b/mods/idas-1.13.5+1.21.1-neoforge.jar differ diff --git a/mods/integrated_api-1.7.4+1.21.1-neoforge.jar b/mods/integrated_api-1.7.4+1.21.1-neoforge.jar new file mode 100644 index 0000000..28a14dc Binary files /dev/null and b/mods/integrated_api-1.7.4+1.21.1-neoforge.jar differ diff --git a/mods/integrated_cataclysm-1.0.6+1.21.1-neoforge.jar b/mods/integrated_cataclysm-1.0.6+1.21.1-neoforge.jar new file mode 100644 index 0000000..57be85b Binary files /dev/null and b/mods/integrated_cataclysm-1.0.6+1.21.1-neoforge.jar differ diff --git a/mods/integrated_stronghold-1.1.4+1.21.1-neoforge.jar b/mods/integrated_stronghold-1.1.4+1.21.1-neoforge.jar new file mode 100644 index 0000000..1201ed2 Binary files /dev/null and b/mods/integrated_stronghold-1.1.4+1.21.1-neoforge.jar differ diff --git a/mods/integrated_villages-1.3.2+1.21.1-neoforge.jar b/mods/integrated_villages-1.3.2+1.21.1-neoforge.jar new file mode 100644 index 0000000..86ba09d Binary files /dev/null and b/mods/integrated_villages-1.3.2+1.21.1-neoforge.jar differ diff --git a/mods/kotlinforforge-5.11.0-all.jar b/mods/kotlinforforge-5.11.0-all.jar new file mode 100644 index 0000000..d1f0282 Binary files /dev/null and b/mods/kotlinforforge-5.11.0-all.jar differ diff --git a/mods/lootintegrations_cataclysm-1.2.jar b/mods/lootintegrations_cataclysm-1.2.jar new file mode 100644 index 0000000..7c4c893 Binary files /dev/null and b/mods/lootintegrations_cataclysm-1.2.jar differ diff --git a/mods/lootintegrations_integrated-1.5.jar b/mods/lootintegrations_integrated-1.5.jar new file mode 100644 index 0000000..14de41e Binary files /dev/null and b/mods/lootintegrations_integrated-1.5.jar differ diff --git a/mods/natures_spirit-2.2.5-1.21.1.jar b/mods/natures_spirit-2.2.5-1.21.1.jar new file mode 100644 index 0000000..9705029 Binary files /dev/null and b/mods/natures_spirit-2.2.5-1.21.1.jar differ diff --git a/mods/simplycataclysm-1.0.2+1.21.1+neoforge.jar b/mods/simplycataclysm-1.0.2+1.21.1+neoforge.jar new file mode 100644 index 0000000..7e785e3 Binary files /dev/null and b/mods/simplycataclysm-1.0.2+1.21.1+neoforge.jar differ diff --git a/mods/simplyswords-neoforge-1.63.0-1.21.1.jar b/mods/simplyswords-neoforge-1.63.0-1.21.1.jar new file mode 100644 index 0000000..cded358 Binary files /dev/null and b/mods/simplyswords-neoforge-1.63.0-1.21.1.jar differ