diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2b296f478..400124350 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,9 +11,9 @@ jobs: name: "Pre Release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Declare some variables @@ -23,8 +23,8 @@ jobs: echo "::set-output name=sha_short::$(git rev-parse --short $GITHUB_SHA)" - name: Install requests run: | - pip install requests - - uses: actions/setup-java@v2 + pip install requests + - uses: actions/setup-java@v4 with: distribution: 'adopt' # See 'Supported distributions' for available options java-version: '8' @@ -32,8 +32,6 @@ jobs: - name: Run Build run: | python build/main.py - env: - CFAPIKEY: ${{ secrets.CFAPIKEY }} - name: Automatic Releases uses: marvinpinto/action-automatic-releases@latest with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9a31a5b5d..e626c9d1d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,50 +8,56 @@ jobs: name: "Release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - name: Declare some variables - id: vars - shell: bash - run: | - echo "::set-output name=sha_short::$(git rev-parse --short $GITHUB_SHA)" - - name: Install requests - run: | - pip install requests - - name: Run Build - run: | - python build/main.py - env: - CFAPIKEY: ${{ secrets.CFAPIKEY }} - - id: get-version - uses: actions/github-script@v6 - with: - result-encoding: string - script: | - try { - const fs = require('fs') - const jsonString = fs.readFileSync('./manifest.json') - var apps = JSON.parse(jsonString) - return apps.version - } catch(err) { - core.error("Error while reading or parsing the JSON") - core.setFailed(err) - } - - run: echo "${{steps.get-version.outputs.result}}" + - uses: actions/checkout@v4 + - name: Set up Python 3.9 + uses: actions/setup-python@v5 + with: + python-version: 3.9 + - name: Declare some variables + id: vars + shell: bash + run: | + echo "::set-output name=sha_short::$(git rev-parse --short $GITHUB_SHA)" + - name: Bootstrap + uses: actions/setup-java@v4 + with: + distribution: 'adopt' + java-version: '8' + - name: Install requests + run: | + pip install requests + - run: python build/main.py + - uses: actions/setup-node@v4 + with: + node-version: 'latest' + - run: npm install @iarna/toml + - id: get-version + uses: actions/github-script@v7 + with: + result-encoding: string + script: | + try { + const fs = require('fs') + const toml = require('@iarna/toml') + const tomlString = fs.readFileSync('./pack.toml') + var apps = toml.parse(tomlString) + return apps.version + } catch(err) { + core.error("Error while reading or parsing the TOML") + core.setFailed(err) + } + - run: echo "${{steps.get-version.outputs.result}}" - - name: Rename file - run: | - mv buildOut/client.zip buildOut/supersymmetry-${{steps.get-version.outputs.result}}.zip - mv buildOut/server.zip buildOut/server-${{steps.get-version.outputs.result}}.zip - rm -f buildOut/client.zip - rm -f buildOut/server.zip + - name: Rename file + run: | + mv buildOut/client.zip buildOut/supersymmetry-${{steps.get-version.outputs.result}}.zip + mv buildOut/server.zip buildOut/server-${{steps.get-version.outputs.result}}.zip + rm -f buildOut/client.zip + rm -f buildOut/server.zip - - name: Automatic Releases - uses: marvinpinto/action-automatic-releases@latest - with: + - name: Automatic Releases + uses: marvinpinto/action-automatic-releases@latest + with: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: ${{ steps.get-version.outputs.result }} prerelease: false @@ -59,5 +65,4 @@ jobs: files: | buildOut/supersymmetry-${{steps.get-version.outputs.result}}.zip buildOut/server-${{steps.get-version.outputs.result}}.zip - buildOut/modlist.html - + buildOut/modlist.html \ No newline at end of file diff --git a/.gitignore b/.gitignore index d43b6ebc5..de5e654e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -mods/ buildOut/ +build/server *client.zip .mixin.out/ armourers_workshop/ @@ -8,7 +8,6 @@ fonts/ journeymap/ logs/ saves/ -build/buildOut/ .curseclient usercache.json @@ -19,6 +18,7 @@ instance.json *.log *.txt *.dll +*.exe build/modlist.* config/InvTweaks.cfg @@ -81,7 +81,7 @@ screenshots/ backups/ -resourcepacks/ +# resourcepacks/ local/ diff --git a/.packwizignore b/.packwizignore new file mode 100644 index 000000000..a8dd22e7c --- /dev/null +++ b/.packwizignore @@ -0,0 +1,12 @@ +*.py +*.dat +*.md +*.iml +*.pickle +LICENSE +.gitignore + +.github/ +build/ +buildOut/ +.idea/ \ No newline at end of file diff --git a/README.md b/README.md index 10aa61654..7c6793509 100644 --- a/README.md +++ b/README.md @@ -71,5 +71,24 @@ Special thanks to our volunteers: - Whatsapp • Structures, textures and feedback - Science Demon • Questbook work, German translation and bug fixes +## Development Tips +> Please download [Packwiz](https://packwiz.infra.link/installation/) to the current directory manually. +> [Full Usage - Packwiz Tutorial](https://packwiz.infra.link/tutorials/creating/getting-started/) +- Add mod: `packwiz cf add ` ([Full Usage](https://packwiz.infra.link/tutorials/creating/adding-mods/)) +- Refresh Hash: `packwiz refresh` +- Print modlist: `packwiz list` +- Update pack version: rewrite version number in [pack.toml](pack.toml) +- Update mod version: `packwiz update /--all` +- Client only mod: [rewrite .pw.toml#side manually](https://packwiz.infra.link/reference/pack-format/mod-toml/#properties) + ## Building the pack -You'll need python3 and python requests installed to build run the main.py script. +### Client Pack +1. Download [Packwiz](https://packwiz.infra.link/installation/) to the current directory. +2. Run `packwiz cf export` to export the client pack. +3. The export pack will generate in the root directory. +### Server Pack +> Server pack is not recommended for manually install. Recommended to go to the release page to download. +1. Download [packwiz-installer-bootstrap](./build/server/packwiz-installer-bootstrap.jar) to a new directory. +2. Run `java -jar packwiz-installer-bootstrap.jar ` to install server. +3. Download [forge installer](https://files.minecraftforge.net/net/minecraftforge/forge/index_1.12.2.html) and run it manually to download libraries and server jar. +4. Copy [launch.sh](./build/server/launch.sh) to the server directory. \ No newline at end of file diff --git a/README_PT.md b/README_PT.md index 11a21fc2b..030e6aeeb 100644 --- a/README_PT.md +++ b/README_PT.md @@ -1,3 +1,19 @@ +
+
+ + あ ←→ A + + +   Supersymmetry supports the following languages. +
+ +
+   Português +
+   English +
+
+ # Supersymmetry Supersymmetry é um modpack centrado em tecnologia baseado no GregTech, que inclui processos químicos e físicos da realidade à sua progressão. Isto significa que contém muitas redes de contrução que imitam processos de manofaturação usados na vida real. Grande parte do _pack_ está em desenvolvimento, com elementos PvE (Jogador contra ambiente) tais como fatores ambientais e invasões de facções enimigas planeadas. Nós temos intenções de adicionar o nosso próprio _mod_ de exploração do espaço também. diff --git a/build/download.py b/build/download.py new file mode 100644 index 000000000..12fa92e41 --- /dev/null +++ b/build/download.py @@ -0,0 +1,47 @@ +#!/usr/bin/env python3 + +import requests +import subprocess +import os + +basePath = os.path.normpath(os.path.realpath(__file__).replace("download.py", "") + "/server") + +def download(): + with open(basePath + "/forge-installer.jar", "w+b") as jar: + forgeVer = "14.23.5.2860" + mcVer = "1.12.2" + url = ( + "https://maven.minecraftforge.net/net/minecraftforge/forge/" + + mcVer + + "-" + + forgeVer + + "/forge-" + + mcVer + + "-" + + forgeVer + + "-installer.jar" + ) + r = requests.get(url) + jar.write(r.content) + print("Forge installer Downloaded") + + vanilla = basePath + "/minecraft_server.1.12.2.jar" + if not os.path.isfile(vanilla): + with open(basePath + "/minecraft_server.1.12.2.jar", "w+b") as jar: + url = "https://launcher.mojang.com/v1/objects/886945bfb2b978778c3a0288fd7fab09d315b25f/server.jar" + r = requests.get(url) + jar.write(r.content) + print("Vanilla Downloaded") + + subprocess.run(["java", "-jar", "forge-installer.jar", + "--installServer"], cwd=basePath) + print("Forge Installed") + + try: + os.remove(basePath + "/forge-installer.jar") + except Exception as e: + print("Couldn't delete forge-installer.jar: %s" % (e)) + try: + os.remove(basePath + "/forge-installer.jar.log") + except Exception as e: + print("Couldn't delete forge-installer.jar.log: %s" % (e)) \ No newline at end of file diff --git a/build/main.py b/build/main.py index e3db8ba0c..ae388df64 100644 --- a/build/main.py +++ b/build/main.py @@ -3,19 +3,19 @@ """build client & server bundles""" import argparse -import hashlib -import json # if there is a problem with building, please let htmlcsjs know import os import shutil import subprocess -import sys +import zipfile import requests # Used to run questbook.py import questbook +import download + # used to map a projects classId on curseforge to a folder class_id_to_dir = { 6: "mods", @@ -39,263 +39,66 @@ def parse_args(): help="only builds the client pack") return parser.parse_args() +basePath = os.path.normpath(os.path.realpath(__file__)[:-7] + "..") def build(args): + # Run questbook.py first questbook.build(questbook.parse_args()) - modlist = [] - basePath = os.path.normpath(os.path.realpath(__file__)[:-7] + "..") - copyDirs = ["/scripts", "/resources", "/config", - "/structures", "/groovy", "/simple-rpc", "/resourcepacks"] - serverCopyDirs = ["/scripts", "/config", "/mods", - "/structures", "/groovy", "/resourcepacks"] - - if args.clean: - shutil.rmtree(basePath + "/buildOut/client/overrides", - ignore_errors=True) - shutil.rmtree(basePath + "/buildOut/server", ignore_errors=True) - shutil.rmtree(basePath + "/mods", ignore_errors=True) - sys.exit(0) - sha = "" - if args.sha: - try: - p = subprocess.run( - ["git", "rev-parse", "--short", "HEAD"], capture_output=True, cwd=basePath) - sha = p.stdout.strip().decode("utf-8") - except Exception as e: - print("could not determine git sha, skipping") - with open(basePath + "/manifest.json") as file: - manifest = json.load(file) - cachepath = os.path.join(basePath, "buildOut", "modcache") - - def mkdirs(path): - try: - os.makedirs(path) - except Exception as e: - print("%s exists, skipping" % (path)) + os.makedirs('./buildOut/', exist_ok=True) - mkdirs(basePath + "/buildOut/client/overrides") - mkdirs(basePath + "/buildOut/server") - mkdirs(basePath + "/mods") - mkdirs(cachepath) # /buildOut/modcach - # if we downloaded mods before, add them to the cache - prev = basePath + "/buildOut/server/mods" - cached = 0 - if os.path.isdir(prev): - for f in os.listdir(prev): - # don't waste time copying mods to the cache that are already there - if os.path.exists(os.path.join(cachepath, f)): - continue - cached += 1 - shutil.copy2(os.path.join(prev, f), os.path.join(cachepath, f)) - if cached > 0: - print("cached %d mod downloads in %s" % (cached, cachepath)) - for mod in manifest["externalDeps"]: - with open(basePath + "/mods/" + mod["url"].split("/")[-1], "w+b") as jar: - for i in range(args.retries + 1): - if i == args.retries: - raise Exception("Download failed") + export_client_pack() # Client + export_server_pack() # Server + export_modlist() # Modlist - r = requests.get(mod["url"]) - - hash = hashlib.sha256(r.content).hexdigest() - if str(hash) == mod["hash"]: - jar.write(r.content) - modlist.append(mod["name"]) - print("hash succsessful for {}".format(mod["name"])) - break - else: - print("hash unsuccsessful for {}".format(mod["name"])) - print("use", str(hash), "this if it is consistant across runs") - pass + print("done") - for dir in copyDirs: - try: - shutil.copytree(basePath + dir, basePath + - "/buildOut/client/overrides" + dir) - except Exception as e: - print("Directory exists, skipping") +def export_client_pack(): + print("Client Pack Exporting") + subprocess.run(['chmod', '+x', './packwiz'], check=True) + subprocess.run(['./packwiz', 'curseforge', 'export', '-o', 'client.zip'], check=True) + shutil.copy('./client.zip', './buildOut/') + os.remove('./client.zip') + print("Client Pack Export Done") - print("directories copied to buildOut/client") - archive = "buildOut/client" - if sha: - archive = "%s-%s" % (archive, sha) - shutil.copy(basePath + "/manifest.json", basePath + - "/buildOut/client/manifest.json") - shutil.make_archive(archive, "zip", basePath + "/buildOut/client") - print('client zip "%s.zip" made' % (archive)) +def export_server_pack(): + print("Server Pack Exporting") + server_pack = "server.zip" - if (args.client): - return + download.download() - cringe = [] - headers = {'Accept': 'application/json', - 'x-api-key': os.getenv("CFAPIKEY")} - for mod in manifest["files"]: - r = requests.get( - 'https://api.curseforge.com/v1/mods/{0}/files/{1}/download-url'.format( - mod["projectID"], mod["fileID"]), - headers=headers) - mod_data_r = requests.get( - 'https://api.curseforge.com/v1/mods/{0}'.format(mod["projectID"]), headers=headers) - mod_data = {} - if mod_data_r.text: - mod_data = mod_data_r.json()["data"] + shutil.copy("LICENSE", "build/server/LICENSE") - try: - metadata = r.json() - except: - print( - 'https://api.curseforge.com/v1/mods/{0}/files/{1}/download-url'.format(mod["projectID"], mod["fileID"])) - try: - cringe.append( - "https://www.curseforge.com/minecraft/mc-mods/{0}/files/{1}".format(data["slug"], mod["fileID"])) - except: - cringe.append('This is the raw mod id and file id, the cf api was being odd: `{0}`, `{1}`'.format( - mod["projectID"], mod["fileID"])) + os.chdir("build/server") + subprocess.run(['java', '-jar', 'packwiz-installer-bootstrap.jar', '../../pack.toml'], check=True) - continue + with zipfile.ZipFile(server_pack, 'w') as zipf: + for folder in ['config', 'groovy', 'libraries', 'mods', 'structures']: + for root, _, files in os.walk(folder): + for file in files: + file_path = os.path.join(root, file) + arcname = os.path.relpath(file_path, start='.') + zipf.write(file_path, arcname) - name = "placeholder" - if "name" in mod: - name = mod["name"] - if name[-4:] != ".jar": - name += ".jar" - else: - name = metadata["data"].split("/")[-1] - url = metadata["data"] - clientOnly = mod.get("clientOnly", False) - catagory = mod_data.get("classId", 6) # 6 is the class id of a mod + for file in ['launch.sh', 'forge-1.12.2-14.23.5.2860.jar', 'LICENSE', 'minecraft_server.1.12.2.jar']: + zipf.write(file, file) + os.remove(file) - modlist.append({"name": name, "url": url, - "clientOnly": clientOnly, "class": catagory}) + os.chdir("../..") + shutil.move(f"build/server/{server_pack}", f"buildOut/{server_pack}") + print("Server Pack Export Done") - print("modlist compiled") +def export_modlist(): + print("Modlist Exporting") + result = subprocess.run(['./packwiz', 'list'], capture_output=True, text=True).stdout.strip().split('\n') with open(basePath + "/buildOut/modlist.html", "w") as file: data = "

Modlist

    " - for mod in modlist: - data += "
  • " + mod["name"].split(".jar")[0] + "
  • " + for mod in result: + data += "
  • " + mod + "
  • " data += "
" file.write(data) - print("modlist.html done") - shutil.copy(basePath + "/manifest.json", basePath + - "/buildOut/server/manifest.json") - shutil.copy(basePath + "/LICENSE", basePath + "/buildOut/server/LICENSE") - shutil.copy(basePath + "/launch.sh", basePath + - "/buildOut/server/launch.sh") - for dir in serverCopyDirs: - try: - shutil.copytree(basePath + dir, basePath + - "/buildOut/server" + dir) - except Exception as e: - print("Directory exists, skipping") - - for dir in class_id_to_dir.values(): - mkdirs(f"{basePath}/buildOut/server/{dir}") - - print("directories copied to buildOut/server") - for mod in modlist: - filename = mod["url"].split("/")[-1] - if (mod["clientOnly"] == True): - continue - - if os.path.exists(os.path.join(cachepath, filename)): - shutil.copy2(os.path.join(cachepath, filename), - os.path.join(basePath, "buildOut", "server", "mods", filename)) - print("%s loaded from cache" % (mod)) - continue - - folder = class_id_to_dir.get(mod["class"], "other") - - with open(f"{basePath}/buildOut/server/{folder}/{filename}", "w+b") as jar: - r = requests.get(mod["url"]) - jar.write(r.content) - print(mod["name"] + " Downloaded") - print("Mods Downloaded") - with open(basePath + "/buildOut/server/forge-installer.jar", "w+b") as jar: - forgeVer = manifest["minecraft"]["modLoaders"][0]["id"].split("-")[-1] - mcVer = manifest["minecraft"]["version"] - url = ( - "https://maven.minecraftforge.net/net/minecraftforge/forge/" - + mcVer - + "-" - + forgeVer - + "/forge-" - + mcVer - + "-" - + forgeVer - + "-installer.jar" - ) - r = requests.get(url) - jar.write(r.content) - print("Forge installer Downloaded") - # TODO: make a portable version between versions - vanilla = basePath + "/buildOut/server/minecraft_server.1.12.2.jar" - if not os.path.isfile(vanilla): - with open(basePath + "/buildOut/server/minecraft_server.1.12.2.jar", "w+b") as jar: - url = "https://launcher.mojang.com/v1/objects/886945bfb2b978778c3a0288fd7fab09d315b25f/server.jar" - r = requests.get(url) - jar.write(r.content) - print("Vanilla Downloaded") - subprocess.run(["java", "-jar", "forge-installer.jar", - "--installServer"], cwd=basePath + "/buildOut/server/") - print("Forge Installed") - if len(cringe) != 0 or os.path.exists(basePath + "/README_SERVER.md"): - with open(basePath + "/buildOut/server/README_SERVER.md", "w") as f: - if os.path.exists(basePath + "/README_SERVER.md"): - with open(basePath + "/README_SERVER.md") as g: - f.write(g.read()) - if len(cringe) != 0: - f.write("\n# YOU NEED TO MANUALLY DOWNLOAD THESE MODS\n") - for i in cringe: - f.write(i + "\n") - - try: - os.remove(basePath + "/buildOut/server/forge-installer.jar") - except Exception as e: - print("Couldn't delete forge-installer.jar: %s" % (e)) - try: - os.remove(basePath + "/buildOut/server/forge-installer.jar.log") - except Exception as e: - print("Couldn't delete forge-installer.jar.log: %s" % (e)) - archive = "buildOut/server" - if sha: - archive = "%s-%s" % (archive, sha) - shutil.make_archive(archive, "zip", basePath + "/buildOut/server") - print('server zip "%s.zip" made' % (archive)) - if (args.dev_build): - mkdirs(basePath + "/buildOut/mmc/minecraft") - try: - shutil.rmtree(basePath + "/buildOut/mmc/minecraft/mods/") - except: - pass - shutil.copytree(basePath + "/buildOut/server/mods/", - basePath + "/buildOut/mmc/minecraft/mods/") - for dir in copyDirs: - try: - os.symlink(basePath + dir, basePath + - "/buildOut/mmc/minecraft/" + dir) - except Exception as e: - print("Directory exists, skipping") - print("directories copied to buildOut/mmc/minecraft") - - for mod in modlist: - filename = mod["name"].split("/")[-1] - - with open(basePath + "/buildOut/mmc/minecraft/mods/" + filename, "w+b") as jar: - r = requests.get(mod["url"]) - jar.write(r.content) - print(mod["name"] + " Downloaded") - - shutil.copy(basePath + "/mmc-instance-data.json", - basePath + "/buildOut/mmc/mmc-pack.json") - instanceFolder = input("What is your MultiMC instance folder:") - instanceName = input("What do you want to call the instance:") - os.symlink(basePath + "/buildOut/mmc/", - instanceFolder + "/" + instanceName) - print("you might need to add an instance.cfg for mmc to reconise it") - print("done") + print("Modlist Export Done") if __name__ == "__main__": diff --git a/launch.sh b/build/server/launch.sh similarity index 100% rename from launch.sh rename to build/server/launch.sh diff --git a/build/server/packwiz-installer-bootstrap.jar b/build/server/packwiz-installer-bootstrap.jar new file mode 100644 index 000000000..e7ac2cb11 Binary files /dev/null and b/build/server/packwiz-installer-bootstrap.jar differ diff --git a/icon.png b/icon.png deleted file mode 100644 index b764d7aee..000000000 Binary files a/icon.png and /dev/null differ diff --git a/index.toml b/index.toml new file mode 100644 index 000000000..912a18196 --- /dev/null +++ b/index.toml @@ -0,0 +1,14280 @@ +hash-format = "sha256" + +[[files]] +file = "config/AE2WirelessTerminals.cfg" +hash = "95eef24be52361263ce2ccc7aff47a27f5c08ef6c9638f868350caa4f892bd3a" + +[[files]] +file = "config/AppliedEnergistics2/AppliedEnergistics2.cfg" +hash = "ddf93a35521a8cfa3d50fafc97fff40ba7a0db52b5d6582b8688b875c7ad9c98" + +[[files]] +file = "config/AppliedEnergistics2/CustomRecipes.cfg" +hash = "bd89a20625088c981192edea35d07b30f942ac62e5d9eb991db184054614163e" + +[[files]] +file = "config/AppliedEnergistics2/Facades.cfg" +hash = "c50bb6b5960ea48a025759c11082781f412d24e9a5be0db7d4d34948c7a7f0d4" + +[[files]] +file = "config/AppliedEnergistics2/VersionChecker.cfg" +hash = "b5f9c1952f213225ec7cedf9eee5e073809a1b5e7bf9afca52bb6f640a12a62d" + +[[files]] +file = "config/AppliedEnergistics2/items.csv" +hash = "7920e3cb46ee2ba82b58cbcedaf7adcf944d700665d57760c2e7b36839587dee" + +[[files]] +file = "config/BNBGamingCore.cfg" +hash = "59d08e887f8e232f299f66bdfa0bebe011ffc57025347ec8e37642195aef91b4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Alps (biomesoplenty_alps).json" +hash = "1c925da4a10d1a58b11b7a53af2b422508fe099f1df740040c21de3d10e31f2d" + +[[files]] +file = "config/BiomeTweaker/output/biome/AlpsFoothills (biomesoplenty_alps_foothills).json" +hash = "b2b2c0bb5307356f46bca987c8419e3ce766f81033c986281eb031628308da7a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Bamboo_Forest (biomesoplenty_bamboo_forest).json" +hash = "53b14ea0bd68b3af13b4c27cb9e5d704ae20fe13ff433bbb2117fc1bc05dbbb2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Bayou (biomesoplenty_bayou).json" +hash = "a5b9295543421ce3791f2894c83db139ccd29e9b0460b9654a01979fbd2714ee" + +[[files]] +file = "config/BiomeTweaker/output/biome/Beach (minecraft_beaches).json" +hash = "ecf1c777c719b33e7fe5b834d60fbaccebcdbf77566ffba571b5bd35d8bbf33f" + +[[files]] +file = "config/BiomeTweaker/output/biome/Birch_Forest (minecraft_birch_forest).json" +hash = "29035819a8f9c6e3e6a94e456e6c476e29bb7a632c2c6c95b4b6c75db94f4053" + +[[files]] +file = "config/BiomeTweaker/output/biome/Birch_Forest_Hills (minecraft_birch_forest_hills).json" +hash = "6ec15541f258bd07c309b6aabd483abf5abbb013f36f9bda46913881446a01cc" + +[[files]] +file = "config/BiomeTweaker/output/biome/Birch_Forest_Hills_M (minecraft_mutated_birch_forest_hills).json" +hash = "c049d7e547e352fb16b075007752ed08ee15b91e81100b5e3ac77a8b30c18c85" + +[[files]] +file = "config/BiomeTweaker/output/biome/Birch_Forest_M (minecraft_mutated_birch_forest).json" +hash = "13a453ead5ade775559f348f905dbd5e92519f756436bac7d18233535404f761" + +[[files]] +file = "config/BiomeTweaker/output/biome/Bog (biomesoplenty_bog).json" +hash = "98ae76085b1d0522280098e2258ee23c29c9e6d3e2d216dbc1fa61a3d73fcdf8" + +[[files]] +file = "config/BiomeTweaker/output/biome/Boreal_Forest (biomesoplenty_boreal_forest).json" +hash = "d9c8b11e6a21f82e746b8c542fadf872923b75e6f901dfcd0dc3edda0f413069" + +[[files]] +file = "config/BiomeTweaker/output/biome/Brushland (biomesoplenty_brushland).json" +hash = "486d073c730dc22a8c76e4512a86776f105f3b87416af62557b1271f9e000c6a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Chaparral (biomesoplenty_chaparral).json" +hash = "12e3d5cd76259d68c956a45b977d9fd4a2b8bf92e1458317f56245d4a083e50f" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cherry_Blossom_Grove (biomesoplenty_cherry_blossom_grove).json" +hash = "dd09d601af8a54988fec738bc7fa1e33435bb9d5c1fcd10ca289c43fb6ee8f7b" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cold_Beach (minecraft_cold_beach).json" +hash = "d629476181e2344e3bc8e0cc9419a309287ce0f97d4694907df355d99a04dc8d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cold_Desert (biomesoplenty_cold_desert).json" +hash = "87680be69b7479110413263b4bf69cad24ae3851dce0d0575e727c9eda15edd4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cold_Taiga (minecraft_taiga_cold).json" +hash = "d6cd0f4cc29fdbfa796acf90c0b99616b608ac15606296b8e31f13c8d13478b3" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cold_Taiga_Hills (minecraft_taiga_cold_hills).json" +hash = "339c20a2385d2b327a13288ac0a484e77092056a150a8eec17dd02a4ef5ab3bc" + +[[files]] +file = "config/BiomeTweaker/output/biome/Cold_Taiga_M (minecraft_mutated_taiga_cold).json" +hash = "538cf2d5743b88eec345d7c4913985d59bcaedc43eb5e35d8bb8d12bed59c293" + +[[files]] +file = "config/BiomeTweaker/output/biome/Coniferous_Forest (biomesoplenty_coniferous_forest).json" +hash = "50e89ba08ed499124c0f9c1346fb82933ba5c1b6525e00200018ae792744ec82" + +[[files]] +file = "config/BiomeTweaker/output/biome/Coral_Reef (biomesoplenty_coral_reef).json" +hash = "391bbd0f700daf3f8c62d987158e556afa66234f45726bf70c74eb60059d4b50" + +[[files]] +file = "config/BiomeTweaker/output/biome/Corrupted_Sands (biomesoplenty_corrupted_sands).json" +hash = "83116618c1f14b6596ce275005c90eebd0fdc9b37f64229c006ddb8690bd6c80" + +[[files]] +file = "config/BiomeTweaker/output/biome/Crag (biomesoplenty_crag).json" +hash = "d7df1f06b7e5f0ad3f9ce2ccdcddd93f7b6c8a8972cf504936fed387a0ce9968" + +[[files]] +file = "config/BiomeTweaker/output/biome/Dead_Forest (biomesoplenty_dead_forest).json" +hash = "4454d21f1f0d88b83793f1541fc55d974347b4dbf9e71f332ef99332aeacc5de" + +[[files]] +file = "config/BiomeTweaker/output/biome/Dead_Swamp (biomesoplenty_dead_swamp).json" +hash = "c00035a94bc5c295a1d7d789f2b31e8f289d7366d2a039d1cbea4b1a2185ad45" + +[[files]] +file = "config/BiomeTweaker/output/biome/Deep_Ocean (minecraft_deep_ocean).json" +hash = "bdcfd165d09f7b9f0bcf1efdb5a7ec7607bb581a7d55aff4d5f9efb29b72a26d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Desert (minecraft_desert).json" +hash = "63efbed80c6ee066f82f1457b6b216816e10c20327f7ebaf35d442b331db8b8c" + +[[files]] +file = "config/BiomeTweaker/output/biome/DesertHills (minecraft_desert_hills).json" +hash = "22362fba911771e89c6ba010762a9a14ea5a9574bc86cc6263a8aebd56bd318f" + +[[files]] +file = "config/BiomeTweaker/output/biome/Desert_M (minecraft_mutated_desert).json" +hash = "2eb859f13f8a2dba70965366d4772705dca774c2c4eeb9d48b39963f179dafb7" + +[[files]] +file = "config/BiomeTweaker/output/biome/Eucalyptus_Forest (biomesoplenty_eucalyptus_forest).json" +hash = "2d36cf66c9cf7c55a70e243d554d02806ba619fc87dc21618e97a4a871a5bfb6" + +[[files]] +file = "config/BiomeTweaker/output/biome/Extreme_Hills (minecraft_extreme_hills).json" +hash = "91606faf79335aadf9052c83e9a5be80e1c1f0173ed888c977138f12830e93af" + +[[files]] +file = "config/BiomeTweaker/output/biome/Extreme_Hills_ (minecraft_extreme_hills_with_trees).json" +hash = "976bbd65ec579e51e414e27886b22b847094c9328145eb7e0648b7eb7ab190bf" + +[[files]] +file = "config/BiomeTweaker/output/biome/Extreme_Hills_Edge (minecraft_smaller_extreme_hills).json" +hash = "02a44019d2992409ebc48680b8ae391b214278abccc6ecf0a9d32f6a31053431" + +[[files]] +file = "config/BiomeTweaker/output/biome/Extreme_Hills_M (minecraft_mutated_extreme_hills).json" +hash = "12b3631b1b7b41906af78ad95d26848f0ad6a9bb52ebb6b5945ba6c08e7fed1c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Extreme_Hills__M (minecraft_mutated_extreme_hills_with_trees).json" +hash = "e4b02aee337b7afa663b42f0681f1a81317dedcc91ef112451222295e55983b4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Fen (biomesoplenty_fen).json" +hash = "957d00349ea32c8c230ddcc15e4bea2ba2ec175d709e52f9cb5e81e534a9526a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Flower_Field (biomesoplenty_flower_field).json" +hash = "eb4dfe11b8ca9766d591e6d0f77fcc6f7aed05da8c15ae022fd26021c0d880a9" + +[[files]] +file = "config/BiomeTweaker/output/biome/Flower_Forest (minecraft_mutated_forest).json" +hash = "88e4dc824f3dc7c3b8f637c08dfad43e02012b7ba8afe9b55d771e53d547dc0d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Flower_Island (biomesoplenty_flower_island).json" +hash = "4ae9bfdff80c2b40b97578836afe8d3a5d31ed00e97e6b4cc02420d4425c23ed" + +[[files]] +file = "config/BiomeTweaker/output/biome/Forest (minecraft_forest).json" +hash = "2d3b8e5ec6a30b0368cb7f2a93253376d4cfc7d09b90a31e3dd1d599ada10af1" + +[[files]] +file = "config/BiomeTweaker/output/biome/ForestHills (minecraft_forest_hills).json" +hash = "4cf0447ff3a8d2c4f38331afaf5cee4fedab38919aae6975687aaf2bd585f104" + +[[files]] +file = "config/BiomeTweaker/output/biome/FrozenOcean (minecraft_frozen_ocean).json" +hash = "c9ac361cb37e42b28d0637712a8654ab8fda6a5a97af6300727654dbb4ad3268" + +[[files]] +file = "config/BiomeTweaker/output/biome/FrozenRiver (minecraft_frozen_river).json" +hash = "ab4b17887b7365a34f99ca9989d62651b1e5c4b4c30810fc3a637b89933ca64a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Fungi_Forest (biomesoplenty_fungi_forest).json" +hash = "8a590e1434ac133562cd7c6e58c4d368bd17d2a75476795fd49c589d7efacd15" + +[[files]] +file = "config/BiomeTweaker/output/biome/Glacier (biomesoplenty_glacier).json" +hash = "f6c4469f3ee32d1b65127cd0a4979b188f6304e5cee58380c8445aa4d5770a74" + +[[files]] +file = "config/BiomeTweaker/output/biome/Grassland (biomesoplenty_grassland).json" +hash = "11183ffa273daf9d63cd6cf16c1134877c3f529de273978cda595fd390ba5e1e" + +[[files]] +file = "config/BiomeTweaker/output/biome/Gravel_Beach (biomesoplenty_gravel_beach).json" +hash = "5bbdbcfe8a5ad1c6de45905f276cec00383ec029ece870856de19c9540420042" + +[[files]] +file = "config/BiomeTweaker/output/biome/Grove (biomesoplenty_grove).json" +hash = "1ee0fd1cf150f3d2d1eb2545a21805e6d2103f43de23292c6522fc418edb0185" + +[[files]] +file = "config/BiomeTweaker/output/biome/Hell (minecraft_hell).json" +hash = "d79cbf597fa64cace47801104f5b3046cabe03e548ca57bd2516694f9c80ab9d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Highland (biomesoplenty_highland).json" +hash = "1ede730e80f0376fa60361cddb0af85cc2540bf0a7199e775e463fdd8777fd34" + +[[files]] +file = "config/BiomeTweaker/output/biome/Ice_Mountains (minecraft_ice_mountains).json" +hash = "c4b559934f4464dc31a97e9ff1b610d1c6f21c6ebda5ea552fe7839d38d402d0" + +[[files]] +file = "config/BiomeTweaker/output/biome/Ice_Plains (minecraft_ice_flats).json" +hash = "9adb6fe8ae30d37baeb47b51a2d6b6ce65b23f1b6ef9a79451a185d5f05de6a0" + +[[files]] +file = "config/BiomeTweaker/output/biome/Ice_Plains_Spikes (minecraft_mutated_ice_flats).json" +hash = "98714ff59938a54853c2fca3bd098b51acb88c3cb45b35628c500b447cb07dc7" + +[[files]] +file = "config/BiomeTweaker/output/biome/Jungle (minecraft_jungle).json" +hash = "49fa8a9f82de3d67c5bb9d44886fa66b69a7f4639ab6444b8c5d2f94f517c3d1" + +[[files]] +file = "config/BiomeTweaker/output/biome/JungleEdge (minecraft_jungle_edge).json" +hash = "36fa733067f6ffdd673505a2286b3fb7a31c7218aeb83a796ea0f2052d2e0bf1" + +[[files]] +file = "config/BiomeTweaker/output/biome/JungleEdge_M (minecraft_mutated_jungle_edge).json" +hash = "7fe9a0ba8cf17bb18c3c03d6ff90761c5a57b7bb0362f4d438a490b3c2b27924" + +[[files]] +file = "config/BiomeTweaker/output/biome/JungleHills (minecraft_jungle_hills).json" +hash = "c59a2e30733fe39040298bbd4c2a3fb16c20d9260dc0178e2d462aa871e4d31c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Jungle_M (minecraft_mutated_jungle).json" +hash = "df8b414e2b1e832d9bd8c413330c7394894af1530a35c1bffca4d7c11443f8c2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Kelp_Forest (biomesoplenty_kelp_forest).json" +hash = "19832723c76b05e339c920e836dde3d95c606438260fd9bc8ec498456578e253" + +[[files]] +file = "config/BiomeTweaker/output/biome/Land_of_Lakes (biomesoplenty_land_of_lakes).json" +hash = "ac395f6bfccaf7e5acfe1f81e3c665e45400f2dcd9c424997f7152d911cbf3f2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Lavender_Fields (biomesoplenty_lavender_fields).json" +hash = "6d4906f2179f7622bffe528cdd9de6fb2bf8e88e25a8f32f8e3d813e3b9dbe41" + +[[files]] +file = "config/BiomeTweaker/output/biome/Lush_Desert (biomesoplenty_lush_desert).json" +hash = "37067e3acfc38a6b2a855018aef60ebe12b4e1b7ae12d28abb96e787cac3da86" + +[[files]] +file = "config/BiomeTweaker/output/biome/Lush_Swamp (biomesoplenty_lush_swamp).json" +hash = "a193a2ed2ab5b319fffc2045d3b212f47bb1c80593300edf1f18ddaa61a758d9" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mangrove (biomesoplenty_mangrove).json" +hash = "2b0f4ce88de64917d6c1c0f8a04d1b1f61e8ce96308dbf3140aa653e1dd3c0fa" + +[[files]] +file = "config/BiomeTweaker/output/biome/Maple_Woods (biomesoplenty_maple_woods).json" +hash = "acde1999c0630e5bf5e0aa50bc3145e4a99e9a634c7b2a0a2af3b55adc1a1021" + +[[files]] +file = "config/BiomeTweaker/output/biome/Marsh (biomesoplenty_marsh).json" +hash = "2a483ed62f262edbd1ec2871030d1494ba18f2261ee2b54147e9511a5e029560" + +[[files]] +file = "config/BiomeTweaker/output/biome/Meadow (biomesoplenty_meadow).json" +hash = "f0dd4ce3d7ee5a7c8e34b4988ceb5c774b28dedaaac9d7714b88a6ef8e33618f" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mega_Spruce_Taiga (minecraft_mutated_redwood_taiga).json" +hash = "e7c765ca5c70f3d19023fa3ddb75cbd10ef178cb3ab074e51220fce2cc4f1c12" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mega_Taiga (minecraft_redwood_taiga).json" +hash = "2c919dc4ba82fbf51ed3e7de8cfeafc00662a04adb7028603e90cf07e700d6b2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mega_Taiga_Hills (minecraft_redwood_taiga_hills).json" +hash = "dbbc4bdd9b460fc122132acfc99e64bfa88f1745afcaa264e502c95cb863e1e3" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa (minecraft_mesa).json" +hash = "ea30959c281e5829086850a54d4e67fd7e43f15db95bb71f030963c5d5274f2b" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa_Plateau (minecraft_mesa_clear_rock).json" +hash = "f2784fbf36ea73e503919fa36bf2763f8fd473f66619c03e73102e63bf896be1" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa_Plateau_F (minecraft_mesa_rock).json" +hash = "7351a4e9a776227f1e9823844573bb557a8003519926cddd09da3d881ee558a4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa_Plateau_F_M (minecraft_mutated_mesa_rock).json" +hash = "f60d48881777ab431891602bc21966d9816f068c0804dba1b16427c9b405eeb1" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa_Plateau_M (minecraft_mutated_mesa_clear_rock).json" +hash = "b5204d23006e286eecc6f4c1b969dbe7f31b26ddc297ea5a84a7e7aee878cfb0" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mesa__Bryce_ (minecraft_mutated_mesa).json" +hash = "a33e107893bf012b373ed2287e73b2635e25f3dc92e0cd3367a8d05690c02784" + +[[files]] +file = "config/BiomeTweaker/output/biome/Moon (tardis_moon).json" +hash = "ca7c21d37bb8edf2afb11543a673ae4cc57403b4e75e5a510c1e982c8eb8e6b4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Moor (biomesoplenty_moor).json" +hash = "9510cdf828df8d2504fb3ca7f5e0a0b5f302651b62f3b9ab366992458099275e" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mountain (biomesoplenty_mountain).json" +hash = "43409105fc93d9580dc8b512c048b21285e2cddc787e7812e9a24499c9345747" + +[[files]] +file = "config/BiomeTweaker/output/biome/MountainFoothills (biomesoplenty_mountain_foothills).json" +hash = "3197cedc9a07b4f56803e43ef6e58547d3ddee271b4b05147c6a7c9bcc028faf" + +[[files]] +file = "config/BiomeTweaker/output/biome/MushroomIsland (minecraft_mushroom_island).json" +hash = "92ec718121c8d884366832d47323cbc16cb4dfd6bbc32be752c9d889e204493e" + +[[files]] +file = "config/BiomeTweaker/output/biome/MushroomIslandShore (minecraft_mushroom_island_shore).json" +hash = "c54abc0a1d78f982676747db04e41c551fc6a91289324957a88993aeb01c69c2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Mystic_Grove (biomesoplenty_mystic_grove).json" +hash = "d9d328a6465f148518ede73b2db3e28f38a349514c97443e3673a23f3c18bedb" + +[[files]] +file = "config/BiomeTweaker/output/biome/Oasis (biomesoplenty_oasis).json" +hash = "9738e0d470e3802e3c11f7d1049a4dba98e3cb664d26a5fd9b1e5787aa04018a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Ocean (minecraft_ocean).json" +hash = "4402f478d0c5d0d49c0f1742d61c115ff94418dd6bbdaaa718e1e73c095ca6e4" + +[[files]] +file = "config/BiomeTweaker/output/biome/Ominous_Woods (biomesoplenty_ominous_woods).json" +hash = "c72382df688013f7f7ba6bf559b6b72024b812184d143361d758b782e0b8b08b" + +[[files]] +file = "config/BiomeTweaker/output/biome/Orchard (biomesoplenty_orchard).json" +hash = "68d0c9756a46abf520ec111b281ec663edbff3e27df3efcd33c0f0da3c8e7206" + +[[files]] +file = "config/BiomeTweaker/output/biome/Origin_Beach (biomesoplenty_origin_beach).json" +hash = "be8a3fe5e8b8e5a9596c7c0e70ca83e0c537f62ec43cc4e48206270575c3fa1c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Origin_Island (biomesoplenty_origin_island).json" +hash = "d2b604bfcd155325fe59cec5fa4065af46339fcbb0f0ecfd4b37b989c395ab21" + +[[files]] +file = "config/BiomeTweaker/output/biome/Outback (biomesoplenty_outback).json" +hash = "399f3e349848f9828f0056ae0011b4163e32ce76c334f7000eab243430275a37" + +[[files]] +file = "config/BiomeTweaker/output/biome/Overgrown_Cliffs (biomesoplenty_overgrown_cliffs).json" +hash = "d80e585981c34e5dc3e8608efac3ab15332e805b9db1b5c3af8c8f4b08995327" + +[[files]] +file = "config/BiomeTweaker/output/biome/Parasite_Biome (srparasites_biome_parasite).json" +hash = "a272683f94424cc7443862a99c25e8d7e70d93cafa542952674001597000c2b3" + +[[files]] +file = "config/BiomeTweaker/output/biome/Pasture (biomesoplenty_pasture).json" +hash = "cc443140f0c4885890b8375800ca6897fcf5bdc66af6d94dda1362a30aa6d485" + +[[files]] +file = "config/BiomeTweaker/output/biome/Phantasmagoric_Inferno (biomesoplenty_phantasmagoric_inferno).json" +hash = "e22e1a17beea0509a9b6f01303d48835c68b050ce43467b162b58517a9ed8a0b" + +[[files]] +file = "config/BiomeTweaker/output/biome/Plains (minecraft_plains).json" +hash = "707ccc67c5d503eb5a02a5b360ed00138edd212ea0f183d308d00dc4c8b814fe" + +[[files]] +file = "config/BiomeTweaker/output/biome/Prairie (biomesoplenty_prairie).json" +hash = "79377ea8929c0b7e68d53f894352cdbae21fbcc44e7c3fbeba9a2f166c9dc416" + +[[files]] +file = "config/BiomeTweaker/output/biome/Quagmire (biomesoplenty_quagmire).json" +hash = "67edc17705ea3960cefef37e0c372c9a7123920e29cb5d8bc8478912f971a559" + +[[files]] +file = "config/BiomeTweaker/output/biome/Rainforest (biomesoplenty_rainforest).json" +hash = "eba71036e3731fad0d288ac69761f896e77d61d3b7951b3cc60deed092751dae" + +[[files]] +file = "config/BiomeTweaker/output/biome/Red_Mountains (tardis_mountains).json" +hash = "641577da4730157a6d5e3ce2522dc21514d2f1f7406609d11a5aed4e4d50a50a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Redlands (tardis_redlands).json" +hash = "0dcd0c8ce40e5a845d46d47d4292cc13158ee3019e046e3e1b3acc14edd7f388" + +[[files]] +file = "config/BiomeTweaker/output/biome/RedwoodForest (biomesoplenty_redwood_forest).json" +hash = "6a1ca4fe2ee6785ca4e47328e64c50921d54212da7e7753703a8f3d5cd26162d" + +[[files]] +file = "config/BiomeTweaker/output/biome/RedwoodForestEdge (biomesoplenty_redwood_forest_edge).json" +hash = "720e695ba4d020e47542737262a023e9dfc5a3d51faaddceeca1f482217428ec" + +[[files]] +file = "config/BiomeTweaker/output/biome/Redwood_Taiga_Hills_M (minecraft_mutated_redwood_taiga_hills).json" +hash = "aaac0572c92cabab60ec48cb45a28fc232a4134304c93e7b7f3ebf55031e5e31" + +[[files]] +file = "config/BiomeTweaker/output/biome/River (minecraft_river).json" +hash = "18f25dd379fced1e95e50e9e8089040619fb8788067aa4bb9b484712111ef0a0" + +[[files]] +file = "config/BiomeTweaker/output/biome/Roofed_Forest (minecraft_roofed_forest).json" +hash = "f4580f2730ec89a90a8323d05941c1ff9e982e7f89619a4d4d79903ee43a650c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Roofed_Forest_M (minecraft_mutated_roofed_forest).json" +hash = "9da3f8b1829c1efbec2e258e39e8964d1b038bf5bd58156a2dbf85e38becbefb" + +[[files]] +file = "config/BiomeTweaker/output/biome/Sacred_Springs (biomesoplenty_sacred_springs).json" +hash = "504aeab0639053f56e01c6cf46291b22b3d3e3b982b1f09fe6711d2e730b7ecd" + +[[files]] +file = "config/BiomeTweaker/output/biome/Savanna (minecraft_savanna).json" +hash = "0333ea787ab13c683aee00be1812d131a432c1dc7c65013ef3cce6c74f1c9bf2" + +[[files]] +file = "config/BiomeTweaker/output/biome/Savanna_M (minecraft_mutated_savanna).json" +hash = "8366330c49c604b9dd2279d3d34d612957c8ec122ea93831135347c680071175" + +[[files]] +file = "config/BiomeTweaker/output/biome/Savanna_Plateau (minecraft_savanna_rock).json" +hash = "5b04894df52a3460a5b3e49c9c81b72b2ae40d1d103c24b54785bc473ec75fc5" + +[[files]] +file = "config/BiomeTweaker/output/biome/Savanna_Plateau_M (minecraft_mutated_savanna_rock).json" +hash = "135355f566e19e14cbd7399b75b8403c6175d0830714a384d984fd6b21046c90" + +[[files]] +file = "config/BiomeTweaker/output/biome/Seasonal_Forest (biomesoplenty_seasonal_forest).json" +hash = "f54a8aa311fb13d5df545b3609f5141dc594eb1e9d672edd1a459502357e9649" + +[[files]] +file = "config/BiomeTweaker/output/biome/Shield (biomesoplenty_shield).json" +hash = "e024033ed0b0059b9b45120ae28d823e3b06a7e064b3b1ca0ed0d639430edf21" + +[[files]] +file = "config/BiomeTweaker/output/biome/Shrubland (biomesoplenty_shrubland).json" +hash = "7e6f2b819a365a25ebbe1292c733d8d6e3413aceb3b0014ce7771437f40098bb" + +[[files]] +file = "config/BiomeTweaker/output/biome/SnowyTundra (biomesoplenty_snowy_tundra).json" +hash = "6bd63ab1dfe3e4ca336f03f5c616a3eff8aa720a77fdc535f07a5b91f507e4c5" + +[[files]] +file = "config/BiomeTweaker/output/biome/Snowy_Coniferous_Forest (biomesoplenty_snowy_coniferous_forest).json" +hash = "a21e6d2d8db32304f54a9abba7a6a368bcbda8401260582e240fb84222da3130" + +[[files]] +file = "config/BiomeTweaker/output/biome/Snowy_Forest (biomesoplenty_snowy_forest).json" +hash = "8f9d6fd2f977e113f763b635b21e3833336460e5047a3165ef02b045fe2d335e" + +[[files]] +file = "config/BiomeTweaker/output/biome/Steppe (biomesoplenty_steppe).json" +hash = "f1bc18a5d207819fc7d44737c3cf839d7bf527c0e42c7d47e626b29a5a1c073d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Stone_Beach (minecraft_stone_beach).json" +hash = "e1f1778417823df3caade023aae52ce4bcf2a0351f685f0b388e793f5e57308f" + +[[files]] +file = "config/BiomeTweaker/output/biome/Storage_Cell (appliedenergistics2_storage_biome).json" +hash = "401ac2312aa0e29f87a34f09e741c9b16aafdc64eca1c6821229a8725743f948" + +[[files]] +file = "config/BiomeTweaker/output/biome/Sunflower_Plains (minecraft_mutated_plains).json" +hash = "0e00bda02e86402fcf37de4160b6a2c05920cc4b46c974fae8619e2ab968df3c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Swampland (minecraft_swampland).json" +hash = "80ecc6d3d45b517cf1512abf89632c53afdebfea966c6f745a8a88b7e7b8d99d" + +[[files]] +file = "config/BiomeTweaker/output/biome/Swampland_M (minecraft_mutated_swampland).json" +hash = "2a0667b24491fd084d7a2d3a461e9714f569de8c853d555f8d6e32bc48684294" + +[[files]] +file = "config/BiomeTweaker/output/biome/Taiga (minecraft_taiga).json" +hash = "00e1b05324ba8ee2617ffb65820f101c3fe995d0f622837d2573476e7fae5816" + +[[files]] +file = "config/BiomeTweaker/output/biome/TaigaHills (minecraft_taiga_hills).json" +hash = "8b19a889071647af2081161c476724150f56dd553634dcda86d51dcc81c3d458" + +[[files]] +file = "config/BiomeTweaker/output/biome/Taiga_M (minecraft_mutated_taiga).json" +hash = "9ba40d05562592cf07551f7296093ebd71d08a2db9138dfab366ce010b1b2627" + +[[files]] +file = "config/BiomeTweaker/output/biome/Telos (tardis_telos).json" +hash = "a568d5801bc8c2c44677edce83b587ddc1194c7b4061394ba1eb97b29cdb0aa9" + +[[files]] +file = "config/BiomeTweaker/output/biome/Telos (tardis_telos_orange).json" +hash = "16358bfd392317a22c30f7a806eb11a43c6d1602d052dd9f3f7b4f8fe96a2833" + +[[files]] +file = "config/BiomeTweaker/output/biome/Temperate_Rainforest (biomesoplenty_temperate_rainforest).json" +hash = "8388fe61b2cd2d499a0f5ee41c40055b4aaa136f8702392efd35ddac31004da1" + +[[files]] +file = "config/BiomeTweaker/output/biome/The_Beneath (beneath_the_beneath).json" +hash = "51b220d6f2e2c737affe1b2a363e9a53ade2b6fdaa1697dead5b25eabf690822" + +[[files]] +file = "config/BiomeTweaker/output/biome/The_End (minecraft_sky).json" +hash = "60262309457db63f739dbaf898c582d47c3ef4bb96d10d1547f613493116f836" + +[[files]] +file = "config/BiomeTweaker/output/biome/The_Void (minecraft_void).json" +hash = "8e11b5b8cf214f399eb4a764e27dc116d4083838e6417ff2f3d4182e3910797a" + +[[files]] +file = "config/BiomeTweaker/output/biome/Titan (biometweaker_titan_surface).json" +hash = "16889ec1d13a8aa89b2c4d780f03459343049841688de85d67a6c13b3893f333" + +[[files]] +file = "config/BiomeTweaker/output/biome/Titania (biometweaker_titania_surface).json" +hash = "bdf6fd4fe9e915b56d74bf95a404b47f4b3068ae3ebf288eda14ee9b81ef07d0" + +[[files]] +file = "config/BiomeTweaker/output/biome/Tropical_Island (biomesoplenty_tropical_island).json" +hash = "641863f2d81293da40a1c9f5d28e77292083d814f9e3f5b690a3fea6cb7f88ea" + +[[files]] +file = "config/BiomeTweaker/output/biome/Tropical_Rainforest (biomesoplenty_tropical_rainforest).json" +hash = "b1ea9d627e1ef1f6f7ac604f5829faddddf0af42c4003263ae603551743c2c8c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Tundra (biomesoplenty_tundra).json" +hash = "8ba2078bcae6537048954f5c45142d4ed23a0ba12076885e643484a3f1c9e73e" + +[[files]] +file = "config/BiomeTweaker/output/biome/Volcanic_Island (biomesoplenty_volcanic_island).json" +hash = "57c3fd5688fc234f53123da67ad080dd0a2fe6f4229a29f25686f617473b1d3e" + +[[files]] +file = "config/BiomeTweaker/output/biome/Wasteland (biomesoplenty_wasteland).json" +hash = "46a1558f8483e0193e14554f24e7510abbd30be89bff1a409d362be8c3180740" + +[[files]] +file = "config/BiomeTweaker/output/biome/Wastelands (tardis_farmlands).json" +hash = "ea6488256342ce3617ab7d9c54c145b6b54a3c6414ea0e11cca51e72d5eac895" + +[[files]] +file = "config/BiomeTweaker/output/biome/Wetland (biomesoplenty_wetland).json" +hash = "1cbd745f069bee3d064ad2fd48df0a9713139fcefefc87d59d0a7c15a5c4f7ab" + +[[files]] +file = "config/BiomeTweaker/output/biome/White_Beach (biomesoplenty_white_beach).json" +hash = "32deef327dd4c84642ec30f285c960ebf9f1c629bd3dce120d4913fa66200c2b" + +[[files]] +file = "config/BiomeTweaker/output/biome/Woodland (biomesoplenty_woodland).json" +hash = "b37354b2d94ce906de52b3af4e9997780e13affb53d0d8840d8e1d580377f13c" + +[[files]] +file = "config/BiomeTweaker/output/biome/Xeric_Shrubland (biomesoplenty_xeric_shrubland).json" +hash = "c499311939bfa92beb46119aaddeec7cfbde80bf1875cff551a492d14ede8c01" + +[[files]] +file = "config/BiomeTweaker/output/biome/moon_light (biometweaker_moon_light).json" +hash = "f356ceffb6c2ae4d089da6add48775ce63399db93c29e3b150a23bea67c72ad1" + +[[files]] +file = "config/BiomeTweaker/output/dimension/JED_End (_dim1).json" +hash = "6209a6c97a80de533c37227da48ab9b15ddf1e9914e19b0f551827dd481fd3a2" + +[[files]] +file = "config/BiomeTweaker/output/dimension/JED_Hell (_dim-1).json" +hash = "45f2e83811a0057c9399185bd8afd049a4060966bcfc67b3751030ad05b4eca2" + +[[files]] +file = "config/BiomeTweaker/output/dimension/JED_Surface (_dim7891).json" +hash = "b0df5124839778178bc25fd9d08ec7e71cb561569ea1d05c9aa19a7b6caa4f24" + +[[files]] +file = "config/BiomeTweaker/output/dimension/JED_Surface_0 ().json" +hash = "fdca085820100aa275a3d1a44dfbf752c887e0d78a6671f1592d6ce1cc2578cb" + +[[files]] +file = "config/BiomeTweaker/output/dimension/JED_Surface_Loaded_0 (_dim0).json" +hash = "4c19baa86ab12b7479d806154250b16d58b7759eae8332d20a5f79f9f96b6eb6" + +[[files]] +file = "config/BiomeTweaker/output/dimension/Nether (_nether).json" +hash = "689e345f4e4eb23bbc6285d68c3dfd02b03953cd0be752e866b3dc64bc4a1910" + +[[files]] +file = "config/BiomeTweaker/output/dimension/Storage_Cell (_cell).json" +hash = "9fad3c345923b227b126acf79393a570181d5c942296cd401ba0552e8667ac64" + +[[files]] +file = "config/BiomeTweaker/output/dimension/The_Beneath (_tb).json" +hash = "68a5cd4bc7e3e2b40a5dafb9f3d159eb73e3e5ddc23a714a8be3f3650d2dacfc" + +[[files]] +file = "config/BiomeTweaker/output/dimension/dimstack_custom (_custom).json" +hash = "ff8e6550faeec3be9256f95585fafaa4bba161cd216a6f62dd4348fd5d0b9631" + +[[files]] +file = "config/BiomeTweaker/output/dimension/gallifrey (_gallifrey).json" +hash = "1c5eeddddb281e56fb796d374494de3aeae853c40222223c263927346b6f46a5" + +[[files]] +file = "config/BiomeTweaker/output/dimension/lostcities (_lost).json" +hash = "507c88014e2be9421554cc39fb66acbb6ea6cce585076a5b45bd6d6829807509" + +[[files]] +file = "config/BiomeTweaker/output/dimension/moon (_moon).json" +hash = "185a52b9d7621e1f88682ed9166043014d249319704f2ee750d753d9cb763bbf" + +[[files]] +file = "config/BiomeTweaker/output/dimension/overworld ().json" +hash = "ac90d6a911ff065457e312f967d8acba4b69f059288b785422e9046bcae6a415" + +[[files]] +file = "config/BiomeTweaker/output/dimension/space (_space).json" +hash = "d6802f20bb732205e310fbe613d84e32870ce4088a835529a793cd81ae67772f" + +[[files]] +file = "config/BiomeTweaker/output/dimension/tardis (_tardis).json" +hash = "a3cec3ed35ef1fedc2a8a1de125f7f7137224075b295456fdc1d2440ba510143" + +[[files]] +file = "config/BiomeTweaker/output/dimension/telos (_telos).json" +hash = "ea8e9d200c434c264a054165c4c3fe1464d908128c9273f218ed18a249461efc" + +[[files]] +file = "config/BiomeTweaker/output/dimension/the_end (_end).json" +hash = "9b15471b6aa9a31f1a9a7ae1108092b148b266caa59d3a160ccd41232d3bfb9e" + +[[files]] +file = "config/BiomeTweaker/output/dimension/the_nether (_nether).json" +hash = "c00562a9feaba625231af4023580778d9d89fc0e7ca178416245c305be39c406" + +[[files]] +file = "config/BiomeTweaker/output/entity/Bat (minecraft_bat).json" +hash = "56c7bdcafee2a34c86d6adcf602ee9f86859a8a1cc84acd5da6a267b6ea6c3a8" + +[[files]] +file = "config/BiomeTweaker/output/entity/Blaze (minecraft_blaze).json" +hash = "d4f8c1731fe2cb1df06fdd7aceb0ccbfe31ec27b6d2d2fdf8a419462dfb69ba7" + +[[files]] +file = "config/BiomeTweaker/output/entity/CaveSpider (minecraft_cave_spider).json" +hash = "8dfb016fec98e639b1b0e0c7b0d320325e28614ca5d2cdb0c268e3dfdb0a2e97" + +[[files]] +file = "config/BiomeTweaker/output/entity/Chicken (minecraft_chicken).json" +hash = "275a14869ca30d34185935b860ddadf004f76e107fc020c8e1dead5439261520" + +[[files]] +file = "config/BiomeTweaker/output/entity/Cow (minecraft_cow).json" +hash = "10652e612744e2189ffa7ea74a71040a76f6db489550b4cc88a18897d4ae5e0f" + +[[files]] +file = "config/BiomeTweaker/output/entity/Creeper (minecraft_creeper).json" +hash = "3c9deba1fe7034600c1c789c305289198bf9f9d1c6d393a5a122304f5cb2326b" + +[[files]] +file = "config/BiomeTweaker/output/entity/Donkey (minecraft_donkey).json" +hash = "dc399525b895f253b51542973ca1d317d3403ea4df308bf505a26162e6c55df4" + +[[files]] +file = "config/BiomeTweaker/output/entity/Drone (susy_drone).json" +hash = "1c9c741c4b4c43c47201c703c43b5af0233e1d2c55bad3c567b65796ac803ee5" + +[[files]] +file = "config/BiomeTweaker/output/entity/Drop_Pod (susy_drop_pod).json" +hash = "19cdcda4e257d48abc031666359c72d9fc5f0c9d46db80569ac50478e9b2da42" + +[[files]] +file = "config/BiomeTweaker/output/entity/ElderGuardian (minecraft_elder_guardian).json" +hash = "a8db4ac8d93f30e7c679da91a8cade42501f28e7ee81a68963f97bab709ff823" + +[[files]] +file = "config/BiomeTweaker/output/entity/EnderDragon (minecraft_ender_dragon).json" +hash = "c23f989c0742b9754f32260c638f02e024433b1fd38f46951a680e9e732dc4b1" + +[[files]] +file = "config/BiomeTweaker/output/entity/Enderman (minecraft_enderman).json" +hash = "edea02cf30f7e26cdce5dea531261446b39750c08efc33b8c4906409f644f4a7" + +[[files]] +file = "config/BiomeTweaker/output/entity/Endermite (minecraft_endermite).json" +hash = "efa9aa53ea5871691a346a5d959870e7a33ab730331420b55a8b5b54c9b5fe35" + +[[files]] +file = "config/BiomeTweaker/output/entity/EvocationIllager (minecraft_evocation_illager).json" +hash = "b70a40fbca01d1ead98aebb5501f950ce41a30f3245835dc6b50430b337d17df" + +[[files]] +file = "config/BiomeTweaker/output/entity/Ghast (minecraft_ghast).json" +hash = "25ce2e7d1925f3fd29a257b85abe49cc980bed080e10c1e0764d06ba72f46d28" + +[[files]] +file = "config/BiomeTweaker/output/entity/Giant (minecraft_giant).json" +hash = "563446fc93c7d68eb8a2804aeead088c7bc1237b094e756337018c8d84d43a3e" + +[[files]] +file = "config/BiomeTweaker/output/entity/Guardian (minecraft_guardian).json" +hash = "842eeb2997026ac4f1d0b977273c4845ffe660e04bdbca1c2fe068ad2ff4f073" + +[[files]] +file = "config/BiomeTweaker/output/entity/Horse (minecraft_horse).json" +hash = "917e0fd4244be3568ca46512b5418e2be4bab31d1fc99ac6a4251246abd8b59b" + +[[files]] +file = "config/BiomeTweaker/output/entity/Husk (minecraft_husk).json" +hash = "ed39d7f2d82374bd179595c58b178b826e759315debd3a3548809b7965e97f17" + +[[files]] +file = "config/BiomeTweaker/output/entity/IllusionIllager (minecraft_illusion_illager).json" +hash = "3c17c28721aad90b1ac3d488b56f4a353afdc5fd02f4488a80e3604797b65c43" + +[[files]] +file = "config/BiomeTweaker/output/entity/LavaSlime (minecraft_magma_cube).json" +hash = "3ad3f519b33addcab4112de25800af837f688101663f9f05f4f3cb26541c03bf" + +[[files]] +file = "config/BiomeTweaker/output/entity/Llama (minecraft_llama).json" +hash = "5e6428352a438c8e9d2478ab2db8fa966f1bd17409a51f47b035fe723ba98892" + +[[files]] +file = "config/BiomeTweaker/output/entity/Mule (minecraft_mule).json" +hash = "1f4d2a8627ce84834a36076c94c106cc2d35622b7ec7622414d5206df8a57e19" + +[[files]] +file = "config/BiomeTweaker/output/entity/MushroomCow (minecraft_mooshroom).json" +hash = "378224df7b9cc6efb4c9ae85458d193cf27c8777cd32eb57b12d00bcfd6063ef" + +[[files]] +file = "config/BiomeTweaker/output/entity/Ozelot (minecraft_ocelot).json" +hash = "026c20bb0a9464393847c3ffc4d64cf9ab1e831bc4ebeb6e71efb89f8c8bcbe0" + +[[files]] +file = "config/BiomeTweaker/output/entity/Parrot (minecraft_parrot).json" +hash = "259929487121b42986e8f5a207c707e804cb3007209bafc3ea486dbf328be462" + +[[files]] +file = "config/BiomeTweaker/output/entity/Pig (minecraft_pig).json" +hash = "9a36d1cc421da9f703e0aa82451402b0472248925784bd5810e53cbeb6580fad" + +[[files]] +file = "config/BiomeTweaker/output/entity/PigZombie (minecraft_zombie_pigman).json" +hash = "85a69e41cd446ca99517e919dd92a0c12f9a74d857f361d0c06dc4a55e6f3eb3" + +[[files]] +file = "config/BiomeTweaker/output/entity/PolarBear (minecraft_polar_bear).json" +hash = "2ed21ab63891571d83b6e886cd30bf47f41982f95a8f7838d15c26b3b6f18df9" + +[[files]] +file = "config/BiomeTweaker/output/entity/Rabbit (minecraft_rabbit).json" +hash = "d14aaba29fca9471cc6de3a150c4766223521b75981dd5ff427f7343d421ac73" + +[[files]] +file = "config/BiomeTweaker/output/entity/Sheep (minecraft_sheep).json" +hash = "598f757d1646fb7d7b931127d2aecc2aa5384bbffd450d52ef4e0c835b93e43f" + +[[files]] +file = "config/BiomeTweaker/output/entity/Shulker (minecraft_shulker).json" +hash = "b2fb1b62568c870e988e19af01773275791d5a99cdbf123b4bfedcf42b6bb8f5" + +[[files]] +file = "config/BiomeTweaker/output/entity/Silverfish (minecraft_silverfish).json" +hash = "8ffe3b39c53335acff3f7ad6d0af3ce00c6f9350954b010b5c129322601fd353" + +[[files]] +file = "config/BiomeTweaker/output/entity/Skeleton (minecraft_skeleton).json" +hash = "f1662409b04747e5e3e4483c4473ee46fb4cdcb451abe9cf853cfebe11abe1f5" + +[[files]] +file = "config/BiomeTweaker/output/entity/SkeletonHorse (minecraft_skeleton_horse).json" +hash = "0059221909f30bbbde448c005cd4a7e1aa19a0ff7c5df66e40fa7ac0a3af4c63" + +[[files]] +file = "config/BiomeTweaker/output/entity/Slime (minecraft_slime).json" +hash = "ab2a8d140bf9e575ab6cc72c2be59aae46071fc5619ff7acb783da2c683478d7" + +[[files]] +file = "config/BiomeTweaker/output/entity/SnowMan (minecraft_snowman).json" +hash = "1814737269246f7a19f8f76607d0b3699f97db5dd3184deb91f0776eb7257c65" + +[[files]] +file = "config/BiomeTweaker/output/entity/Snowman (gregtechfoodoption_strong_snowman).json" +hash = "77f623d227ddb00d42b3198c862e1cddb78d8e2779845ccde582745327d6b2fd" + +[[files]] +file = "config/BiomeTweaker/output/entity/Spider (minecraft_spider).json" +hash = "1a612116e0762c6daaa73e6866f4b0e6c80790f0cad04830b3eb31ac6295aa34" + +[[files]] +file = "config/BiomeTweaker/output/entity/Squid (minecraft_squid).json" +hash = "bb482dad2efc0267f4e8224e83706053e85cb04b3cc3be02dba8395cb248f969" + +[[files]] +file = "config/BiomeTweaker/output/entity/Stray (minecraft_stray).json" +hash = "56ff77a96b84756766095ef87f1147090dd0bfaf897576b5be20c269d12786ac" + +[[files]] +file = "config/BiomeTweaker/output/entity/Vex (minecraft_vex).json" +hash = "b3c4bb0699a1707d9c5099b02abe8617dd7e64edf979d702b74fbf1b88b57c0f" + +[[files]] +file = "config/BiomeTweaker/output/entity/Villager (minecraft_villager).json" +hash = "e7f09e757b91b511a03b321da37ff516dd33a70e64a49349996514d1a67d2602" + +[[files]] +file = "config/BiomeTweaker/output/entity/VillagerGolem (minecraft_villager_golem).json" +hash = "b1272124bf28b46e8a3551fc7b72127c398cc44f27fd2ca060940c931006b63f" + +[[files]] +file = "config/BiomeTweaker/output/entity/VindicationIllager (minecraft_vindication_illager).json" +hash = "f4b8ca8f04b9622138bc6095f6e1e89ba02d8d9c058201d4868845d096e6fb5d" + +[[files]] +file = "config/BiomeTweaker/output/entity/Witch (minecraft_witch).json" +hash = "1fdbe621bb908118f3ea7e7dcff6234a6f6c894b63f73de95b6364b3419394b5" + +[[files]] +file = "config/BiomeTweaker/output/entity/WitherBoss (minecraft_wither).json" +hash = "6ef768dffb8823642c3fb9d9dc9cf741a1c0e4a77b098302d6cfabc8d184ec3c" + +[[files]] +file = "config/BiomeTweaker/output/entity/WitherSkeleton (minecraft_wither_skeleton).json" +hash = "bdf5c192c19fc7aa9a4843e8f35285a5715794a37efd51606fcbdb43da41f079" + +[[files]] +file = "config/BiomeTweaker/output/entity/Wolf (minecraft_wolf).json" +hash = "767c0547cb564b383adb5a220452638d41732f2fc663b8353fa89ea0e973b720" + +[[files]] +file = "config/BiomeTweaker/output/entity/Zombie (minecraft_zombie).json" +hash = "aece8a2a7d3151af8e332256f524446585a516af3727d9a8c0221a187b478a68" + +[[files]] +file = "config/BiomeTweaker/output/entity/ZombieHorse (minecraft_zombie_horse).json" +hash = "84eb07d521be58774b74f42270c5f361e360930e71e25b382af7d82faabb8334" + +[[files]] +file = "config/BiomeTweaker/output/entity/ZombieVillager (minecraft_zombie_villager).json" +hash = "434c7729da9c9ec1db1d34cc68af71003d3c9d85e7ef79fa78f573a70b31ff84" + +[[files]] +file = "config/BiomeTweaker/output/entity/angel (weeping-angels_weepingangel).json" +hash = "1fcf557e2858dbc30553828d81549249c282f18aa25f2800333fe9e806ab0098" + +[[files]] +file = "config/BiomeTweaker/output/entity/anomaly (weeping-angels_anomaly).json" +hash = "199d7152ae6cbc947b80d82ec33c0ae4da8c16e875bb047ae5225e987e1eb3cb" + +[[files]] +file = "config/BiomeTweaker/output/entity/beneath.shadow (beneath_shadow).json" +hash = "e1cfb0f22a80cb3eb7ade7e212f12a7b3c2ead2f2817b2540efedd3d41a1270f" + +[[files]] +file = "config/BiomeTweaker/output/entity/caracal (caracalsmod_caracal).json" +hash = "1d52d2d3c0ff0551dce985a37f6b99a3b55b50f4859c6ddbe7532e8c5bf65d03" + +[[files]] +file = "config/BiomeTweaker/output/entity/companion (tardis_companion).json" +hash = "e14769db60ee606cf332628eec6d724092769012d1506c62c6aa8eaa7166212f" + +[[files]] +file = "config/BiomeTweaker/output/entity/cyberzombie (cyberware_cyberzombie).json" +hash = "c06f7b470305f36a58ee5bc99b7551b2e78592c291594aae2f3bac52dc358090" + +[[files]] +file = "config/BiomeTweaker/output/entity/dalek (tardis_dalek).json" +hash = "8a4bccd401eb920d697ad568e00347d4c076a6624d27eaebaa273d689fcc9cd6" + +[[files]] +file = "config/BiomeTweaker/output/entity/dalek_scaro (tardis_dalek_scaro).json" +hash = "a08c9e46eab8abedc0a981c6ba10c632c8f12295862b8fcc7a1a83530c2af6e0" + +[[files]] +file = "config/BiomeTweaker/output/entity/invasion_cyberman (tardis_invasion_cyberman).json" +hash = "59d4f91106f29d9e040863ac74455211a2d579ed448f5c5d094ed6b037a34a5f" + +[[files]] +file = "config/BiomeTweaker/output/entity/italian_buffalo (gregtechfoodoption_italian_buffalo).json" +hash = "9344fa232df13c2a5989d92b3ada3c9acc422457e0fe1a696597672b86ce1517" + +[[files]] +file = "config/BiomeTweaker/output/entity/player_ghost (gravestone_player_ghost).json" +hash = "05138a93ca63df059d2fbb285149d6382485d06f7b76b384b097773c8a8d065b" + +[[files]] +file = "config/BiomeTweaker/output/entity/quark_crab (quark_crab).json" +hash = "ba23b3afd5fc8277e18ffada2c6902599a0cad95612d78cf143c6094d9eec499" + +[[files]] +file = "config/BiomeTweaker/output/entity/quark_foxhound (quark_foxhound).json" +hash = "0794ee46700dc8e848523a19843200358f8da6a7ad5bbf5f1c49de6bd4e76751" + +[[files]] +file = "config/BiomeTweaker/output/entity/quark_frog (quark_frog).json" +hash = "7b125e6a4156967280ab403f8706ff028691d9d9b3a3e3af55d2ba45c202bcc6" + +[[files]] +file = "config/BiomeTweaker/output/entity/quark_leash_knot (quark_leash_knot).json" +hash = "5bf2421d4c0d95683cf0173fc8f7b853e095151a898f4f598054a8ac6e4b7733" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_arachnida (srparasites_ada_arachnida).json" +hash = "cf08e2473a2fecf2e3adc64ce03620f310101249a60a9bd06bc1b646fef7a0c7" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_bolster (srparasites_ada_bolster).json" +hash = "f27891d7932ad3a27b6fe321b84dfd37dcf5b3657f33d442164e33b63b54a9b1" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_longarms (srparasites_ada_longarms).json" +hash = "eb95be568635555af01495cbf602b57fe770440fe7f33a94f90b7d023aca1f6b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_manducater (srparasites_ada_manducater).json" +hash = "e6d3742063223058134b36970ca1f36f4aa994095600997ea190786b999c7b58" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_reeker (srparasites_ada_reeker).json" +hash = "cb322a5842ec969407c346bd91e61b818efb3f97bb5370db350a57a7a87de37e" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_summoner (srparasites_ada_summoner).json" +hash = "71a4a9601a30f1fd7783841956b058ea21f4d2041adcdd36c8d34b40d7adb67c" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.ada_yelloweye (srparasites_ada_yelloweye).json" +hash = "48875e1f67af9b666027812a9ed0c57b721fac4648fd25872855b8f6f2b59009" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.anc_dreadnaut (srparasites_anc_dreadnaut).json" +hash = "5bde56ed20e9c74da4858dccf7689ed2727e932d491be6e7031953e2926254a8" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.anc_dreadnaut_ten (srparasites_anc_dreadnaut_ten).json" +hash = "0675fec3e034e54046c386b7d6ecdbd1630bbba31d402bee6c3602ab7d40a857" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.anc_overlord (srparasites_anc_overlord).json" +hash = "c2b343ab9ca6ce9ccc2c042aec92b3c22392cfb1e740dce4b017403849f3948a" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.anc_pod (srparasites_anc_pod).json" +hash = "23b53d1b0440f2d1e05342eb30b62245200a8060bddd9391075fa3e148884f0f" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.beckon_si (srparasites_beckon_si).json" +hash = "818f4498d47ac33cc0babbbba18a74c5a28759edb1c3bdd48f0007880a5b53ce" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.beckon_sii (srparasites_beckon_sii).json" +hash = "73ed3c26a17e7371f04b9f5388d3c4efe67610a844802d21d73ce5bcbfabd78a" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.beckon_siii (srparasites_beckon_siii).json" +hash = "41db5ea28da6c778ed2ce431955bb3d8c0bcfe7532fc5b6caa721e9b0d1d9372" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.beckon_siv (srparasites_beckon_siv).json" +hash = "8449f32404f8d5976d4fde8bf26d5e70fd012e750dadf1a0d96de025edf9f26a" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.biomass (srparasites_biomass).json" +hash = "839f96b4795a34cdc0ab12b1ad66384da80508d88454d83f0a41d43b09489189" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.bogle (srparasites_bogle).json" +hash = "8744121287ac72d74f5e8896e6a89ba5252aa6e2ef71763c1a0197525e6c4e52" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.bomber_heavy (srparasites_bomber_heavy).json" +hash = "5917c9ce5a99093abb61a17ee2b98818a78aea4a0b7bbedf6264c68eb3f76f68" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.bomber_light (srparasites_bomber_light).json" +hash = "ae3c1b654822398e332e519eb785f7811dd99ce7402e0c164262f8615bfa98be" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.buglin (srparasites_buglin).json" +hash = "d2b21e1973108c54d0b46bb6bb5bc23f2ad67b50ab0e022e2c62a639cd8d1bb5" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.carrier_colony (srparasites_carrier_colony).json" +hash = "ce06f020b2f0de5adc50606696797fd67b00b9183bef5960b06a96949ce18d3f" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.carrier_flying (srparasites_carrier_flying).json" +hash = "2fe5762188eb98d7dd897fbe03ab33dd27c46c989885a1d66af3e16fde4f40f4" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.carrier_heavy (srparasites_carrier_heavy).json" +hash = "f8c2adf438e28660a68ee2ac66e697977ccc2c3a4dd2d80b7b83a9fc65df8a1c" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.crux (srparasites_crux).json" +hash = "298efdcbc5640d0bfeb6bc15f810714e0a9aff7b91575d905883f8dba810db3f" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.dispatcher_si (srparasites_dispatcher_si).json" +hash = "eed4750ff6531d48e7b58e53ec012900fb12f82b8118b476fca53f8e316f82e1" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.dispatcher_sii (srparasites_dispatcher_sii).json" +hash = "ab8ee8ac244d81bf37397e2e9ee821bdbe397827865553748e6388441578fa3b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.dispatcher_siii (srparasites_dispatcher_siii).json" +hash = "4a53dc59eda54a43b9e763092ddf89fd291e970b496f4898ac91aa360c959b57" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.dispatcher_siv (srparasites_dispatcher_siv).json" +hash = "0a36f39c9e888ef839ecf96c4a8b9bdfa64a37f39766149a01c7f2f0a276cb8a" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.dispatcherten (srparasites_dispatcherten).json" +hash = "86e0230a46710c6d82c41b0f80053d900479e3362c0a68c58a965c6c450be566" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.grunt (srparasites_grunt).json" +hash = "d5d6f10a7e8cdd3b676fe8f5f0ee84f011287a5dc780cea08882e54d6cae7549" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.haunter (srparasites_haunter).json" +hash = "dd19a85353e526599181785738546308ce13fb23866346dddb007608963c83e5" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.heed (srparasites_heed).json" +hash = "4aa75aff79b5debe33734b7474d3ac6efd52d8799936eee9f1283f9b4bea19da" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.homming (srparasites_homming).json" +hash = "89fa0b842b10ffcd611daa7abe3c4064c22fe6b2694b2b2b7d77a1c1c262b9eb" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.host (srparasites_host).json" +hash = "29c805d0c6a559983471df5c5677580f52c3bb607f9e4fb80a0e3458fbb59449" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.hostii (srparasites_hostii).json" +hash = "3c994579c09eddeaccdf9b48a880e4a60499514f657ae58834e94772eb9c8e00" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.incompleteform_medium (srparasites_incompleteform_medium).json" +hash = "430726a483013a8cf74ad37d12b37ec45cfc4bc40f80a0e94c3330faa32c5090" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.incompleteform_small (srparasites_incompleteform_small).json" +hash = "f508c24e8466733f789492f81cb9b28cc2eb464768eb4ba1f0c4bedbaf98dec5" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.kyphosis (srparasites_kyphosis).json" +hash = "36073bacffd5bf1240fad9258a77e84f8a126c81b73444b4eb0b2110ebb5aa94" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.mangler (srparasites_mangler).json" +hash = "26e49a696e43bdb5bf0acd0da070ee41b8dfff4e9d228a0131836cdf1e33ae9c" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.marauder (srparasites_marauder).json" +hash = "2fe784b56505c5c1aac84a3bb64ea93751a13c5e458db053547ed1c14561fa74" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.monarch (srparasites_monarch).json" +hash = "48e75d6dd4de1a8cc1792eac455bbf87f5bd378a1e6f4df3ddd9fad567437a7c" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.movingflesh (srparasites_movingflesh).json" +hash = "06bdd6863e05032a61cf5639591dd1736252c8e3daff1d734b5d86d740ead289" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.overseer (srparasites_overseer).json" +hash = "6aac0f2dd84f401b286f619b028fe04e2fd813a3502fc57d6c0b433246c34010" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_arachnida (srparasites_pri_arachnida).json" +hash = "f620e4abf0adc946ea8bda1859f702cef86b0af6712963bde655531a545d81dd" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_bolster (srparasites_pri_bolster).json" +hash = "530485e794da49113e199954208c1a551b95f9a2d312f4ea79864d6aeecd7095" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_devourer (srparasites_pri_devourer).json" +hash = "878fe7ddeca270c930a468a904ed4033b5ebe97e372713f2826eeeefff27c34e" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_longarms (srparasites_pri_longarms).json" +hash = "0ae83ef61ddf3bb70a7061f79a7c9de97349fa7f9bbf855f61929534416f8b62" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_manducater (srparasites_pri_manducater).json" +hash = "a7f54cecb7c5b5ed4a95fde2067218467b9b6c48894fed62ddc90d79a4646114" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_reeker (srparasites_pri_reeker).json" +hash = "fbb9d723fce7937b26f0b57d270841b5adec3ac105e8608972ad28061e94676b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_summoner (srparasites_pri_summoner).json" +hash = "1b1900784495676e21632b6ae9178c48a68ad9a1836dabf4a737b2789acf46fc" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.pri_yelloweye (srparasites_pri_yelloweye).json" +hash = "7e0fe4ee78d1da9097d658b3772e67050f1917d649d94c1b65e691e0e63195bc" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.rupter (srparasites_rupter).json" +hash = "80ac082ca8ea887e58a05c3e77d8a70d45cbff370acf557dac7f130e5675eb62" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.seizer (srparasites_seizer).json" +hash = "d827b1d9fbddaaaa26928004318892db07e0b55fe38c80f360cf44980c9e6ce1" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sentry (srparasites_sentry).json" +hash = "995517f4a5ac0ef53ec5b545492af9b3c9f392393e258774fd97e5f14a0fae96" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_adventurer (srparasites_sim_adventurer).json" +hash = "0d299bda39d89f7460a8f887d0ad62d0e16d670c4efeeb01413a64fa914f68be" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_adventurerhead (srparasites_sim_adventurerhead).json" +hash = "a46e97f13d3ac88379a77c907cb33b9384d7fabb60a0a8ff0fbbaac6b60e37a7" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_bear (srparasites_sim_bear).json" +hash = "3a689712ce31d9c8b0bca5e15900f5c0513c5f9db7135f90491a97c408484525" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_bigspider (srparasites_sim_bigspider).json" +hash = "5c8413102b507c0edd414a11e38b77499a4b7a4957f91bd971ca668c543024d1" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_cow (srparasites_sim_cow).json" +hash = "e90edd65168861d3ce0e0ce520d430dcd80ec46df27b22664dd2e0f6457a9114" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_cowhead (srparasites_sim_cowhead).json" +hash = "b33db86d86615731247dcd3ed6721c4b9045aa2d0172d39a9ae1c57177089d47" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_dragone (srparasites_sim_dragone).json" +hash = "baabd06f27d6ff7d848a99c51af9f90c5a400eb135db7913930443d734835be6" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_dragonehead (srparasites_sim_dragonehead).json" +hash = "1364ee08477d6a2c6dab57fafd9eec5c3930c6da2cbdc49e4dabb0492b37bc3b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_enderman (srparasites_sim_enderman).json" +hash = "df442a541bcbbfa45ad41c7f002762f028f624a6a68630c82a3ad92434c9b5c4" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_endermanhead (srparasites_sim_endermanhead).json" +hash = "afccbf42773935e9a0b74575c7037713640cfdebc697c2ee45ffea981935ec06" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_horse (srparasites_sim_horse).json" +hash = "0d1ea64ba7eb8fbf4db8b5639bc038d503c2165a01f5cbb89904e060bc67439e" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_horsehead (srparasites_sim_horsehead).json" +hash = "f6e4fb521ca60c38f279a202647296151f77edc140b6609b833b29ffaad56f63" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_human (srparasites_sim_human).json" +hash = "39ddf888ac7320d642358f0e279ea3ccfd63efa3fce3b7f7a73f8301e39fbe10" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_humanhead (srparasites_sim_humanhead).json" +hash = "19602d8f196a87f20b2671df8859ddbb5935162be80f9baccd746ff7990ad2ab" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_pig (srparasites_sim_pig).json" +hash = "cf02efae521710bd4eab9c2d5f2333175f1821651f529bf7b752b9a28563fbca" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_pighead (srparasites_sim_pighead).json" +hash = "e959c2fe2af21e9bc238fee713c138bfb03668213cc0ad8d0243c4f4cb60e9d9" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_sheep (srparasites_sim_sheep).json" +hash = "b36c485711d8f2d097aaf1ee0c8d0d559b36e67e5f60ba7edd874987fdc1709b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_sheephead (srparasites_sim_sheephead).json" +hash = "5fa387d69a6cf140dafb3c578fbf31e370bab9ef90ec1e4e42c00e565a112666" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_villager (srparasites_sim_villager).json" +hash = "c7de2892988d8d6247d21cc94e0bb7807d5d3beed9a10db3962c6ed2641036ea" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_villagerhead (srparasites_sim_villagerhead).json" +hash = "3271987bfd1454b78ccd03156bbb08d84d01fca994795a08e0088f0b53cd2a99" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_wolf (srparasites_sim_wolf).json" +hash = "5911a9893f6ce6d9dfd5fcefcfa5acbc8a9ce74fdabf7b27a773d736e5078527" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.sim_wolfhead (srparasites_sim_wolfhead).json" +hash = "57857a721acf3f61ef8db15f47a0a89580386125075635afbee6bad7c9003a00" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.succor (srparasites_succor).json" +hash = "fc8b75f3aca8c38741ce42872117f352219361d96360c8b23ce251951dd355bb" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.tendril (srparasites_tendril).json" +hash = "af80ca85a112c56300f18554662236ecec4b2e010a1ba83a13bb1defaa54f4d6" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.thrall (srparasites_thrall).json" +hash = "670a56d62ec285139f19ba671571f57d2af3d07829e69c1835c6b59895872ddb" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.vigilante (srparasites_vigilante).json" +hash = "38817226f84f3143d3cf83c73669c1671030f362247d3dd092f645a52155b78b" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.warden (srparasites_warden).json" +hash = "d983e261c597539c9202982e70316a4f39eb9d6eec45e503a5e5edd8965f48de" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.wave (srparasites_wave).json" +hash = "1a4645696c318cc2c0a73d778004665e0cd9a662af9e8e277bc8db48a5209a12" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.waveshock (srparasites_waveshock).json" +hash = "1705e7845dd7918325f62126f94979652b6e130842f0aac9b53310afee30e605" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.worker (srparasites_worker).json" +hash = "d960e94e4c5ef662173830cf8a8ba10087bcd9dc48d26500ff4834c196a2d412" + +[[files]] +file = "config/BiomeTweaker/output/entity/srparasites.wraith (srparasites_wraith).json" +hash = "2bd236211ef23ce938b8d3f2b1b049ffe82dacd84c51f3e0d0253d8aade975d0" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.AlienBug (techguns_alienbug).json" +hash = "850ff8cec4435cc2de1894ea9f11555dbe48ed90e7a1fd37c42b6405e37f83a4" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ArmySoldier (techguns_armysoldier).json" +hash = "17212d924ef6ccc821933aa8a8f74ecafe7a898528ba2281569d5b8b4b827bd1" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.AttackHelicopter (techguns_attackhelicopter).json" +hash = "8ecebda4f70b0c805ac7c7249267faff4e6279f88247f2e9d6a7167b3b2ddabf" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.Bandit (techguns_bandit).json" +hash = "37d24752c22999c133240ade9b9a053e190f79e5fa1beeeb796a5d20f7907852" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.Commando (techguns_commando).json" +hash = "a45101707255154c2fdd59c16550496473ffc265700784ae9959089830de3dea" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.CyberDemon (techguns_cyberdemon).json" +hash = "9d68f700db9cad7e1d111e2769f972f44bfb04e0757c523cf260b280e32fc3e3" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.DictatorDave (techguns_dictatordave).json" +hash = "a1e6c65f7184121f7b0af158d31f779a248b05af70c1693ad449037fc995431d" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.DummySpawn (techguns_tgdummyspawn).json" +hash = "e59cbc2640e8eb13e600693de52889bd2a6986ab068086235c7c42d77cb95626" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.Ghastling (techguns_ghastling).json" +hash = "ece15d6f270517769f0479bc53d85c7b4739cf3bd179c2be94038077f5585afe" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.Outcast (techguns_outcast).json" +hash = "aa3a50388f9a9c85b1ebc99c76103458a4739b95ebaa7c436cbe2f3665c0c101" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.PsychoSteve (techguns_psychosteve).json" +hash = "8f9688da87506f5a25223d8f044bb3bc09898e39cb22a45d06f31ca777d65782" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.SkeletonSoldier (techguns_skeletonsoldier).json" +hash = "8a8ecca2f1332f933e4e84678aba3c39cfea2a3d826a8a637e6404a9e414db1a" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.StormTrooper (techguns_stormtrooper).json" +hash = "7e1a816f7466223c7833a5525f59999a11d751a89ccc3ce1cf4a3b951e674762" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.SuperMutantBasic (techguns_supermutantbasic).json" +hash = "02781a964f65f0c98193ab570e78a0c043df15aabe30c4017a7082516eb71975" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.SuperMutantElite (techguns_supermutantelite).json" +hash = "6643fdf36fa4721048955e846860ba2d9f3a3d2c4ec20a7f330ab4d656e15d01" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.SuperMutantHeavy (techguns_supermutantheavy).json" +hash = "4dff8360759243fc32a835d77588d6c54095a4ff5510b867056fdadd17436f44" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.Turret (techguns_turret).json" +hash = "669b245f2464ed96dd830cae946324f6c532135b4d7aff8f45b1b66080314727" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ZombieFarmer (techguns_zombiefarmer).json" +hash = "3bdae3702cf07b0a7c7a5017018872edf515b10cd495d29917e8743260caa8f5" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ZombieMiner (techguns_zombieminer).json" +hash = "40725fb624c3d2c22a19e66200db59d0f3c90df40456ce8adf284f7b5a468881" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ZombiePigmanSoldier (techguns_zombiepigmansoldier).json" +hash = "4c0b1425f0011690bf844a7959a602aa33e1a6bff75ba7924e7b44e9e2a5ae8b" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ZombiePoliceman (techguns_zombiepoliceman).json" +hash = "f0f9c8af09c43a756a492e8e9036f8eddbc94f211bcb62602cc3cfb3b23d5b03" + +[[files]] +file = "config/BiomeTweaker/output/entity/techguns.ZombieSoldier (techguns_zombiesoldier).json" +hash = "e6f9cfee0229734f77ae6a7ed98640ecea7c4ed8a4726335bd8dcc220b2c11c3" + +[[files]] +file = "config/BiomeTweaker/output/entity/wasp (biomesoplenty_wasp).json" +hash = "e2aeeea398f3580679dfebecdecbc9034739db2d0a1971c18ec5e4f619d7f041" + +[[files]] +file = "config/BiomeTweakerCore/BiomeTweakerCore.cfg" +hash = "ba5e62780e8daf988fb48473c669f51dd389ffd0515b4b9b0d77b15eb90e0e13" + +[[files]] +file = "config/Building Gadgets.cfg" +hash = "ce35efdfb1864d52f38daa1125c1a8851c49be56b49675a799d94dda902378d3" + +[[files]] +file = "config/CustomMainMenu/mainmenu.json" +hash = "12fe9b1208dd5b0388196b7983984bddc4a4fd7b0136789caa329b95b1ee8344" + +[[files]] +file = "config/GeneticsReborn/GeneticsReborn.cfg" +hash = "b0462d5e4bd09442241e283c6dc42fe6885f2b58ded2b7ac7441485d76a60521" + +[[files]] +file = "config/GeneticsReborn/MobAdditions.json" +hash = "72b849d8fb9c64f01bb274113386b77ae1fa6969d69b165e5521f3f9dcecc785" + +[[files]] +file = "config/GeographiCraft/CCDimensions.cfg" +hash = "a1033fb9e7f9efedbeef0bfcf24610dbf3010884a06a4a16e8fd422fbeb23126" + +[[files]] +file = "config/GeographiCraft/biomesoplentyInCC.cfg" +hash = "b23d743f45b10103d0c1156aad0ddc4faff86566211963860975cf41967b8906" + +[[files]] +file = "config/GeographiCraft/geographicraft.cfg" +hash = "5e4a8d1b6e32393781492937136f7c1a70d635a658a159142d6a9373a66ad496" + +[[files]] +file = "config/Handles.cfg" +hash = "42995f129d82cffd07fe7cdb48f0a33577496fbe299ec053fed3e87e178298df" + +[[files]] +file = "config/InGameInfo.xml" +hash = "bdf9a71b323d5e82d8afed287c7990f2b4ca131407975bd4d9689f24a31b5e06" + +[[files]] +file = "config/InvTweaks.cfg" +hash = "b254ac93c1eb2fd4d68d3ce018de253d8abc3fad204dca83455f3efb2bb9f795" + +[[files]] +file = "config/JustEnoughCalculation/main.cfg" +hash = "9512e12d279050139653aeb6a429eb13745086691b156af47f73bd1d4bbbe98d" + +[[files]] +file = "config/JustEnoughCalculation/record.json" +hash = "f40ea8135c7a0f598d9548eba85c517d05d3244a94b806261f0521dada8d4a15" + +[[files]] +file = "config/LagGoggles-client.cfg" +hash = "f610cc1932db32744e4472165aa58d4db88af46b075210b0d6aed4a0538b5760" + +[[files]] +file = "config/LagGoggles-server.cfg" +hash = "a6e7d0af59e984ca15d6f6ad5640d91d24db9f37f4ab1b91ee2cd63e1dcdbaf3" + +[[files]] +file = "config/LogFilters.conf" +hash = "f65a5b55f9137e48be1e24c0ade221fc4a205a34d2f38cd1aea9883e1a36c75b" + +[[files]] +file = "config/MoreOverlays.cfg" +hash = "9c2ae41d23c8fee1477bf2bd64abc5800ab2f30a549bdbec83804ae80df5a33b" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/alps.cfg" +hash = "d8b3ff98b0e4bbe10e17f0c721d7d921eb6cb9421ddd5cf08c5b90cebbf7e765" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/alps_foothills.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/bamboo_forest.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/bayou.cfg" +hash = "3e39e06e454550fd1831701a3e078311c50b2730dc06be6a07b8d58473f27df0" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/bog.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/boreal_forest.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/brushland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/chaparral.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/cherry_blossom_grove.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/cold_desert.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/coniferous_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/coral_reef.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/crag.cfg" +hash = "39dce739ae57695166087ebb4d0d93a69a5e82a3f8ea9bc6dad17e9d4ed890ed" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/dead_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/dead_swamp.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/eucalyptus_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/fen.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/flower_field.cfg" +hash = "10db91dd8066f9bedda0ba1b4e566713912d568bc5bc74fb5823ab93d4632918" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/flower_island.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/glacier.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/grassland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/gravel_beach.cfg" +hash = "d251bad6f1750a7ac34a21b8c4450a4675e6da86daa66680511bb3f7a4abe6fe" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/grove.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/highland.cfg" +hash = "98e171d4f9b87d58bc6e5091657d754a690b0cdd405565c653044e2c0045c27d" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/kelp_forest.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/land_of_lakes.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/lavender_fields.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/lush_desert.cfg" +hash = "5cf9aacf3a0059d300570f3a4695b8905eea519d54580ca77faabed67df8d571" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/lush_swamp.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/mangrove.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/maple_woods.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/marsh.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/meadow.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/moor.cfg" +hash = "98e171d4f9b87d58bc6e5091657d754a690b0cdd405565c653044e2c0045c27d" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/mountain.cfg" +hash = "13d0f02049a852cdcdc7144d5ea34e68a612b74db2ca373fd4dfe1b618647d52" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/mountain_foothills.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/mystic_grove.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/oasis.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/ominous_woods.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/orchard.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/origin_beach.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/origin_island.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/outback.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/overgrown_cliffs.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/pasture.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/prairie.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/quagmire.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/rainforest.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/redwood_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/sacred_springs.cfg" +hash = "233530e5e6d345795642b1cbef320df0e74010ab1e63706463c4f105235c4343" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/seasonal_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/shield.cfg" +hash = "af8b9350c1bb1aa7799fa62c398420878c5581f48899b6d7499ad67d605be6f6" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/shrubland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/snowy_coniferous_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/snowy_forest.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/steppe.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/temperate_rainforest.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/tropical_island.cfg" +hash = "af8b9350c1bb1aa7799fa62c398420878c5581f48899b6d7499ad67d605be6f6" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/tropical_rainforest.cfg" +hash = "d8b3ff98b0e4bbe10e17f0c721d7d921eb6cb9421ddd5cf08c5b90cebbf7e765" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/tundra.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/volcanic_island.cfg" +hash = "d8b3ff98b0e4bbe10e17f0c721d7d921eb6cb9421ddd5cf08c5b90cebbf7e765" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/wasteland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/wetland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/white_beach.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/woodland.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/biomesoplenty/xeric_shrubland.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/minecraft/beaches.cfg" +hash = "ff91fbe1081eaba89c8d32f922d3981bf772602e28732e259ae0db076eca8359" + +[[files]] +file = "config/RTG/biomes/minecraft/birch_forest.cfg" +hash = "2453534dcbba48cda7c3f898548212fe6062ea2dc9966d88746052c083f888e0" + +[[files]] +file = "config/RTG/biomes/minecraft/birch_forest_hills.cfg" +hash = "01997e2f6cd1ebc1111834042138828a9e3be94d943a53f69e7db6e238cd80f4" + +[[files]] +file = "config/RTG/biomes/minecraft/cold_beach.cfg" +hash = "68931b12b296214fff7676971fb97ad628cd765aaaf1ca484c5aee7e116f73b0" + +[[files]] +file = "config/RTG/biomes/minecraft/deep_ocean.cfg" +hash = "3fe63a90526fbdd61c1e21c9f33e2bf9ac9eb823cf926bf018c1c13255247e4d" + +[[files]] +file = "config/RTG/biomes/minecraft/desert.cfg" +hash = "4a4650863258c894adab0dff03c7ef75d74c93caf0687f2804741ef27e4c1498" + +[[files]] +file = "config/RTG/biomes/minecraft/desert_hills.cfg" +hash = "95299960cb6ec7bd6e6d5e1d3a326e9da03edcdde766a7f4be4345b1f677a859" + +[[files]] +file = "config/RTG/biomes/minecraft/extreme_hills.cfg" +hash = "3258452d733b1f324b4934ce1b0fc9f28cc8b2aa5892ada62d3823716e773a1a" + +[[files]] +file = "config/RTG/biomes/minecraft/extreme_hills_with_trees.cfg" +hash = "13f2f6940de6bf93c628d76db2eda91ac6deeea012b6d2e068e47df9d4f955c6" + +[[files]] +file = "config/RTG/biomes/minecraft/forest.cfg" +hash = "c3efa32a364fa2e9282ecd7bfb81241fbb48398271ee7da8505379019954a5df" + +[[files]] +file = "config/RTG/biomes/minecraft/forest_hills.cfg" +hash = "c5c23d9003608fd2bc8e007297e2f8b964f9922b1a89e54e0a3d1eb553c9b041" + +[[files]] +file = "config/RTG/biomes/minecraft/frozen_ocean.cfg" +hash = "3d1e09d233d86d58e7330848100eec801c9f03be2cd25f3aebeaa92b23eb8e76" + +[[files]] +file = "config/RTG/biomes/minecraft/frozen_river.cfg" +hash = "21f5222ed4fd3657d58b70a04876f224d0299ae796f62c9adeaa7ce7fbb4b1c5" + +[[files]] +file = "config/RTG/biomes/minecraft/ice_flats.cfg" +hash = "62628402f00147ce1b28dff47387ff851a984185a8d87ac3776ab0b0396a82a4" + +[[files]] +file = "config/RTG/biomes/minecraft/ice_mountains.cfg" +hash = "aaee4de49039f46c18da99f4edf5f4839cb6751ae3861df1ebcc5afa546d1e8a" + +[[files]] +file = "config/RTG/biomes/minecraft/jungle.cfg" +hash = "710db64e4bea404cf78146cc9be00b3d287137d0a2f79e0a5da989bfc3ef4473" + +[[files]] +file = "config/RTG/biomes/minecraft/jungle_edge.cfg" +hash = "98f8459b1b72bcbfabcf530fcae2523af93fa6ad9a580f616970d5528cfb852b" + +[[files]] +file = "config/RTG/biomes/minecraft/jungle_hills.cfg" +hash = "c0862206f1a129dfb9e675540e57122c4a2668af12188286145411c62b0c2a4e" + +[[files]] +file = "config/RTG/biomes/minecraft/mesa.cfg" +hash = "e671a56ebda457ba61d2413c5f116b58f096db2ff02ee3b91eb805c87cf3e8d3" + +[[files]] +file = "config/RTG/biomes/minecraft/mesa_clear_rock.cfg" +hash = "4dccc6670e663edd5821b429c687f56f4ccf098d595737ad611d0d2475bdb429" + +[[files]] +file = "config/RTG/biomes/minecraft/mesa_rock.cfg" +hash = "bd95612ae8b902a482466e1a63527b83c7dd862af68efd98c41779b977295242" + +[[files]] +file = "config/RTG/biomes/minecraft/mushroom_island.cfg" +hash = "3d74b00990bbf7b22dc282349d76e2ebeb02627caca094a06564c30ee8cbec43" + +[[files]] +file = "config/RTG/biomes/minecraft/mushroom_island_shore.cfg" +hash = "3d74b00990bbf7b22dc282349d76e2ebeb02627caca094a06564c30ee8cbec43" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_birch_forest.cfg" +hash = "01997e2f6cd1ebc1111834042138828a9e3be94d943a53f69e7db6e238cd80f4" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_birch_forest_hills.cfg" +hash = "93a0c4d4c6689792acf819918833a7964e121c12bc0becf7bd1ea4c45fa9ebca" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_desert.cfg" +hash = "9864b219c481e082683b482e08c2023793363f0c21f14a6a5a8aa8b793f4c87f" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_extreme_hills.cfg" +hash = "83c24abfcd1f21545612e08b6d64ea568aafb02871c9a1c8284d6b0e40212b95" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_extreme_hills_with_trees.cfg" +hash = "bf5a2784895eb1b91cb32bf5e36f730b047b7e16351a226aed44fcabea923f64" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_forest.cfg" +hash = "2453534dcbba48cda7c3f898548212fe6062ea2dc9966d88746052c083f888e0" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_ice_flats.cfg" +hash = "54d31da087609e53ed1d63d2d4012a50944583d3f599107ae05766986605c78c" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_jungle.cfg" +hash = "2077fd800407efc6aca08f3a47be73de6ea632ad3fd363d7bf5ac0629afb0549" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_jungle_edge.cfg" +hash = "48249b859d98ccd966d4c17fa71e3454cceb31f6df846a48a855a5f9040201b8" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_mesa.cfg" +hash = "67d230d720439209dc68dc5710c91cd957e7e0deecfb5d69e4f6d22b52c5c305" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_mesa_clear_rock.cfg" +hash = "4dccc6670e663edd5821b429c687f56f4ccf098d595737ad611d0d2475bdb429" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_mesa_rock.cfg" +hash = "bd95612ae8b902a482466e1a63527b83c7dd862af68efd98c41779b977295242" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_plains.cfg" +hash = "2b0fc33bb360bbe7afecc5989ce0c80924686afc77ef18bc82b48c4e22ab5db4" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_redwood_taiga.cfg" +hash = "93a0c4d4c6689792acf819918833a7964e121c12bc0becf7bd1ea4c45fa9ebca" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_redwood_taiga_hills.cfg" +hash = "93a0c4d4c6689792acf819918833a7964e121c12bc0becf7bd1ea4c45fa9ebca" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_roofed_forest.cfg" +hash = "01997e2f6cd1ebc1111834042138828a9e3be94d943a53f69e7db6e238cd80f4" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_savanna.cfg" +hash = "9b7dbfc8ff694dbda9fa1e5d8191f31ba445a71e396cddd561528992da7e35df" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_savanna_rock.cfg" +hash = "b7376c9408d11bc85331303744748dbdeef8eb8deff9b7ce9ad775184fed99eb" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_swampland.cfg" +hash = "98f8459b1b72bcbfabcf530fcae2523af93fa6ad9a580f616970d5528cfb852b" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_taiga.cfg" +hash = "01997e2f6cd1ebc1111834042138828a9e3be94d943a53f69e7db6e238cd80f4" + +[[files]] +file = "config/RTG/biomes/minecraft/mutated_taiga_cold.cfg" +hash = "48249b859d98ccd966d4c17fa71e3454cceb31f6df846a48a855a5f9040201b8" + +[[files]] +file = "config/RTG/biomes/minecraft/ocean.cfg" +hash = "3fe63a90526fbdd61c1e21c9f33e2bf9ac9eb823cf926bf018c1c13255247e4d" + +[[files]] +file = "config/RTG/biomes/minecraft/plains.cfg" +hash = "35d232802384dd6bacc7636489af7df75904247dd5ae9740e9ab3a63a9426424" + +[[files]] +file = "config/RTG/biomes/minecraft/redwood_taiga.cfg" +hash = "98f8459b1b72bcbfabcf530fcae2523af93fa6ad9a580f616970d5528cfb852b" + +[[files]] +file = "config/RTG/biomes/minecraft/redwood_taiga_hills.cfg" +hash = "93a0c4d4c6689792acf819918833a7964e121c12bc0becf7bd1ea4c45fa9ebca" + +[[files]] +file = "config/RTG/biomes/minecraft/river.cfg" +hash = "21f5222ed4fd3657d58b70a04876f224d0299ae796f62c9adeaa7ce7fbb4b1c5" + +[[files]] +file = "config/RTG/biomes/minecraft/roofed_forest.cfg" +hash = "246de680defbaf543b6cb3a1ac6b7761087c5ad07e66187758989fd9050ae200" + +[[files]] +file = "config/RTG/biomes/minecraft/savanna.cfg" +hash = "4a9ef5ba5d795a52a8b738839416c8f14d3e70aeaf4a1237c670d3a2db0ffcb8" + +[[files]] +file = "config/RTG/biomes/minecraft/savanna_rock.cfg" +hash = "b7376c9408d11bc85331303744748dbdeef8eb8deff9b7ce9ad775184fed99eb" + +[[files]] +file = "config/RTG/biomes/minecraft/smaller_extreme_hills.cfg" +hash = "3258452d733b1f324b4934ce1b0fc9f28cc8b2aa5892ada62d3823716e773a1a" + +[[files]] +file = "config/RTG/biomes/minecraft/stone_beach.cfg" +hash = "ddd0c0f3c616c813389afcb3fe8bcd19345293a572242b444389b363cb982cf9" + +[[files]] +file = "config/RTG/biomes/minecraft/swampland.cfg" +hash = "98f8459b1b72bcbfabcf530fcae2523af93fa6ad9a580f616970d5528cfb852b" + +[[files]] +file = "config/RTG/biomes/minecraft/taiga.cfg" +hash = "152a687b85751e09cea7c792bbc804ab4e8dc5396ef52295c711946c6bb64179" + +[[files]] +file = "config/RTG/biomes/minecraft/taiga_cold.cfg" +hash = "98f8459b1b72bcbfabcf530fcae2523af93fa6ad9a580f616970d5528cfb852b" + +[[files]] +file = "config/RTG/biomes/minecraft/taiga_cold_hills.cfg" +hash = "93a0c4d4c6689792acf819918833a7964e121c12bc0becf7bd1ea4c45fa9ebca" + +[[files]] +file = "config/RTG/biomes/minecraft/taiga_hills.cfg" +hash = "01997e2f6cd1ebc1111834042138828a9e3be94d943a53f69e7db6e238cd80f4" + +[[files]] +file = "config/RTG/biomes/vanilla/beaches.cfg" +hash = "7d649cd2c8511d29ab32af884a8a2db92f65df3c94e4a42bbfbd644dd4b858f0" + +[[files]] +file = "config/RTG/biomes/vanilla/birch_forest.cfg" +hash = "af8b9350c1bb1aa7799fa62c398420878c5581f48899b6d7499ad67d605be6f6" + +[[files]] +file = "config/RTG/biomes/vanilla/birch_forest_hills.cfg" +hash = "2ed868ec3d3f335f49b184a55e0094d71daaca6d9d79f787dbbbef9447b32198" + +[[files]] +file = "config/RTG/biomes/vanilla/cold_beach.cfg" +hash = "f267881ca9143fa10b773b39bf7b028b0e77a930773d0860684bc39d6681eb2a" + +[[files]] +file = "config/RTG/biomes/vanilla/deep_ocean.cfg" +hash = "ffaacf6807a8b7f02fef376399447b3c3ca0a9391c92409f7e91439948fd63f5" + +[[files]] +file = "config/RTG/biomes/vanilla/desert.cfg" +hash = "73a64ec4aac1dc7483f8b47a2853e94f98b06a6bb53f7e824db243d01ab80a72" + +[[files]] +file = "config/RTG/biomes/vanilla/desert_hills.cfg" +hash = "88cd6d991f41312f6298f27beab106287d95aabef264dd39e9e803fa75144377" + +[[files]] +file = "config/RTG/biomes/vanilla/extreme_hills.cfg" +hash = "07587a20e9dba4eff009aadb8dd3a34eecf61152f1d208b2c4fe16e07b9ab316" + +[[files]] +file = "config/RTG/biomes/vanilla/extreme_hills_with_trees.cfg" +hash = "7f9e37cbc80eab88058599447098c8d2b7a98f98185ef4a2316850612ebe9899" + +[[files]] +file = "config/RTG/biomes/vanilla/forest.cfg" +hash = "d034f0e32b1d3deec690db6e4220d5c3b070b52fd467178f27d0ceb5eeac7da6" + +[[files]] +file = "config/RTG/biomes/vanilla/forest_hills.cfg" +hash = "a9d0f13ab2a78ebc1e46741ce6847c84384e8ba444d1897849fde5d00fa38c5e" + +[[files]] +file = "config/RTG/biomes/vanilla/frozen_ocean.cfg" +hash = "29185e5829bd2fc9238efcb6fab6c23c26ff5126eb3bdcda596c7e864919b3ba" + +[[files]] +file = "config/RTG/biomes/vanilla/frozen_river.cfg" +hash = "4574331b9a5633d8fa8256129eb04c10fff51360245a68c300f77709611828a2" + +[[files]] +file = "config/RTG/biomes/vanilla/ice_flats.cfg" +hash = "861a09c300c40f614918eb3458c72566639daa01f8720a43484521812d45d180" + +[[files]] +file = "config/RTG/biomes/vanilla/ice_mountains.cfg" +hash = "a36cbceb224c401c84c04bca0438605c59aa75d6a45744c4cab2f6adb5ae3fda" + +[[files]] +file = "config/RTG/biomes/vanilla/jungle.cfg" +hash = "0d8bbc5b9b3590b3e309cf31b12efafcaf227acaae894adf1849e4aae4a4080d" + +[[files]] +file = "config/RTG/biomes/vanilla/jungle_edge.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/vanilla/jungle_hills.cfg" +hash = "188c536761c1024b3aba07d4663ebd4454b58988381b338879b35eb0416c1a82" + +[[files]] +file = "config/RTG/biomes/vanilla/mesa.cfg" +hash = "8814016c46fefec8af25262390463bfadc2030a7595299f535a88177e1c6334c" + +[[files]] +file = "config/RTG/biomes/vanilla/mesa_clear_rock.cfg" +hash = "bad2827200513e4d0fccd84d9051dbfffd344ada2732349ab06bdf5a80f12c0a" + +[[files]] +file = "config/RTG/biomes/vanilla/mesa_rock.cfg" +hash = "9a78518cee2a4576d6a330098c20c0332b3b4cf416601bf91ba5078c0e013540" + +[[files]] +file = "config/RTG/biomes/vanilla/mushroom_island.cfg" +hash = "cb0162e3d31b7e277520aa2070efd15f72b50f5efc6c4a11ba0e9ab9cef65a35" + +[[files]] +file = "config/RTG/biomes/vanilla/mushroom_island_shore.cfg" +hash = "cb0162e3d31b7e277520aa2070efd15f72b50f5efc6c4a11ba0e9ab9cef65a35" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_birch_forest.cfg" +hash = "2ed868ec3d3f335f49b184a55e0094d71daaca6d9d79f787dbbbef9447b32198" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_birch_forest_hills.cfg" +hash = "f32891aa8e6ef4141035f56fa866ee0ec8172f34036154cc439467c6b8e8c5c1" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_desert.cfg" +hash = "c5e4593c16e064c79df0454cd672bf4fda5efbc7a9cd156cf225579c3850d273" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_extreme_hills.cfg" +hash = "d269bfa7ae2e46b5481dcafdd1b7a62f9b42e8c5c89bc773df1d8bb8e2144591" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_extreme_hills_with_trees.cfg" +hash = "efef6265c8cb7306bafee40b17d0825e4f80706a0d8bf8526f22755457f93f29" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_forest.cfg" +hash = "af8b9350c1bb1aa7799fa62c398420878c5581f48899b6d7499ad67d605be6f6" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_ice_flats.cfg" +hash = "c3dfdc5f36fdbdaee88d3990c11ea5c7f9e196df970a4edf4957958e505f5c44" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_jungle.cfg" +hash = "860b1ff2fc63daff26eb7fe573d3a14509cfd7be7072908dd560f868dea0cff6" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_jungle_edge.cfg" +hash = "13d0f02049a852cdcdc7144d5ea34e68a612b74db2ca373fd4dfe1b618647d52" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_mesa.cfg" +hash = "181a6ade67967dd0f737ba26381d7fa76ce9daf83912b8337834dd5f6e578ce5" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_mesa_clear_rock.cfg" +hash = "bad2827200513e4d0fccd84d9051dbfffd344ada2732349ab06bdf5a80f12c0a" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_mesa_rock.cfg" +hash = "9a78518cee2a4576d6a330098c20c0332b3b4cf416601bf91ba5078c0e013540" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_plains.cfg" +hash = "57e14ff76a31f9c815707a6433e9bc868e40ec31ac6b2df1f8062a47fbddf362" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_redwood_taiga.cfg" +hash = "f32891aa8e6ef4141035f56fa866ee0ec8172f34036154cc439467c6b8e8c5c1" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_redwood_taiga_hills.cfg" +hash = "f32891aa8e6ef4141035f56fa866ee0ec8172f34036154cc439467c6b8e8c5c1" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_roofed_forest.cfg" +hash = "2ed868ec3d3f335f49b184a55e0094d71daaca6d9d79f787dbbbef9447b32198" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_savanna.cfg" +hash = "395dbcf44d63d6e45369ab26fc34bf000da52291082d1828d7173acfa114d78d" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_savanna_rock.cfg" +hash = "797bafc031adbf29d9d1bd7951a340d2cbfab94f90f9b3b8150d3de94f39db72" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_swampland.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_taiga.cfg" +hash = "2ed868ec3d3f335f49b184a55e0094d71daaca6d9d79f787dbbbef9447b32198" + +[[files]] +file = "config/RTG/biomes/vanilla/mutated_taiga_cold.cfg" +hash = "13d0f02049a852cdcdc7144d5ea34e68a612b74db2ca373fd4dfe1b618647d52" + +[[files]] +file = "config/RTG/biomes/vanilla/ocean.cfg" +hash = "ffaacf6807a8b7f02fef376399447b3c3ca0a9391c92409f7e91439948fd63f5" + +[[files]] +file = "config/RTG/biomes/vanilla/plains.cfg" +hash = "ecc639850ff9c4434490640c5532209f961f8bccac4cd17e0cde0346f043f92a" + +[[files]] +file = "config/RTG/biomes/vanilla/redwood_taiga.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/vanilla/redwood_taiga_hills.cfg" +hash = "f32891aa8e6ef4141035f56fa866ee0ec8172f34036154cc439467c6b8e8c5c1" + +[[files]] +file = "config/RTG/biomes/vanilla/river.cfg" +hash = "4574331b9a5633d8fa8256129eb04c10fff51360245a68c300f77709611828a2" + +[[files]] +file = "config/RTG/biomes/vanilla/roofed_forest.cfg" +hash = "f68dbb7308592c2ff811c4e114f9013306a2564e187da3082e14a50873722777" + +[[files]] +file = "config/RTG/biomes/vanilla/savanna.cfg" +hash = "1b8340b0414d8310658e5a4a30fc777a4efffd1c98859ae8f08252f899e6689a" + +[[files]] +file = "config/RTG/biomes/vanilla/savanna_rock.cfg" +hash = "797bafc031adbf29d9d1bd7951a340d2cbfab94f90f9b3b8150d3de94f39db72" + +[[files]] +file = "config/RTG/biomes/vanilla/smaller_extreme_hills.cfg" +hash = "07587a20e9dba4eff009aadb8dd3a34eecf61152f1d208b2c4fe16e07b9ab316" + +[[files]] +file = "config/RTG/biomes/vanilla/stone_beach.cfg" +hash = "d251bad6f1750a7ac34a21b8c4450a4675e6da86daa66680511bb3f7a4abe6fe" + +[[files]] +file = "config/RTG/biomes/vanilla/swampland.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/vanilla/taiga.cfg" +hash = "880bd9ac0ba3084d168895561e78914d79af31f8f2b16d096e4e6bca30f6713b" + +[[files]] +file = "config/RTG/biomes/vanilla/taiga_cold.cfg" +hash = "c490a028c1a07a90fe290e73ea0aa109165ff5327af27562b8e5e20a081fcd8f" + +[[files]] +file = "config/RTG/biomes/vanilla/taiga_cold_hills.cfg" +hash = "f32891aa8e6ef4141035f56fa866ee0ec8172f34036154cc439467c6b8e8c5c1" + +[[files]] +file = "config/RTG/biomes/vanilla/taiga_hills.cfg" +hash = "2ed868ec3d3f335f49b184a55e0094d71daaca6d9d79f787dbbbef9447b32198" + +[[files]] +file = "config/RTG/rtg.cfg" +hash = "783177fe5c85f68cbed26f0bd703b2918d2110da39ddf06fcc7c25cc581958f5" + +[[files]] +file = "config/SGCraft/general.yml" +hash = "38e0b9de817f645c4bec37c0d4a3e58baecccb040f5718dc069a72c7385a0bed" + +[[files]] +file = "config/SGCraft/generator.yml" +hash = "38e0b9de817f645c4bec37c0d4a3e58baecccb040f5718dc069a72c7385a0bed" + +[[files]] +file = "config/SGCraft/tokra.yml" +hash = "138502c44edec52e7a1672728e470bdccf67ee386fe1b1428295d3ca651254a3" + +[[files]] +file = "config/SGCraft/zpm.yml" +hash = "dc3a3cfc274f4d5f3fa83d34f7da5271c2d19e7c8f438fe75934555834dc4d35" + +[[files]] +file = "config/SRParasites.cfg" +hash = "c9ee62db0c83403d9ed43476ec41c2c2379f2bd88b8ff1e7a45bd27b52dfd8b7" + +[[files]] +file = "config/TARDIS Mod.cfg" +hash = "10ddfd743a6479e7672335f23cd47e396c78ce5db72fe9e9fa4fb2c6defc5a57" + +[[files]] +file = "config/TickCentral/config.cfg" +hash = "805ada5bf88a4f0bb49d5e28b0fd89427fbe812e26b72b9cc8f501b00ee89262" + +[[files]] +file = "config/Universal Tweaks - Bugfixes.cfg" +hash = "818ee3657fccf179576eff5ae1fdb5018c305ea097d4eae682b16a17fba1addb" + +[[files]] +file = "config/Universal Tweaks - General.cfg" +hash = "779a24626bd05542919d84a1b5af3b55d514ef806e3dc1063e5cec085727bdb7" + +[[files]] +file = "config/Universal Tweaks - Mod Integration.cfg" +hash = "ae516a0d153045ab2679350cf15f6d8ae4a246ca4f963e942873173ee4c9dee8" + +[[files]] +file = "config/Universal Tweaks - Tweaks.cfg" +hash = "9c41ea4d386499163228b484b7f9ba016ab1a81d26c453b0cf0566a9bbc3ccc3" + +[[files]] +file = "config/Weeping Angels.cfg" +hash = "82e61e56154a210c72d13a45c07a138491d1fd4509c094d3fe492144eed957ab" + +[[files]] +file = "config/acronym/saved/material_parts_contenttweaker-original.json" +hash = "048cd0b0ba393c6d1e1e909c9e743c9b31480581aee84807213898fc09b542f5" + +[[files]] +file = "config/acronym/saved/material_parts_contenttweaker.json" +hash = "048cd0b0ba393c6d1e1e909c9e743c9b31480581aee84807213898fc09b542f5" + +[[files]] +file = "config/acronym/saved/saved_sub_blocks_contenttweaker-original.json" +hash = "6dbeaef4200242c761dae69ea51495778792a70eadb0957375d7cd07652a3858" + +[[files]] +file = "config/acronym/saved/saved_sub_blocks_contenttweaker.json" +hash = "6dbeaef4200242c761dae69ea51495778792a70eadb0957375d7cd07652a3858" + +[[files]] +file = "config/akashictome.cfg" +hash = "1eae3702055f73d26abcc2e0d105cc5dc1e7f6fe40cd469335beaad29981367d" + +[[files]] +file = "config/alcatrazcore.cfg" +hash = "43f09e6e563f42c90424a465c8c92f6cca7f304c4236069db3c4ac5c9c6ae4d5" + +[[files]] +file = "config/alet-client.json" +hash = "9323489babfa6804f011fffe02c303c5119af3fa618df9f1063b151b8c387564" + +[[files]] +file = "config/alet.json" +hash = "a2ad3b2bee81e79534fb637572fc946abd473aa5dde12bab7e18989bb74a18b5" + +[[files]] +file = "config/ambientsounds-client.json" +hash = "c70090162f7fd7f4cfcd7bd14377d72d926541ec5742b7e043eacbf6bcb7d8b1" + +[[files]] +file = "config/ambientsounds.cfg" +hash = "1126bb70caa6948abe27d5b152204b0e549aa8d114d32924b31489ad14588e16" + +[[files]] +file = "config/appleskin.cfg" +hash = "3db18929798bc16d0af30df80c2e5753a9622c8232858806cbe500a8c5e25bea" + +[[files]] +file = "config/athenaeum/athenaeum.cfg" +hash = "65af9d634918923b911dc8f2c93acbac86628760749cd5003dbf5db7237e9d8c" + +[[files]] +file = "config/baubles.cfg" +hash = "b0ce852bc9eaf583e3a3befb20e5ed7e96a04343f2a5a3540020a2636032a80f" + +[[files]] +file = "config/baubles/slots.json" +hash = "c2731eeccdedf2e1d600a3fd57c986dcdbaf7b8f7cad601c93024c33830cb3fa" + +[[files]] +file = "config/bdsandm.cfg" +hash = "8804741aa0e6114177095850ee6ef7b17bbcb3923a1185fa5eee1f84964e5223" + +[[files]] +file = "config/beneath/beneath.cfg" +hash = "2e92e9c92ddc1ba63a699e7c83db68eaa8e9f449bfcac7cdd1eecf430527987f" + +[[files]] +file = "config/beneath/blockdeco.json" +hash = "64a5abba46e8ff337aebff855d007189476acc509f516a6ad5bb21842e5efa0b" + +[[files]] +file = "config/beneath/oregen.json" +hash = "9a3cdb66d398c8dbabd02e50497c2c3b717dd657f7e7ee55814c78bd46b85fb4" + +[[files]] +file = "config/betteradvancements/betteradvancements.cfg" +hash = "c37ad8efe39441f40bb046367dd34d9d5f7c92de76938ea4888f84c7f927b31a" + +[[files]] +file = "config/betterbuilderswands.cfg" +hash = "4417ba72dc8ffb5dcddb3e2dceefdfddd997e065e1027e5ceb0630985fb0e9a1" + +[[files]] +file = "config/bettermineshafts-1_12_2.cfg" +hash = "0a31e07d15f590881a4403220fa8611dbfb8ab75db1106829d66315bde526e7a" + +[[files]] +file = "config/bettermineshafts/1_12_2/README.txt" +hash = "0facdb53ae83082756b178615f70a5668fbc2dbd4c91494b7c499c28c72a710c" + +[[files]] +file = "config/bettermineshafts/1_12_2/biomeTags.txt" +hash = "30ab719da2a37f3ac6dc08aa2ba2b654f76175337a1b90587fcd9c0577161f4a" + +[[files]] +file = "config/bettermineshafts/1_12_2/variants.json" +hash = "3f061d7a3e373a66830ce771b56a791ed3d1142705888c1e89efad1012e202f0" + +[[files]] +file = "config/bettermineshafts/README.txt" +hash = "5e4216e07280b8881466f5b1010f8006ff9477054b366a1f4c0b24cba0b8d030" + +[[files]] +file = "config/betterplacement.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/betterquesting.cfg" +hash = "593a6aeb686bd725adca1f401e6b36072be8089ab3f51cffcebd5030763bdbcf" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/0.json" +hash = "1d3ec34c2431179b3ed6cb5443a77ae327e636077593123f0ab6fcb86b26cd33" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/1.json" +hash = "80e2d6996c259570db5bc01340a079c5a7c17658ecde7b1dabbbefbdaae8566e" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/10.json" +hash = "71ed8b4b1d96f69f12195d4d595a0e490ff0992cf97f73cc593dec24394ed7f5" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/11.json" +hash = "ef2e7f1fc1d702757ca1af6d082c73d987a2bdd51fb864d17f22ae03e31e0ef8" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/12.json" +hash = "fd476f67f2a95f62d8849b89938aa9e4782cbda2077c273a6a65e74b9cc34067" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/13.json" +hash = "937ef2b8130da40df2bedf94fa5352d511b19ee7641062674b0c0eda34fceaaf" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/14.json" +hash = "22f18f0c20c12e0345a59952a3de19b2389e61e5980a318f45a04e6d74381405" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/15.json" +hash = "8489518a5a05dbafd7c4ac86b9e5168019c46038800e0bac76cc5f04e80852ba" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/16.json" +hash = "a5cd5d98d31e3253b087c5bb6c4177aece24fdd78b4d0e7878f5e69bc296c386" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/17.json" +hash = "ee00933a62c3df383cfe7fea50a7903e4316ff5913c3f3d8fc6e0a5cc07d9197" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/18.json" +hash = "1a46c2a17746c83b07a72c911e72d272f43943e80a91aa206bbd55aec617319f" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/19.json" +hash = "dc4e2bf4cec1d389d3c4b30688b77c71f496c74f2b392bceae6359667f7a170d" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/2.json" +hash = "4304cee3017f8c174e44e4afe6a052296d6c4af618f1b9e2863f6ba8b261f73b" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/20.json" +hash = "8dc3528ed6be2adccd4e38f96a481f29d7dbb01485a4321d53907998d982d014" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/21.json" +hash = "e101288372466064ebdf20f7cdac1bc5acfdb59a6000b9e3e014d57d1dddd6b9" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/22.json" +hash = "d3a17760ca123d0fcefbebfab39037c2fb17b0d1128770275770c0670ff3f01d" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/23.json" +hash = "22aff4fd9beb130b7ba5d066f6ba74af1a23b19c5f01e4df7cf261c79100568d" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/24.json" +hash = "cdbc427291fa4e314afc6f94063ed56ceab6097eb99adc700331ddbed4baec0e" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/25.json" +hash = "6501864a0ebe713a9bd1355a96a9bdf6e4b620b50cac2c92846c039491b3d8fb" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/26.json" +hash = "83c74032f475562c001bf8034482bc646206549714087721d1536b2338bd8129" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/27.json" +hash = "f9a4e758e89aa8e1e85d7aaba53c1a37a88845b15d107b4d53e0e35d43fddc9f" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/3.json" +hash = "7a2ae3a6ac13e889a9d7f11ec1f84b98c15479bb71aac1bec5fb9873560d491d" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/4.json" +hash = "021be98cdeb4ddb5991275c7fc98e99e642aa0a7bcfb80d968108652d460dd6f" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/5.json" +hash = "1858da384e8dcd48fa496e0dbce4882b6c6da0a186df27aa580f6ff38c923cb5" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/6.json" +hash = "6be0da33f5e24a5a86dae2ecc0c5d186d061e605ad1d56924d665d78e6a85f0b" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/7.json" +hash = "62856c6a9f0a4fe85d7c09b2680e62defeaad9dce9ad97ca184b175811f4931a" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/8.json" +hash = "739f6390df52195174d0ec96a5762d2ddbd16a69ad700a59499d116fd46908b5" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestLines/9.json" +hash = "3969960e6c0d8a2dd2b0ee4dd5d917c3cbb000f5395a98790c7045ee87b0c9b7" + +[[files]] +file = "config/betterquesting/DefaultQuests/QuestSettings.json" +hash = "b4a40ae90b50b0992832f2b06beea2498bef6d1d396a6512cdccff5a0fa24340" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/0.json" +hash = "65418695d0f457deca21395b17d773aa3041c0d5fc819a646cbd61fee92661d0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1.json" +hash = "2b8cb0da5d07a0061f6e015196540a33481f4b832acef127596ade325e850a6a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/106.json" +hash = "97c85601d22799c1dbeb9eb7ef7562a1718d28fbba85fc1efec52a159960d0f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/107.json" +hash = "47f5574b8170db9607e9fcf338ef05febed37e4ea97437a848fb9297350031c7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1107188354.json" +hash = "146402e78bae99b9d290a9e155d185431b9f733ce67ce6bb00b6f1dd17263fda" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/117.json" +hash = "162c2921bd9efa27c728a786844c800bafa82928605371d704b255710996c9e4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/118.json" +hash = "e9da355fd7710528d9940c93e14ab50d68dc6feac05ce520475335c2daaad536" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/12.json" +hash = "4ab545c95f445a318209e4fbdd80cef7dbf679ee3cc90a4ece7be0ba3c53fbb2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1241306929.json" +hash = "84d712d1830bd49fccf703fdaa3875bffec5cb6837b63e062192946a288eca2a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/129.json" +hash = "369677fd9b37c72151afeadfb920ac24a7e30d1df99457bb4684a9f4fa4bc1fd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/13.json" +hash = "a7490ca3f533a3379277909d631707a37ad541ad4a02e294f533ce9d093e5622" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/135.json" +hash = "74a92fdcc5c5caddc7e1d8352efba5ca3d8858774d8ea21a9560ef7a2319ea40" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1365346037.json" +hash = "c7a84152371ff858f0f8ac8bb400dccc025522284fbb48345c37f35a5afac839" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/14.json" +hash = "1877fb34d4ec288f676e5cb172d9ad13d6ccaee5de32f078cf66dc596023c455" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/149.json" +hash = "45322d95892bdfed5a2cae639913c8006f3440ef65c5b16522786962f505d4b1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/15.json" +hash = "0a61b597f882afa29141f54f7efdfaf3958ea85ec69db7aab449e687e9dccf88" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1580653524.json" +hash = "7fe7ce1fe14862dda2b4fed350c94dac672d54c112faa7fb0d5ec91b850ee188" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/16.json" +hash = "fbff5103db6a600dc0f4bd9097a1e24cfa43ea1850a68d728896c85fa593b558" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1602093300.json" +hash = "d34c3d0b7f2994e81f20ca511c8dfdc0456b23184e4b06da6c7d1d50907d8bbe" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1610061980.json" +hash = "806f5425074c38049176fa202ece728e305609ceae6c6430d164f5c351adb9ea" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1677924297.json" +hash = "5e68cfd8d0bdd9714d363e68b009f2862b87e4f00df252f96305dbca9c198ec1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/17.json" +hash = "e556c074e3b1ae4576ad878365f835bb518c038736d923b885ee7d8043751239" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1767849062.json" +hash = "96abe2d8553a2e8431c0eb0bbae2d291368f686ae347dc4f4f970752a45d543b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/18.json" +hash = "586ab3d3f2d4c8a879fb4ac5cb016ba2373298f7b45bd8a0429fb8cdb51b4850" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1867050010.json" +hash = "32abdff7e45375cb146fb498082f9ae7baec3d6efe2381a8449f0f75ddc09bca" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/187.json" +hash = "ddcb47585863c636093c0d6e3de9d6a40950f05ef72a1a49b81e7914f61c0a44" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/18799598.json" +hash = "ae9f7595ce5c3df5cf5ba7517f74d494c82401f75a29b6d0758bebce30be6737" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/19.json" +hash = "b507e707f8a565dc48586c43a535b3e223249dd0ec0679a2f9dd54b3fa8b8483" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1902566957.json" +hash = "e83f9e6c8bb0c808f2d5903929b4576ea2da40311570b6a64752ceb88fc48862" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/1958019111.json" +hash = "cdb8c53c900dba79a5b345b8a20a0ee8777ad7de8ea8f4f7b52b00d9a630f623" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/2.json" +hash = "717d111b1c7550262085cad8c09c4c954231da42f2f049d148c9974ecab2dba5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/20.json" +hash = "d058425aa16a2fb989b8fcb4fbba9de898347f3181985852fab592aa896d9878" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/2081939483.json" +hash = "b665fc26b01b53a477e8dd2e798441e8cc7538a7c532e65f576d0bd375bcfef3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/21.json" +hash = "ff4876d846336f03798ba4de24c5682531a9d1907973dee35b2025141bd13920" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/22.json" +hash = "ed5c791f88000b92436d37360da2f7c8a148361a0ea9717f36570a37c1360e76" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/25.json" +hash = "4587ae489202a92cf32abc478dece97d992a07670fe0b394a611d9eff19848e6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/28.json" +hash = "50dd44cb586ec96841a89e5583d54526f1f3a9d78ee1efe9ed269a076b232c87" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/29.json" +hash = "60e7a7df98c06b6a5a069af4349e95650c0f5c530eca9a4b7680cfdf9a968f6e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/3.json" +hash = "1819915fad7cd768b98dd87bb3702c564b4ec32072e6b3ac0726b9412a68cbe9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/302928877.json" +hash = "8303460e48331a28aaceac75b90d182a2275bd88ccaf7c9d4a52709725228938" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/366.json" +hash = "89811cf6a9603f5441a959dbdeecf484068de24b233ea3693a28f2d11c8b233e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/4.json" +hash = "4adec1bef154444ab54d943944c99735fb76e08e8d3728b75412c930b8c07871" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/441.json" +hash = "5197e272ce06ee6df127c4a578912cb58d2893e7436080f2673209ac477f73a9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/456863075.json" +hash = "071046afcc79b6e0674f44e6c9621e2be7e3e4c107a0e21f0d2dc1247c69b8ce" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/5.json" +hash = "83c707d34fca9834f23502c9b1b939ea35661173d0ac4dabb80a1ba855fb6c00" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/530373325.json" +hash = "16358fd5aea2f46d26febcd395d9306f7a67304e903592c58059b4ab430392cd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/577792334.json" +hash = "bceae8402c23d5f1be5290c428e35c20b1bdeaf18efe6c78f715d7f4cc38c6c5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/58115670.json" +hash = "3192b1a2f73c900be9bceef131bbefbfa4acd188a6925d3d23460023cbb84f97" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/6.json" +hash = "32d889f4eeaeb87d76baa5b1e895d8c4afda70f4216b1a38a982f4d71b6ccf1b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/650.json" +hash = "de01a2e4d8d50c221db53b997fda7dd11684908ec4ea324bd5feb36784f27100" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/656.json" +hash = "3f82d1faba61d3c674b7cad95ddee5847549c1590a77a83a7c65e45f3a2fd94f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/664.json" +hash = "48dfa5eb30f0307413ea1b727248a9560bcb2df8fcae8554e552dff4523de699" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/669.json" +hash = "93937e4871ca64a6b173285e3297537264a5cce15053fc034e0c211616a69a3f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/7.json" +hash = "1769ca1ee2ff2b266e9e698a224b12d7710b5556517f2ac1edf65ff536c69cb2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/722.json" +hash = "e4f9293660092651426ec956e682eb053401bdf8b72ce79ffde623da9530d80a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/723.json" +hash = "1801e6506df0321770e74e2c5a5a3d0c8c84467515291f38b6bdb877b6ea25de" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/738.json" +hash = "1699a3803d43b360bdf096450618d17425f847c029cc4af3d5a29e215028eda7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/74.json" +hash = "5fd5516104f1b97ac9c04d103431dc89b49550f543e0ecc1d5ef56f0a7c06a71" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/744003683.json" +hash = "6da07a0752ed55e914fc76dbef82164d7a0984569231170264fa98f1682e71a1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/76.json" +hash = "12aca3624bc8394247749dbcdb1dca5b0e7d292a2d38d8d9dac437042d7a5ad7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/763.json" +hash = "94d8b8fb8ac5ff73f42f51cf8a499d16b92f790c49c3a7c8a76cb6c856e65213" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/8.json" +hash = "02a2f39f7c34fad338ac673c8bbfda9e0042e95760668afab1bf2578cf4d1f6b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/861.json" +hash = "25bc691c33822b60624d1f0ff401782bfca4b6c5c2a4a45e5c4c725168f50c1c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/862.json" +hash = "3aa1b26db9f83e76b3eebdd51030d6b98bd5853acf9e4e5651db7df01e9a5489" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/87.json" +hash = "28c74631e58e77b8b855341bf4d02853f4d35b3b10066e224981fc54e2b72fda" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/88.json" +hash = "654a608a8081e3f55dbc0d17d0c13c8149eac1e5539d28d300cb406d5ef4d533" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/89.json" +hash = "0231a295950f5b34be6de0199e94be72850b96fbcf4e90ef6bb27c2c3ed98a91" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/9.json" +hash = "933fa29de9e039bb2a0c41e2d41d4911b98398ee76922c067416aca8667df44d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/90.json" +hash = "c988edbaf8bf19620346b23de7c34477d34ae279acf26cf7cbf5b043880ee7d4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/91.json" +hash = "20d7ea1de70f36789286783b6e5dfd560f1fec9d3e17cb016ac85eceeb8e11ed" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/93.json" +hash = "9c7e370902f0889aa9de343fcf205bd0fd0d015757af93d549644be1ac4f7644" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/0/97148971.json" +hash = "12ea25465ebcecfa5793f703ded4e093b5fdb742ac059ab3362fd9c859575f4b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/10.json" +hash = "4fb47601d721edb81ad39cee36185be7bf62a915bb19f47b6f8b789f2e8e967b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/11.json" +hash = "23bf27ad50fe11e532e70fcda157d1d1d997d9d37cfccbe0fbf4b668df3dfc3e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/130.json" +hash = "a3c6dafe231c06cac585b8ceb6a398d6563abb31eaf1716452f4a74e86863c72" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/1458175841.json" +hash = "a8e2f15b4919458d0381d465b4c6900d606084e804ac50a1f9d52b1d78b0f274" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/147.json" +hash = "f6ed77f8799e5f3d6135e95f8ebce4e5a7fc7f64910abf9f5b501a55afe37d34" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/148.json" +hash = "02d8bb3507caa86a9d496040d65b8627aa537125192b2a0cb67dcc3559e80c44" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/170.json" +hash = "47b6924921443587a07760346d763fb885349f632042d70481f0a81f96ddd923" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/228.json" +hash = "01467290098995cf12ed8dc321793e24ce9f2dd2fca8d588683c3d5582a92a13" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/24.json" +hash = "87535cc578b36c6f66d93dde0f750f467a91def2a7de88e81da9d566f6c7f81e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/244.json" +hash = "610df794f8d89bd003b8386e896789031afff16442d22d16e17ef2994e46edec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/26.json" +hash = "a30df6043230a2a215c942694d220788283ae76011f4067e6cef9fede727466d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/27.json" +hash = "c8c47de66960aed577c07f8e027766c593dee6c6a581cd27bf04888c39b208a2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/31.json" +hash = "0791ec7a7ba7c5383f015bce5bd584c6e58888a833639a45e4aca62ef4ca80a2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/32.json" +hash = "5d699eef7d2f4bb05884353cb2106abe9c368bfc5e1f74855efad022c633be31" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/33.json" +hash = "069b09648f0395fa53c9fba20d340ce8c689c0736527477ebaaa6fcbfb73b8b7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/34.json" +hash = "ca07dcc6095231fba4db8a117422f44fc6bf386e2bb14b9ec2a9f3f035c3d006" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/35.json" +hash = "82abc8e44fc116b076cb5520b9b3f7559aa5cf789ecc38c742f6bbe61e7b75d6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/375.json" +hash = "93a822ed48df75e12e86b29d2f79ad20ba9bd95c1f836e0b3963246997dd55f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/376.json" +hash = "aab272d5904a73c8ef0a42fc088178c9463726f148674b629c7972f064469f08" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/39.json" +hash = "eef7ee7f93ac24f5a05dc39b0e76b4c9e8b731aa115a9de1555fce312e5f5a59" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/40.json" +hash = "d835f74e069e52f348f84f65017860915ea5f9f2e010ca4393aec40b3bb06197" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/41.json" +hash = "444a7799edd5fdbee63ed6552cf866d96df8a6dacefa118db0f592acc144b231" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/42.json" +hash = "4e0f84aa5eb1ec80a7559208df11ad7d5689e714d92026fa00f771a683cabf8a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/422.json" +hash = "ef725ab1d7263f670b3518aaba1dd594fb1268a156d5d9c495a9e638415ebdda" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/43.json" +hash = "a87ec56ff20338d088941b365a0a441175056652df9233ed08db30bcd2b2c823" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/437.json" +hash = "459318fddb9c625283c46dcae7a6817690c875d40b460592484bbe9554ab6e5e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/44.json" +hash = "7aa19c7b110d239ecce9ea875b654c842bd0f44727d2b99898cb75b474f35ab2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/45.json" +hash = "43f453641813803fcce01693665f59a5f777cd0894ac7b9976494b42141c4a4c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/48.json" +hash = "2ec2ef31d234fba3f392621710555b6b0d4dd983ee287109c7a2839284ca3262" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/49.json" +hash = "740d553c1277a83fa8b981fb91b96b0a3db8a69183a53b52b6de1161f0bf8122" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/50.json" +hash = "09e0c46a96d52356e43680573efe9a6906532e0349db4e9d46132da25287b910" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/51.json" +hash = "7358fb70462d01d56a4994e7bc100feab2e984ec82c5ed567052e78edf625068" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/518.json" +hash = "df85f6a0ec95609abdaa6bdc2379b8a6724b9605be0755db9fd6080faffff6e3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/53.json" +hash = "9333dcb5cdb7c2e7af1d719e871da700ad9dbab057e263eba2ac5806bb1a65ca" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/535.json" +hash = "a0c2c4ba35615f0db919cf07a201557447902d2ed50142b23c734f2b0bce9b78" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/55.json" +hash = "57e1eedd23c98c1d5ee161c0f9dba051002798f3f96f852b584beef098833f7f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/56.json" +hash = "842b3c50696e7afa36004336398d284ff060e689bbb7e7c82700101c0dc1e97f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/61.json" +hash = "cd56162c63ba5b0eba472b6d1b711e8358048c78a8831bbed94d444aa6dc22f5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/62.json" +hash = "cb65526ddfb4b6e3c7d989ca0884e9466cbfcf473ec5e636d76b65aecdea1ffd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/63.json" +hash = "5007fa2188ba0256a84325650b38b76ce52cb670bf41402fee1efb24e39581c8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/64.json" +hash = "70b45114eccb7f143b027d876c9b19320e800502ba519e4bcbddc1876918b461" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/646.json" +hash = "7485651524c6fa32795c105dcd1466a4cee8239ff416df8dd8acdfe452423dda" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/65.json" +hash = "9a3c20b0d4655b5ae3cf011e42e875f982877dcb3305e3f9ddd0088dceeb22c6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/668.json" +hash = "f2ff8aa2d6bb4f7d7e503eccb4eac1c82847c0b0d0a648fca97f3a3e228f4b29" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/670.json" +hash = "33b13a65748d7f0ed09cf02166963cef815bf50f95de86824fc6e90073790674" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/71.json" +hash = "9c46db28b618740d1769d47dd185cc033bcebb2acddaf77151e59350631c4905" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/711.json" +hash = "b28f8610c5b89286c99e51bf358ab1b40bc8e09852f99ba4628ebba91ccee807" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/72.json" +hash = "f9744c18eb28d89ad482915e36a14cdcde0c23790d8c0332958fd85712e463ee" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/73.json" +hash = "acbd5dea9213ebba453090790930509a0dc14f1e142fb8be51a6f0cd5ab19670" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/737.json" +hash = "d0e5624335ab06efbf7f6bb62f87b6f17c36093f4d3a3414fbacf619c233ae75" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/75.json" +hash = "821a3ead89163460fa526007783579c0ab930eece6a9b5d0c31ff6e8beb5896e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/752.json" +hash = "db7f80e836405d9e22a7cc957ab11f8ce31d03da95bdff87f2a7895a570e4912" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/77.json" +hash = "00c8739e7a14af5a249cc9e527a70c75ab3e6514b8576cf4946c9d4bc14828b7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/78.json" +hash = "5117c294ac665b722630d74001ee45f67ae296483ae4e974c42afe6891e00334" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/79.json" +hash = "bcbffcfb527193dcddc688fb8c8f11001b5899a61ed0c55afb60194752c84b04" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/94.json" +hash = "2c39942fa1cb424ea23557961b94e867fce5f77bb62716690b8f69bce1859711" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/95.json" +hash = "450a4e430d567b1ed4bc74c7cd9c9c1e42939fa520df63e55705d3e33fdd0d69" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/1/97.json" +hash = "9a7293984b44620a2e2b8f885a9db191585226534edcea2ed1d0e9d2fd515281" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/206.json" +hash = "747349c0d23af220dbd022af56c3d4fcf9e782716fa6d326156b685e069e2eb5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/207.json" +hash = "a848bbe112daee8965a1167be70d0ac60d3c8018911ac4ebc22d2509c5d29a9c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/232.json" +hash = "7d1b42b15652a6e90793f1b3f832828b95fc4aef25d64cff6738da8ba59e395e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/233.json" +hash = "53ab1b33872ff42a22d6cf08cf09293f08f5570a8d42d2f70fd330e27a112aa6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/234.json" +hash = "da656d530530a9f3fc5c8cffe455157f0fcde75d28dc28490e36b7b69b52bc64" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/235.json" +hash = "f6723fe06076af855dec665d3f618f4356ca2424b8bdab010887666d0f42ad62" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/367.json" +hash = "315f9e6473858bfd77dd672e3f481dc0b9d5b35e88428760d3d8ddf8c49adef2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/382.json" +hash = "a466ee8fa118e1bf43a484a3bc56d9911b4d9c0d5d23ad29f792d30cd622ec07" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/403.json" +hash = "2860264682d94a934a3364429b297b2403f03d57c25425c8a3f2b09a14003a70" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/407.json" +hash = "582dd04fc4f3af9cf67676971f0d9527555149caab5c60dfa91b3dfcebc1e6a6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/408.json" +hash = "07726cc823ad5f25458db85b25e6180d3fd477bcad425004d4414a9d1c4f7cad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/409.json" +hash = "86b736b4542acdaa80c314b2ed78e8f2a107bd9128bd69f0e0f10b0c957587b5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/411.json" +hash = "828c866fa949f233ba12d7b77f7cf36632288101c8fa98c22469b88aa6241cf0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/414.json" +hash = "9e57a0701f65b51f91092f9455bd214b06a93217e3eac5c1281cc9ce43352720" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/416.json" +hash = "93ff9859b89ddd2df69da60cdf7b9345982e96417c9e7838bea83708a6dc10cf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/553.json" +hash = "8c78359dceb96bb11804d5864804d205ce4da6dfebd91ed051c65729d718ba73" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/565.json" +hash = "05a7cb1a2aea2ef1e72f875e78fe6c67743f14478048b913a121f3092573cf51" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/16/569.json" +hash = "aa659ff24292f3c89c1e2f692820fb7730fc1c7d2862cb860d73bb3bba5c0c4e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/67.json" +hash = "e23c5a09a79f57f73293600e45531de1006be19e538eee5e9fdc75e43a2604a9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/68.json" +hash = "378c5fb7c1101010cec8678585ee1f9389002c34847d172430063424225829f9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/69.json" +hash = "5198369b4b4bc83eddeb690a6486f8b88e0616971af495d8748717ade089a8d8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/70.json" +hash = "b82c128ebc8795340b9cbe1b2ba08e324211cde8571a0ee5a1072be340feae24" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/739.json" +hash = "c38215c50a1f0e5fde3ac1868485a47f680094f53e3c4293f253a7fc3c01ec7a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/830.json" +hash = "deb9f28dcdfbb5bfa93739390d74a6d6d4555b609dd7e443b1d8a9e49fc1d98c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/831.json" +hash = "3e9f65c29695927fcabd1e9ccbd244fef2cc827d9984bf40957061366090e186" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/832.json" +hash = "9b64d0c09af164184d8f4691d97f5ff2e6410f33ba5294183001c2ec238df438" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/833.json" +hash = "948e87b1db88bf8bc6f18e1edab1f7d146ab0d3821e2f4881e08b5a06117fa2d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/834.json" +hash = "01e96be3001ad1e86ddd37ac1554ee44dc32ba18a49508319bf5a188d24e9a9f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/835.json" +hash = "8e6ad32d1f31c2fd40b813a9159ed338af13bf8d8ac418997bc13193dcaee73f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/836.json" +hash = "ead3174dd8f951ab52d981016ca24cf0f99a9b33b903fb84647506b7de8154b4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/837.json" +hash = "bf5367bb5679c0bf5eaef027a4eb43bb7f803833756b18d871cd8b9d2bfcdf7d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/838.json" +hash = "7dff96028f930352887db86d33b3575c090ddbbd9ef616ac786831bc5b55a92b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/839.json" +hash = "711be12ee644103c729fcb03328d7ddd0b864239e8a953277e5806f5e7842c58" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/840.json" +hash = "4cfc6c6fa5edc73f3efef169c49c161ad44dd233a5c39f23f7ce4d376f43684f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/841.json" +hash = "29dfb282afe5343fe9814d5892d5b56ac47f1f96cf3b05d6e8ca617a8e403d25" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/842.json" +hash = "4a03e0e82694b788d20f464d72a6075a778b7a0e6ac5ef582d2197f8fe2ef9e3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/843.json" +hash = "9f265c69fbf091fccdd65874b0ba51c719bf7e2e75307cad221fa81e4be5d93e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/844.json" +hash = "aa75ebc83bf3db0931fa86f644a9c7ab1270fc4893801ea50bab161bef01c2d7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/845.json" +hash = "246d69b3145db3c276483d2c09c374cf7a175cd61bd5ab5fba4d59eda8cb39c5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/846.json" +hash = "36535cf6dc3d86830203b91ec786967ee63460e716d64fc6455e86a85eefb850" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/847.json" +hash = "c2e40c2c281ad9985ca0a2bd6518c8997ac47f3e27babd82e1f96fc3269bd53f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/848.json" +hash = "ce7c88ea148efe27fbb6a63dbe1b0ff148a4f54a86e2309bf729260392257b92" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/849.json" +hash = "352ebfa9e6ee559fd76137e19a44f7f5b537548a13f079603b8aa7ef09e4d8a9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/850.json" +hash = "1563b3c0adf27bad804716461d6ec61605b1f60a6309a5a52b50b5536f676dc0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/851.json" +hash = "a82b3f38c3538f6a7bcd7972f75da47ee205871944faeed30f2cb0596c4dc6f4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/852.json" +hash = "1052dd0baef55a6fc66754e5d1019df397e6cc4690cd515f058e6e261c3e3991" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/853.json" +hash = "388fe57d0cdcf4fdc3e38a555b8d774734817c21eac8379aee215fcbcacfbf2d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/854.json" +hash = "e2970a653167742286651ca54e593745799634e7c9da3031329a6ede1bbe9b53" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/855.json" +hash = "2720febb2f84049854708de381b8af369978f664c350ac890bda4c9c28071d6a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/856.json" +hash = "856ee13ef234da3466f0a031bfc9e0bf2ae190ef6ca99e736c1d318df633a302" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/857.json" +hash = "b32d4b4f31d76ea974f51e422ee446c32dc24fc3e8fc39af0f9ad2e04667af19" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/858.json" +hash = "d6cddd86ee1afe1ea9b2657cfab85be390cc62e7fbb1da4a108608a7c00edfae" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/859.json" +hash = "a9f30a8f5fd784d40495d154996fc5c6260465a36fa38478e0c8d61b552e68f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/17/98.json" +hash = "ccdefdfaf203148cc53a78229576c8c59509cf27a68e0d743f8d0cb8db527668" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/208.json" +hash = "57b4fb8547b3b82d92c69082c2d8dbc3670a3cdc905071b7607827cc0ddea66b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/209.json" +hash = "5e3fac410b92c60fb8dce2f79dc1134034b48c3eb18dbc84fe4f1084b3ac5a09" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/210.json" +hash = "7308fb17ae7c99716d7fbd6579ed42f83e859380244936b425e1c05acbd2ea3f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/211.json" +hash = "74917ccaed3c7b8d27297036d9276e019c92c4faf91cb788fa925734cca5a361" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/212.json" +hash = "6c5e02dda2612d31d9a7117e96051d1620c24e8be3b92ceaccde93e75e12fd94" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/214.json" +hash = "c93f8237c03e8408a969a8158f72f9d231f02588cd3db9a9156a79d16164a582" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/215.json" +hash = "abd8a201de1270baea0bb04f83b300297dfda8d911691f7d773de6cb72efad6e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/216.json" +hash = "7c2b3a34876e5bc6029e2839d893b38f9519a772f2902dcc08d3e74771f90c43" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/217.json" +hash = "fd092d54f602505774e6d8ed7434fbfa5c88c7549dd5ae14f722129a20321f48" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/218.json" +hash = "14cb7b674d28c63759c08809b8b734b953352206b2df178b07e29e1858f15128" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/219.json" +hash = "59f99ac48394a8ac7af250accbd508607a5f235362e0df23c807a8fe76d4253e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/220.json" +hash = "9daa45a8cd2cad6d696488b09974ca88a48aebe638d50b77ea017568fb3a2725" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/227.json" +hash = "f0cb007706cc05e7c3ae0ee8e00f2a333325acbaae1ff457b8edba805e81b289" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/229.json" +hash = "a1288d0b7c57a7746f7fa31f41e2bc354fa7b90f5f1b4beb4c0f529035e64687" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/230.json" +hash = "049e63fd097095d448cec1103ba968b5700ada36aa2bd7e7b6577cd882b3f9ab" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/231.json" +hash = "9726925fe23c529e10a5e503e1d13778c7a84d7cf80ea7b1d8e9da6090682446" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/245.json" +hash = "d806aa1a937935a1bf2a93adf23e62f62d8d89e1d62facbcc1b8c8cfd2657550" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/246.json" +hash = "de390189f12541382d8eed99b6239f80f76d9260686550331ba4fb55ada92485" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/547.json" +hash = "fcf980938225843663f5930aea6bf0a63a3d800ca1bd6b7216d67c40813a5e56" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/562.json" +hash = "76a80111c7f6bdbf823d128d1cb739b5c6f9b0810a6d423815b7ff5c839d1618" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/586.json" +hash = "410ee27735ce4c983fd600cc6d9e9952a4ee51544d099c645c0a0c69a8cb1f8a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/589.json" +hash = "299d9dc44f9aba3f64efbfaeef4bfa6e967b02dd2a904d81d330d6abc8c48340" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/600.json" +hash = "6d4c9362b96175217411b3542a04284862744e15d83d95e512d82ed45c64a0c5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/601.json" +hash = "d9ba5d72a8852cadb7f6d56854c19ef27d3065bac14c199f122e40d0c98f8f45" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/605.json" +hash = "7806951f9e5f0bbfb888994b4ccbf3d568f5beaa9d96bbe8379b1f49d5a29256" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/606.json" +hash = "57e9733a95827f3ac2bd23a9ac1ab8aec1234e2c639a4b36daac52eb0a080327" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/607.json" +hash = "5a7f35de2e94818e95caa4e9c922b0e041971d2242e9b7788f9e88f2e1aecc6f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/608.json" +hash = "bb80473f5a4e14e3cf550247a7ef43a4a8b7f895511e0a572a0227b4ecca77c7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/18/724.json" +hash = "95f299910899d926af6914ba7d973a965deca37c7f96adf02f91de0ac7e6f6bd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/389.json" +hash = "e1e1e7cd0d087944aab02984a22eafdb61cb08058a8fcbe7b1bee459d0f0ca00" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/390.json" +hash = "640a72bc0ebf62f48795913c59cafae934f5fba22424a77234329890c258d5af" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/432.json" +hash = "29a79b61a937a64bc776ea18bfad2a5090405e3ea61d84aba0b5d4ec0be0276f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/435.json" +hash = "ef09f6ade33c4fe73ff546122d6d2abf04ab9725dddaddb67536b6ca4324cb52" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/436.json" +hash = "eb7e94114c126acd385f54aa44669e456b1b1eaa820b12995e5f6cc276b9151d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/615.json" +hash = "b8757883d617f54c90b0b0fa5e9e54332642f94334ceaef3a634b14f3acad441" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/616.json" +hash = "ce2680baa687dc1579b8aba770604dc28f63dfeb4f956a65f8342a65cfc6eac5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/617.json" +hash = "5ce503f92517321b0bc700d0fd1e3d271763bc6d054728ad4ded6a0fa5c263e2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/618.json" +hash = "0a144b777d19222ce5c76e8f9206ec0cb6f103ef1f2fb7e74daa7364ec3940d8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/662.json" +hash = "df5489f582250c321653a89eaff78f799f84df920876a8a6d3a341454ee785d5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/663.json" +hash = "0d8c05ce8cea303cfe34eb13401efc60ce5e826dac6cfe81ee66e6d8a8ea7329" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/672.json" +hash = "c02c45e67f3697a97cf3b2dfaa5ab5d95e97a0e3ea88a59d93acede9df1f98ad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/673.json" +hash = "4bafc82e91c19c20db2bc02fe26a9ba28774b8d6ee31efea8f970562e246cd94" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/674.json" +hash = "3863daccf0ccf330aabe67891ca89b924b434bc58af32a4f5c676cd37f0c7ae6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/675.json" +hash = "ec50a5d7f91eb94bdfc1ec408444053455447688516c257fd3c19386c12995b0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/676.json" +hash = "d5261f929f82f0fcfa16fb916553fcf01b5f1ec2c2779fac25cc2bd7c8d8259b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/677.json" +hash = "6e1d912a8f1f0500906464840e0ba805f5cf691dc6b4b601d2e70bae23cce4d9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/678.json" +hash = "edd908bea23ab204377172237eeecfa02279c935cc71acb3c747576e3cf3c271" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/878.json" +hash = "a9658fffa8e7cc364c2216bc9398c5262ae81ac9fe2b83b17c549f75bc8e62b3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/879.json" +hash = "bb707cbee7bef9727b37373bc5b90bebf8ab69f0e84f22984b76b639f78a5336" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/19/882.json" +hash = "daee80ab43d48378f838bd0d4e9069c8613f01c5a70a0cadf210b7f5e2918f8f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/100.json" +hash = "0eeb6145ae5e9d9127aefab13a60768327352f6e129ca9516d87d0ba948f84cc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/101.json" +hash = "3f97f8cfb6010982cb15db81d519fd47d311f34dfccb4e0090a45f47d310b52f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/102.json" +hash = "bbb54f16914af4b957fcbf1d06aa5308243265c0c0297ffcccce11923a4fb8ac" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/103.json" +hash = "8f5315bcb7b87ed15d435b99fa1f043bd80024085c9a143d2e9e814fbb31b71b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/105.json" +hash = "31f343db022a26489310ee2d0234ba039212523950c4a6c0ac1e8d22e8c759fe" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/108.json" +hash = "9f769a2e8b56eb68ffb5b5b28c67cae4e692cda8b02627ae0f83cb3b72aa0021" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/109.json" +hash = "d87e8d40f16fd157fc72d081afaf5d22b5a3b44e9a6720efad1e5dd238c2894b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/115.json" +hash = "0951745e3093548ff3bf06b79b0797431a5099deda9cc029b229d736f54911ce" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/116.json" +hash = "2e6937a9bb26bf2758a2bee17d92e4b6826ddfb26a4172b4d080310bbff6dbd9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/119.json" +hash = "7e831bd880f5f4cdca57583ca3f939d45e360db101bd77d6929d6b9d52286f93" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/120.json" +hash = "ea856795d75d5467661503e51d7ecba0b6271e3e131b984f8a1e2fc21d55985d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/121.json" +hash = "aebccab2fde8f57af2b4eb7796d8028cab2906e6535adfaed2a7f281bca4fb6e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/122.json" +hash = "36a9c395f316e5829c1694f27a7722a77207463e869be2bda8013b0cfad00de9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/124.json" +hash = "0f1ee9400c4dd95b4c6251355b168ec70169185c4df26669d2ea6720631f76da" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/126.json" +hash = "12458727ddc564f473a1c25198fc6c7d54b28f7902941b175f8874045dc32e01" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/127.json" +hash = "d28be4587e47e003e05ca6aef84a6bfaf4a560be9d74c7ea2aeba5dcf370eacc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/131.json" +hash = "ac29f072ce5cea4f3ff7f7536aa734ae7242d47413b8bc6ad3080b2e52251172" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/132.json" +hash = "ff211a6436e7f1559a36e124ae6b401faae61890d937dc58e7005cbe47914cf4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/158.json" +hash = "5301bd84c98d518b36c94a7222d534ea46e0ef668bcd6d830788d06029209c30" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/159.json" +hash = "e6bb2ad7b82a674b23ac51218329c74c46370e81a054b2098ee4c6b54fb1e816" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/160.json" +hash = "b95a0a4fd6180ac7b8638d34625d8b65e44281ef4fb4a35dc1771a674ff3a171" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/161.json" +hash = "abb51cdf5bc862fbc8e09844192931f86cf76f8988027d3aa913bbb77ab4f7d7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/168.json" +hash = "d0bcba473cfac25cc48d59690a0c687e0811b141d520a871c200962e65dd3e2e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/169.json" +hash = "54cb8ca14d493522f1b3245c0f8a9efded569f7c8408a918098e00a0fe25e8a6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/171.json" +hash = "5bf22ec0ae3f0c145ff730169e74e5f64a2a14b2504287e250b1646451d8100e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/174.json" +hash = "8c7aa093749809e9d970af936ade4103da7abf81b5900795a74d36401722d1d7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/1766162782.json" +hash = "736655c36305364d9e5277397a5a303ab50f9423e1ce9ca7c4833c7920336e8f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/188.json" +hash = "1dc2e4c6d5c37f3e46bf8c439050f66bef38cb364fba7dd792909aa5209583df" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/189.json" +hash = "4a8432a7614c59bf113d027e77c3a64ed102742c0192f0ad89fcd281ec1f9b9b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/190.json" +hash = "864121967b9a88593e484e6e3624401b64fed322de933f7ca5c6360c4b897cf2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/191.json" +hash = "eb3f30544404be6ce5fa66d97ac897613acda1742760d6e0fa2f5a895e23892e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/192.json" +hash = "eddf28b12f8abbbbb62e138c8a88e3de7ee6b43b83a59c00a8e045c18af00f71" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/193.json" +hash = "84e7e0d257090e6be148756413164c616b37d68fbe9d476aa49118e71c40fabb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/194.json" +hash = "eda4a06370561c91432a76a95909ea88b15734e1703b82ac7a3dc91478144170" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/195.json" +hash = "76a71116904a78e1377d69a977846085393f33ee2031c645b278083386c55224" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/196.json" +hash = "9e95d2bc5eefa2f3a907bc012a3fc6882cb4ceb959f3c5e7d0f119e8dcf03f3d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/197.json" +hash = "bb95258ff309baa365449de3f51db23dc6acacb88696f7d71d59cf984d5d44fc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/203.json" +hash = "ced415218227f99aec2103bee7c8134aa58d21798adf2e1ff0a75ed216e5026c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/205.json" +hash = "14434d7647e7dc1faeff2c20bb8073f48b7b1ff0ab9854322a0dbed86a09314c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/223.json" +hash = "bc72cbda7c37c5ada6c5238010431a8e01fbba5404e97374e93643f2fe2e9751" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/224.json" +hash = "1cb37e4be387a6347e0c6fcb7cf0090fb76d415860c93d4fb953b6517c1189ba" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/236.json" +hash = "ecaa476145073b051bd2c10182932e3842b08e1dcd131294bc9e1f04cd8a8db5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/239.json" +hash = "8d282b2c2ca2d29f3e8d9fe17a7d73f179c85fa6f96578b414e7aae1e9b70c32" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/240.json" +hash = "f65ab1d6a757fb4130725eeb5ae7bc622840fbdf8e33b275caca98546158c9be" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/241.json" +hash = "44ae5b7b866632a4731378a7b0b4a9e0e23e6cc8cba08e52b697ab93aea06f79" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/36.json" +hash = "fb7f53879627aac25921405e764021ed33ae67a82445c13a868217b665c67dc3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/368.json" +hash = "68d17023c9918beaf6ba987a7f628aba52d7acddb5ebc3a1f1328c026ae7059a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/372.json" +hash = "fd380c601b1aa0961782306e1c55d1a557a6da129ca98c4aec7b32c86227c9b0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/377.json" +hash = "3960f88b1e9c32ad4afbd14c993d38f92722e1b36c7f986405d7dffdd2339752" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/378.json" +hash = "92e3e1235859c4388740416a87bed978e269bc4094577745e560e61592bfcafe" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/379.json" +hash = "c26d4aa97a51096861769ab65daf9272b7c58694f7b59ac41d90b3711e5c6f91" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/380.json" +hash = "79a9dda4753f2ac83e0ea8e1f168364f4647ddbab99425d2d1dbc15621f37950" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/383.json" +hash = "b3a7459844610784cb43014e3cb622c066e826894782549fc673bc7998fc3eb9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/384.json" +hash = "d91eff2592bf63025bbc15d6899dc8f6efb6db30ab5df48fbd0c1f2e50d0d265" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/385.json" +hash = "a03c6dd5ce1c30fc32ee8927685e74e88dd3465cd50983e635ae6ccda1fa8143" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/386.json" +hash = "9586d069245576a802eebf6f0f69a373f061448fdd0ab5d9757e92e7ebc208dd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/387.json" +hash = "6a079ad7854c120dcdb2baa0b096d92ecdcd6deee023c1dab963d871633cb2d5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/419.json" +hash = "0930d4cb0b3df44bd38c0db645e7d8df94deb3a015bbb5ddc3a4e81331ff4aa7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/420.json" +hash = "98eab96cc5c3e1f6ee2e8ea21d377dd8fe0480a936f655e26c3898d28d14adcd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/421.json" +hash = "297fd7b0ace494b914487af394ab912ca6c953670ddddd7a8b2661da865298b8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/439.json" +hash = "90d2e5f84fb39f9ce30858085194a671a4973d17d4d9681a2b2e1f377d4fd342" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/440.json" +hash = "635d8d3b8ec6e329a44a03f926a8c339cf9e456e8eaa85b54359b77fab45a51d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/47.json" +hash = "8845e96263d0a8ee011f63ce28240491f3fd5f2241004d421e9f0df8815d7b8f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/472.json" +hash = "bc8035c84b5b6780424429166f2734c34787b5c1d00dfaca5cc4e4b24bb15050" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/60.json" +hash = "e7ae7b6f1817e499a9250dbfcc376c3b124e9ec2a6a54a92201f952f829a1717" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/603.json" +hash = "0c9cd635beeb90cb874215fb0af132dfdd45e149572c064a46772efb2482c8a4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/604.json" +hash = "64ea411f60ddd4c7241b42810e83b8ea132ba4b3dbb97cbdce9efc178e3d91dc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/631.json" +hash = "111be532170bbdf4b0ccb97608b96bd62454cc48dbb5583ddec3ded9b6ecb467" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/657.json" +hash = "313981c3d54a5dca7937219cdbb6b28146925552541038ce35b6765973fcec33" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/658.json" +hash = "169ea893e62a9ec8d05fa11229872b14ff9714e8de10a4ed9ab85efcabe0f58b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/660.json" +hash = "0c1179df3eaf83771833fadae934383e65dbd2a6062bde06f37b2f74e415cd77" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/661.json" +hash = "9256dda00f2b2868a1910b313f08df50b2e31c98dfcbce1b37212612eab10ca2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/666.json" +hash = "97fef51e0a94a39e8a054ac2c0c03a7b41eaf148bd89711c9c7ff26daf5d312c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/667.json" +hash = "a931e54d7f185e38a3c7a6587e6bfa0be44d8dfbb35cc2f27ffa16ee4c997e46" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/682.json" +hash = "c793a893860aa63486f367dd7a5e67b1629f808d07b3e1898f48319980c63a69" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/684.json" +hash = "ecb486d12fbce7381ead465715d32f0aa5f8a0b37a300cb1383f46d3a023571d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/721.json" +hash = "fcf2b35d399f3c536964460ab424859b3cc8b86cc28fdbc0771d6477c5a67edc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/725.json" +hash = "f1fadd664df8c5d08847b7cc8a6d848d1167b07de71aa160e3de6bb68535ae2a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/2/99.json" +hash = "04010cc64785c2a8fa8e949d773536cc0cb64bc1bc840eacf36865b78e17b188" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/1319198702.json" +hash = "dde76330dbcc9599ffa784287f290f571a463d9ff33ae6a515e9ad0e58d33b95" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/442.json" +hash = "3b4fb96d24b15d7e610216e5ee08ee7b1aaab5f09d514410259a17089cb053b5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/444.json" +hash = "7a50272123e4005ace1f446a3bd4f01bc6d620b58c71342333793937d3e70e44" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/445.json" +hash = "8469c16544fe89ac9ac8247313e743bbdde0d76440bd10914e329deb4429e762" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/448.json" +hash = "d6b7767ed3db756144e9f21fc5d6c3717b54f6ebd0d623d092e151c0bb28d27e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/465.json" +hash = "53620581f012b115420211a8d35b1c48752d1e216042556c53888bc91514009b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/578.json" +hash = "5a710b5c663a2c93eb62b2f148fd5f87e0699b76693df04632cfae9cc1953bb4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/609.json" +hash = "f2d8b7a3ce24c124be9935d43e2ba951b110c01e9b4da0e212254d79125e73f2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/743.json" +hash = "aa15a8e5f0a0840abab2a1c0e587ef1e7804efb86b8c44359d55faf2c1640483" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/744.json" +hash = "e9c56637d188692d04b0013124c974ec2ae646e7571649663012777de3ecef6c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/746.json" +hash = "08db4284f062288cb4486296455b06676543ee26540ccb129d6fa90a9fe4796b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/747.json" +hash = "780fad43c67b1d0d08132f18edb1f725f7899b7df8666e65de2edc41c36d7e3b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/748.json" +hash = "abc53840594b264d5c71f01fe8a165d493c6ef6e32bc12c23d88b3310016640a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/749.json" +hash = "df568a1e45534aef96d5ccc7eb81132a82cb714a4ee7027b5c75908d49161396" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/750.json" +hash = "e3efb9aad7dcd102420ffd42bbfff6045f661a5035feaaf5d39e0977b8d5e0e1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/883.json" +hash = "be7c7b6e817490b1890eb3d9e960cf2415654f82e4364f41fcf4bfce7e9064a3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/884.json" +hash = "2ce639f638b0435afa2fc576878750b016e49bb98457e58ed0e97950041db15d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/20/96.json" +hash = "cc615ca95380847199fa129eddf597369db1f9a4ca807443b283e0623b888042" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/291.json" +hash = "5e54a92c782bacf51cdc33f63d4adf047deedab45e6c83227314c171248a03e5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/587.json" +hash = "43d0cb4403dd69cb9a8b7f6f2c1a75f8bea7cd1535568995088a7adad10b5523" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/765.json" +hash = "fe8cf6e437158211cff95e365007c0b65f61e8f6ff8b241e07be083c4448f20b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/766.json" +hash = "566a6c4ccb43cbdf3560e00342bc0253f83208ff92bce8cafcfa29f8b729675a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/767.json" +hash = "1c23e4f8808e4bd57e4342de0c8ebc02ad24de790b6730cd2607bf9e2f3eac29" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/768.json" +hash = "95435cf5bf9656d0e261f321f35db52a8d5f8ef354987e1ff43f2ec869d2afdf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/769.json" +hash = "f222a4cc1842332631d8b3d6c7de00293ed66cff867975c80100a80c436d8647" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/771.json" +hash = "e276afd17223febb3f866d4bbbf3d11e56c1ef14b447fce4140af1d9d5eea2e7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/772.json" +hash = "3da656fa14793f8a5d8ecd0f9c487fad279f3f78226c019cbe9a6a7e6da3ff65" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/773.json" +hash = "43629567335dac3a94743c680284fa984a5e5ca7379e6aac3290556679932165" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/774.json" +hash = "db55a83d8b7122debeb7d22c1fa792f51e7ce96bb544b3cff0e7f39d4253f4d3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/776.json" +hash = "4e66a0f507af0c0b50b133dba7819437e9e18999ed49ec92b936ad211fec0b29" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/777.json" +hash = "785366891b107844774b49097541736473a69f47d0ad431427df3f2db8eddd5f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/778.json" +hash = "5cf2970d68ccdfda2a14415c27ed4f3fb2cdf270ef567c2342a63c50949abf11" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/779.json" +hash = "192ea27da87a8ddb95a489c0240f8ad1876d78067f5cd6270307fd2339afe7de" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/21/780.json" +hash = "27b407c74a0594a8f6297d4e0f94092b751f892632fa1acb4e3ac609939127b9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/247.json" +hash = "ebfb0d3f8a5484917e70f0a094a8a47c02fc2658c967991f5a0315478cd9f500" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/248.json" +hash = "e35e34b0e3bae8ae06da012452fd6aa96c3f9b98421814427edec0260de4445f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/249.json" +hash = "c997a9a4a95aa165bdbe1316c84b9fbc0b839c8f45c484602d0363cb3bde5167" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/250.json" +hash = "f21d6438a597d70c2e0ae1825c3701a1170ab0b8289f20371ac7df776f6ac649" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/251.json" +hash = "8a3a2a62b03153d793486c92a43daa6f784d08c9796f3d3bffdec264d312c5ae" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/252.json" +hash = "40c03c625373ef8ac92a85450f4863de0dad3e6281167841eeb9306d829bd62f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/253.json" +hash = "84301e26d3069b46d64005b1baf68d04d9c95dedf419c8b7558382319b5e97c8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/254.json" +hash = "71b061f763cc8f95a123b85003dd9c5341156412240ae899f17672dc0bb30e18" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/255.json" +hash = "97658c9ea525bdce47dacec2fafa88a2bc32aa7c4dfd5d46ed13b513875c4604" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/256.json" +hash = "224e464f678c841a33e0892f535f589a672d7506cd71f82f1e8f26aeea1c80e9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/257.json" +hash = "df09a788cc8968858c61ec70539b964c344b15c0e08238f44b174330a073d440" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/258.json" +hash = "fef02a23a86dfaf23c12ccfae98e39533cf7397c361e37195d640b832062469f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/259.json" +hash = "5d1600508bab020c428396ee21b8492d6e2b563ecf3e329dafbff4ac087ac4c4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/260.json" +hash = "12e712248c485eb3278c4e66bbd66809383f853ce30efea8867a1b023625ca84" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/261.json" +hash = "2d66c5ffaf6d97334ecf6d9ce8a000f25e850391669bd80260769e1f286770f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/262.json" +hash = "e67a4ea84064b899f64dc12b32f6d350173b584d730ff42197a550d0b82a2533" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/263.json" +hash = "9fb6a066774d3ae6fada496afbc4696a5e7a4c6591b88fbb77643e747843e153" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/264.json" +hash = "841024080dd3873fa268dd158a3d71ce42b7462b5f3638c9771a2e2ddd69254f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/265.json" +hash = "702f4ad210e6eb37eeb1ea8f0fa6604aee915bd79547210bdb6370dd82be831d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/266.json" +hash = "56814934b3a1775bdc3b9249e647c5fbc57dc328a03beb85e7e0c2c0bda03e54" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/267.json" +hash = "66b79813c884a212b6fbcad09c43c2f97cce99f3a45f2d77a1e790c37b8b9657" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/268.json" +hash = "41b5f4fbb3ee6c3fef0830e4e6bddb582c1337c261159b3f4379fcf28e7c4510" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/269.json" +hash = "9f94d12e819d540c1d445ff8b7a189ac9830285722741c60467eab3cecbe315d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/270.json" +hash = "d4c5bf5a9c13154a7e7b691c29441497329b5caecd79d1eda23ef7a778ed3115" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/271.json" +hash = "da59aeb101db5069aac8f0f9c8e32f0d1bae4785a39dba627c3b38a444bd3701" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/272.json" +hash = "f18f38cdb2034e95c0463bb807614a68583477b4d8a0234c58725bfbb98bc502" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/273.json" +hash = "c41c7ce76c47e5502844e0897def60e6d49b2f2798f90eda9c347c0917c63d5c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/274.json" +hash = "6013ddde365678ddc7b3d5c326e0e211cd3b6fe99553653e9fd2deb78579fed5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/275.json" +hash = "98228caf5a54a9b9281110da4038626953036acfd70c02e605571fd7902627bf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/276.json" +hash = "668f3d8513a3c0fd89bf55f316cf192ebafef106c6d766dbadb14a7e9d1cb3b6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/277.json" +hash = "1a22723223a2575151a39bf1c102795cdab67492fad1d1683c8e71381f981d6b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/278.json" +hash = "8ff89e14addc05e4952aa97f9d92fbf64587c956610e983ff070a184509b8a6a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/279.json" +hash = "2b677300681bf15e4f6f2ca9cdd53c6e8a10f1f38066c52f1179a680b2f3810e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/280.json" +hash = "a9714bbfd239e9db4747582a0a8e884966a51f00db7be581b9a2cc0f76359e39" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/281.json" +hash = "a46a002ee2d1c014fe5f2eb97eb1afe0e8353a18ae256dd1be95979892092304" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/282.json" +hash = "c11a10cc9507c1ff6591ebc464aae3aadca56e08e81b8b5020f3458056086869" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/283.json" +hash = "6b5b0bea7e8e19620b4a3eac00dbac73a3c1532580871dcae9efd8687786dcb4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/284.json" +hash = "526a34cdaff7b6d4515c8c93d461a8586deb39b89eacfa98a3d321e11df2576c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/285.json" +hash = "6be161da376b02690000339b2f4d7c368ce2134ec168c3a192880c5a8824fa95" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/286.json" +hash = "3134883467e74ef9f19c603cf8439c03443e6335bb76da073536ad2979cb64e0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/287.json" +hash = "d4911c700bf1b3ebbd5b7106457c4fc813c3e9406f070bab42fe5a45346176cf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/288.json" +hash = "93322d789025acf054fae6a75518b125a9c1760cfc6d3b4011130cbfeba83e63" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/289.json" +hash = "c9728ea68efe914b0f444bed750ee54958e958e87ad5d976ffde20a56e3853d9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/290.json" +hash = "a5d93d894d76374be41fdb7b7ac85a789cf6ab2d5824d75b0f99cb4c62269662" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/292.json" +hash = "d7c54ed820f24a394de0570bf57f0e4d0619af6dadee29dfd658bf85b8bd0ab6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/293.json" +hash = "09fbea9cb419ad21058f29c286c76224899e09d628187e3cb3297ce6acec00c4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/294.json" +hash = "4c085a704de1b43be9137b755a94d8dcefad82893fecc330124e19144a204cef" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/295.json" +hash = "dcd689718b58ffa3bbae4796875bf8ed74918fb5bc6fa5e6b8f47bf0789244b2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/296.json" +hash = "bbef02392e6ffd7c923e68e15a5f341f7218bd84612cb9a8dd560153454f64ed" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/297.json" +hash = "f8ea61d2790db4dc75a8dd1a1efe5520844610974ee25f4cd8bd06b2d2d14b1a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/298.json" +hash = "3fc439748ffb9f4300bfdfebb5ad7709a4e06e1b18b97e491ff17892e0cfeeaf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/299.json" +hash = "245cd0291442611a95b1ef7227b804a6c9cd3c08aca1d81f3ca7d90efcf7a530" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/300.json" +hash = "f565c6fcf6831faee9dd4959263e25a0af359686eec545208e9f8b389035ee49" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/301.json" +hash = "74d79620f10d052f9a1cd2837dead165765edf4e81e59ef70ac44787fec2e349" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/302.json" +hash = "57f7a40e20a3b1681513972b49b2c68e018b9e0d08b0ca9d369e70f26fc7e8a2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/303.json" +hash = "aad409f8642cc54cec06f46078b2944f41e3c7136f088eab32b055f25fcfdba0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/304.json" +hash = "b4949ccaf363d3f7a47cdbdaf8ce621b4a7c09edd8abb3b15d37fa4375be23bd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/305.json" +hash = "ee502913db8fe3ac8372dc60ffb43a4dcfe00e312e728dad428e62da2a49b737" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/306.json" +hash = "c126670b5a040b4bc2fa646177e8197dd4c5e1578a8b1e57891a1fbf0f12e084" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/307.json" +hash = "e3bafa10300118bfbea8758085f003deb8fe805085c3b4fbf8b377b4d4b7df9d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/308.json" +hash = "296df78ab92f9284e9f292cb9553b33127526eb15f10cbb90c94bc5e58bb1afb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/309.json" +hash = "6e591218dfdd360620d5110864cbce4f605bbca26916bc551dba5e6dcfe0d09a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/310.json" +hash = "314a29e48734971ddce537de6ce9b666936434a8142d2fb03827dc400cc3b0e7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/311.json" +hash = "74925a4e87d0bfc9b440464e714ad0ce07e5c334583499b090cdfdf66b625a12" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/312.json" +hash = "9591819ea810b24b6dd8bb6345e64dbb9366f72216d544477ff2ae3d66abfddf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/313.json" +hash = "0024a326d151f8e130362b0605d4f0457d03b359923cbdab1788fc5f29d69733" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/314.json" +hash = "f2b7deddf533e765fedd22dc8e0eb8d4802045ba95d8745e9c6db2752143bdb5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/315.json" +hash = "b24a8f3b5ae0b77f120dc56c94986075ccae7bbeea4133b1db36793e6b061319" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/316.json" +hash = "65aaf21e94ea697fe8dcc3c62f8c233eff73131e2292dfa93268853c9bd77590" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/317.json" +hash = "2e318e66ac27f8c3c1be143f16bd19c4d1957403a9d17519c497eedcb71b0a00" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/318.json" +hash = "d77d7092910dbb596cb85cd840a07b6986faa6f2dabb1226ee02e749131c6692" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/319.json" +hash = "a2e49d545dd35fd36070f8e7868feefde2ccf9eb6f02ab612a2fa3390b57b104" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/320.json" +hash = "39c6d83fbe52984f8ffea093b7b98d594851b38ea756728c1dc3cf80a0a25039" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/321.json" +hash = "ecbcc76fc160d8e932d471fc3a7cf8b079b82c6f534886b38a3303b033ee98ce" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/322.json" +hash = "b2836c6e14aaec0879bf1c88d5b4e1e120fffd606ee30ffcc141408931be3619" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/323.json" +hash = "c1cd33eb86bd624f4125c6ec15a276b1648bc577bcd05285e313efa7978a6e58" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/324.json" +hash = "aeb7ef542377db7f02668db4d994cf939df9ca1a67a569990612e44b25d40f40" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/325.json" +hash = "175cc19181aef0fb600ca107013eb722bd675416fc7158fb56dcf6399bb556c2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/326.json" +hash = "56a2c20a4f212959e6249fbd80d54af7cdec5abe94a09e8b7017e0238951e80f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/327.json" +hash = "7eb7c063039225670381c782594a1844ab657ef8423faea752d4915352fbfbc0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/328.json" +hash = "f696a3ce44710ebff7e1f085816439d6af272574f3d02b391ece555d474082d4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/329.json" +hash = "402b3a6ce927cf5718f9e87b3c3d7a1d9ec86fe4683cda2f65c8660329dc7b81" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/330.json" +hash = "ef2e8b28506cfcfaf58ed5b2f9f45dedf63085a149ac414cbb49e65038d246f4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/331.json" +hash = "e3c9192ec7fde6fb2aad841641f9ec9ff6d31d6959a06a328c15158644e0e7d9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/332.json" +hash = "39710d1c631ad89de1634d6a9ee98b638447b3389e99e6913dc3c09fa211c026" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/333.json" +hash = "999117f8789eae8706a379cafac6b9755bf3acd4af0507bc713b6df87469f6fc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/334.json" +hash = "1262f15417b4de1cb45a9b9a3fc3b10f0abb14eeed4c4a45a39e8318c48dd551" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/335.json" +hash = "866572c6162a6876dbc23a80d0cb2a3c462cd5838241f0ad775f44ad20d04c03" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/336.json" +hash = "b3d0ca423c1a2f133ba1f934e95a0472c72e01035261f0e6bf2bbc12f381ad0c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/337.json" +hash = "df6d4079a4b88644bf4bf165712985ff95e44155323a6a8e08a8286ec26cd9aa" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/338.json" +hash = "9a3e9d3e8f0491db7bd8933b513f97c59812695475b2492ed620982f18497725" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/339.json" +hash = "2664881821c4ae49b26e6f4714a3fa0eaa3e97e14a292abd7907d5738c3b8beb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/340.json" +hash = "b8bcc6402ade9898b7ee4528ff23bd52761744dff9e0f4a81be13a02bc92ceac" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/341.json" +hash = "96e358128c1b8b72b05d25eb6c4703d364cf61ff847ba655675933129935a1c2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/342.json" +hash = "fc1185c9fa24ae6b6c661e84ec35f70708d9d88b22118c0c730c7ea064977a5b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/343.json" +hash = "7da5cabc75f4e5754c2fe867bdec244b6f610659db2220ce7e542ddfecdc3539" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/344.json" +hash = "43630339b4482c8f6ae7c361b4246ab1f15d27f5e417006b52514cce1354291a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/345.json" +hash = "d73b12aa49c8396d02d2e14ed7bdb4c8c039af18159b226a3a1c626c91c2d807" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/346.json" +hash = "513a10a467ad3171ed744233100121f53d6e7f6d30839289db3e4199f0cf4e24" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/347.json" +hash = "e846ccf2fc565afd0c6108af2f99f4ddc8d28d560bd35b24e6a69603c04394bf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/348.json" +hash = "b317999a18a6305d01a5d7612045859131407d1a8d7ce0e082a4323742d69e00" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/349.json" +hash = "57d22cd26f7b13dfc1738fb1314946c0aaa99eb3351698cd61fe617e78146589" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/350.json" +hash = "0c2d2a97d7f7e67e9d32b61baf0f5a45bdc14e539462be4a7c4e9176852ff7cb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/351.json" +hash = "2d1d5fac8bed6bd3b4a56b2927388dc1b7dbebde9ffc525f2f02ae9bf1034b9d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/352.json" +hash = "8d93a2e9f4c8d27262b05894393930db8db3ab8a77aa7b6a074f66b84105f825" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/353.json" +hash = "7b84a7e83028358fbcbfa7ec6ecc04938ded41a6765caf3058e828429e5f4b86" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/354.json" +hash = "21f9fde34efda79d26bd5cebbb9b37baf8841b0d388a871c76fd4a084775c993" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/355.json" +hash = "f73d4b15ba6ad6f7351edad0deeed1fcd7c09668b6ba53c7d5a361ec7ef6de52" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/356.json" +hash = "0e09d3afa3870b7a6ff22592d6a726957d6bb8eea718b81b9aa334fe946baea3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/357.json" +hash = "5582661a1633e91a96b215533b7af07d339015f71a6330f022e2918726bdf7ac" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/358.json" +hash = "347d2f8ae56d3e29767742950d87f9c43bcefd0333a71c8f1435dc65ec40bc34" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/359.json" +hash = "db91dbed5835c5fd67b11daa13dddc2891a59788a18b35070dd45c337c54cd8b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/360.json" +hash = "0f5becf90faed347b4c9f7ce61def3b9907ecbf9c2156d560c8b1409bfe510c9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/361.json" +hash = "36ad7155f278291ae0b8e2e38a212b7f5b6055a094ed65bb8691264e374cadad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/362.json" +hash = "24da8403870188f42174cfc85bcb6a387ff38fe622fe6db84ef823c7b82fa53f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/363.json" +hash = "950a0bf8b17b1d84995d03c2019582ed404c199c2945f7add7ba389e63f0dcce" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/364.json" +hash = "07a959f777036a4ba67a533fc5207a726cad99288fbc042f67bf9dfab26dfa76" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/365.json" +hash = "afad8e384c7509c10941a74d8b6216dba91d1ecded7c001ac32c2ea3030c2b82" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/22/449.json" +hash = "b1180446cb30e91c8ca8ce133c7e70688143d6638a6249804b5fde99018b53b3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/133.json" +hash = "03bbe7dcfbe7c252787854b84e2b79d6e934aea2cbb04675ab0a4a8481151eb8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/134.json" +hash = "fa6fa5f966969d8955bf2bcc9403f101f6d40e7c1c98b05579ad300f8bc20471" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/136.json" +hash = "bb7b4c87c16a95f772bd0968b550c55315e5789dee09c94db27a86ed88d46e33" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/137.json" +hash = "f1b9f1f218d0e02ed972835efa726bdac06ba3a28e4b02f98a01dc38ca779c40" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/138.json" +hash = "bcb61485a7a99604ee74342750532543fd4d371ad4d563c6672b5f78fffde674" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/139.json" +hash = "d33baf787356361ff6e88a60aa9a744f76879825b7dc47d665b73a14c585795e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/140.json" +hash = "a83bb2d36d789e192ddaf860f207d51c6c9f7cf54db44d8b3abe5b8fd9d64639" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/141.json" +hash = "cde9b3da07969853208cab339f70ef5e61634944b5b03ec5d66d72be6f2f40f2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/142.json" +hash = "2921396f599ef00cbb15ba8574a2d45f69743719ea3983888c41137f940c1631" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/143.json" +hash = "960423908dd0db8df13b57a67a8b1c2a88cfe0c370a11711b127f8f8ed1793c2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/144.json" +hash = "32d2d1019de720eb5f1c07aca73129f627b152e19c05bba40493d4d36b3726be" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/145.json" +hash = "0c58385a45f75bffbb6bd0249f2bee70ce3d9eb0aa6202541545a97262049606" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/146.json" +hash = "d7ba3db6be7061d0f75e22b628bf7ef1cb90c1fd556eeda666ac3b2e8f7fc8a3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/154.json" +hash = "8e5ba91df90169b70e70aee69868605bd958294da0e444bdca0fe291160dd66b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/162.json" +hash = "12ff7bf4a1ac778cdf69364ba4a3774f976db2f7324d1e011cf922bf0f3f9df1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/163.json" +hash = "7bb17b51786235f5409d5829af67d7d9457fde3f00328ddde96e75e00ab55b03" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/164.json" +hash = "ff7ed5408dbf09c330d17cb78b8d2e5a1bd991231569f57a474d9be7d9d5744f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/165.json" +hash = "374eb69915bf9ffa02296096298984ffd6be2fdcf6e00acb9fc359a8b354ebb9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/166.json" +hash = "0d1c1472ecc552ffb149095d1fbd9c96493bb0712018841c4785d6e0cdd38b94" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/167.json" +hash = "eafe4084efb8c7c213856f296c78aa7cd16476b5fe23334ce2b20bb0b2adee7c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/176.json" +hash = "ceeefccef574cc20af1a5ca9251b2299d1fa1b1f8b643260bc9da540a5dc2517" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/225.json" +hash = "72aef6feb1ba359e84b9689a135ea48ef07a2581928f9dcfbcb3665be1c0c759" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/226.json" +hash = "430847a740774b0731d2983f065366a04846da3de6a6ca4388667cd95f7f0e86" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/392.json" +hash = "8661643229d1ea3aa9826c3880c2c725aebebb4bb36d5cfbd86b9777f773ae15" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/423.json" +hash = "11df41f5a537bccc2e042190c83185c7bd97bc2f769fca45b52ecfd1934fc4d1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/424.json" +hash = "003032f1351950929816c17b45df8c11101f4532a12e25a08fa4cb892905b977" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/425.json" +hash = "2d19b1934a08a2cf6208bdc373468a3fdcf607b73880976581d86a58629ecbf0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/426.json" +hash = "0f8f9133db0e0b19b74cdf09aae0aec9786298e9c3a92cc15bccf87f0a8f78b9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/427.json" +hash = "e8ce0520f9204cbf85f681db2a1e4c677c77ccb8112b7c1cb527b428da8a2314" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/428.json" +hash = "52cf7b365c7aeb8b4a4f47553f151d818f8d39ed3f0bbcaad57e8a5400a42e41" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/430.json" +hash = "6cf1c36ba4f0116d49393eadbfa1f4a0d6f5efd38080d64f53bb58e92d672d11" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/431.json" +hash = "0a61b998428a45f4129f3433ffeb115ccf20d1ce8cd31f50a3410707156392f4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/579.json" +hash = "725e0e34f42d3fd2056600e0480f7062c16c6c7f161948d600faaa7104a6ab04" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/83.json" +hash = "1887ea78b4557054e03c0eab9897654cc627d2d5ce48b1c4f5680d97dbb51d86" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/85.json" +hash = "baec59cc963eae6a3c785bf052dac94157a0ac0eb923b073462a339508214a14" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/86.json" +hash = "1ab9166dc8fdd9c15ad46662bcd27524a8d0d77d9601a606039a0ad6b5112d8d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/23/885.json" +hash = "036e794f9c1aa813b92ad70d4d68f0cd84c48d734e0713128cc3e560063273c5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/521.json" +hash = "a2272ecdbd90c122596c9502330f17de31185ed929f702168e97ddc15825a3c1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/522.json" +hash = "0bda17e739e2da2177ede64d2b80f9fbe547b7c840053177ace555fb7a53c3cd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/523.json" +hash = "e01d40aaeb562668514ac2649ed33ef3360600d952f40e7a0a48c9ccd4a39458" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/524.json" +hash = "c7f7a2cfb0bef08ce25ae3e22ffedafe3d1f56737641e1bd909ccda4eaa0ff59" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/525.json" +hash = "a9ce2d4674098a1c7100634d91804eaf25c9c77a60a515e74dc50e544ba12453" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/526.json" +hash = "60c3a0ac41e1d499333e4e6f85fb0394ac56dba87d62abfe2dfe80f8670fe5ca" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/527.json" +hash = "47e76382363a4a37acccf74a92806223c28eacb5353f4fb3446cb44a9b563cb9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/528.json" +hash = "7f9e566afbde418ca0ab23e76296f04e3a5b4dbf444ecac48bf86bab8b94189f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/529.json" +hash = "5fb710afa8ed81cbcc55c6865887379ddc745f31162211532f75e92e80751933" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/530.json" +hash = "10887d577f0c2c0357065bcb239fd23de39e5e7ce756db6b40242c68ceb4b2ec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/531.json" +hash = "af34c26ac0d41f049a1355460a6ed738341a61c657cef86769e5820d723aa1b8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/532.json" +hash = "3e6d26c07812f67143c9ef6725bbbb249d31e3e6fb281d7ccc6655792d5aaff1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/533.json" +hash = "332be6b85b9f5be0fd06f983a50af6ac621bd0a29a38256d60bf1cad1967c644" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/534.json" +hash = "67525f14d5ed86a6a1340cb492ba0016efc9a162821b7afc02464c91f0118e96" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/539.json" +hash = "f66552ca9e777389bce09db2b5d10ea0befcf30fa406e216ab321902fc0fb550" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/540.json" +hash = "315658628396a3677f9b13c1e60052a09bb5f4089e9d27b3e13fe5c4464ae98b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/541.json" +hash = "74fea13a082d85f66779fd7ca1056f954f557a0ba63da1631c85dc75926f98d5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/542.json" +hash = "acc9b0bab050be2b24e5c0e8f9ad2712c54eae7af4e30a4de33913adcbc97e16" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/543.json" +hash = "42703a8aa5d38d2cd0047074b90ef7202d939bbb2fb207754c772d6974052ff6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/544.json" +hash = "ac8de80f43021a0803699d084eac3b1b971e0ea45257544b05123871aabb9f0c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/546.json" +hash = "14c805b3439d312ee5431b9cd6852ad924c92f35bdfaf9ef7aa8cf15fac60f44" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/548.json" +hash = "a9ef96efcd8573c1054eb40f04740327d3a54cc55be964c1cc317f9d58c0e928" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/549.json" +hash = "47264c1059dd9381598a5fd0b48b0faf7c1e65f2741b52563b7024c3276c7ae1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/551.json" +hash = "1a8a23143b4589e839c6159ff07d380d4503c51a695fbd42624c5876f1e1fa11" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/554.json" +hash = "16299f1ef55dfcc853eb3915f9e6d04a5967ebf344b3abe758c7229d1155ff87" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/555.json" +hash = "cad0ac11c6d9c100d6160bd4ea4faa0e11a438acf3d3d3cc8f2b3e21456b6b65" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/556.json" +hash = "1523afcde2471308809e205648c48ba2eb34f5bf2809b1df0f30653090561606" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/557.json" +hash = "58d8f413555614db33d94fec62185881fcb2be0d4ae503bd800e50bc29a3d4f2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/558.json" +hash = "5dac233c502b0c854d32e0b60f5766f44a2a9accc1ee8292825d13e59fc4cfec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/559.json" +hash = "f9678e714d3e8f2d5d348e610a363da96e4e33322d992907553b30396f0fbe81" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/560.json" +hash = "05d8ac2db0adf021ebdeb783cd025eb214ab686e8ef47fe53d0a2d1ddf40fb2c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/561.json" +hash = "414954cb028fafdd5ae1af8040c97f10baf4572bde7f8708ef577085988400f6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/564.json" +hash = "e565236855e937ed5ba44aa22172c471e5b00f41f94df4870bf3b2f8865ffec0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/566.json" +hash = "f2aca86edf78a32eebc28be09386f4e5fc725e74517e6eff9d4fcb8c1b54ce20" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/567.json" +hash = "8289dd8ae6ca014de98bb6e0129cb0e19a1bb0e21447ff723e83427133274a3a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/568.json" +hash = "0091ea53aa4c274e1e29a0ea3a1e9052f9c14c2b05e60c42f4c65825b6c5be95" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/571.json" +hash = "67f7accb624154f44a11147ebde43d65dc19447732fe64b9d61fc77e300b053a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/572.json" +hash = "a2446eecbbf646e70c6ae3d58a6a354cc7dc1004fe1c185b3b631c2ad93a184c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/573.json" +hash = "015b2245701487baafd07d596400af0e6d612adb7c1b18e9e5564bd6f7e8fb16" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/574.json" +hash = "7d7da6a5d1e19892eb4d84ac6303ee302491b49f97ed147f4a39d7895fbfa36c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/575.json" +hash = "a62f30e454c50f76df2b02fc6f3180080df2fa02b7a3e17e18826d1b178c2aa8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/576.json" +hash = "00685d740b40d247019ec9276b958977b796a6df66399e2d55ac0465daba41d3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/577.json" +hash = "f89bf2cc33b4e8e457e21cd4927736db0561e9dc3f7f63494df1b3b55dbbba85" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/581.json" +hash = "77cc3be7fc57793f6c1a3b9de78143eb5d60cb523a73e58900eaa6fb7589e409" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/582.json" +hash = "f67596018a5beebd4c11ca133e0d39a0baf0af516e3a5ff8fbc587ff7d480273" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/583.json" +hash = "2856277a8a5a303c2130566b7ab697874aec827c67ee0bc95e3a12004b24e6e4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/584.json" +hash = "4969ee5d1939257073624eada49f3d2ddd682da6d942c1aa0528cb258ef9bfd7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/585.json" +hash = "3bbd820c88978c2948f500b2c68446c3e35fbef734c08b90447bfdb0038fc99d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/588.json" +hash = "3d1d5d443e8ad27bb7301162e6a46e307c74ab57b51e92adc2a860273557d740" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/590.json" +hash = "a015cb95172ee660fddb710bb679a1b21bc3829ec3baeb7e2d654fe483f98d48" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/24/591.json" +hash = "a08acc2977c92dda4ba6ff28fc665fef1057029f601d03c7f38f1522bddba37b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/1319048907.json" +hash = "5a70a4e978386b755c19bb27ab92033d86802e4ce03a1df437c94910a4eb76c8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/150.json" +hash = "d697debf58185aff09f1afb49a1ae5a6b8a9118c64acaddcf92a663711b1c984" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/151.json" +hash = "9d53a8827b1e65b9f943becb3a56f34f7119b434d6d561ec77d2a2ed002daa1f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/153.json" +hash = "9cc9d688665fc30e9d26b769574c799a730777edf3b338858e614cc0a2554fe8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/155.json" +hash = "392a34a7eb20fdff5d9a7a8546048e31cf5069f5c1189a7c03a13a9653512951" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/156.json" +hash = "18e6569b0a59ba1537f0367e76400d875b3ca0769c5e71c4ac968247a438acea" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/157.json" +hash = "0c061a9f038da8dc7c9b20a57fea3691f670d4e04a6669523a1aaf6fa82af6f9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/80.json" +hash = "9030b30287322f0d29bdd6d7906d99fd9ade812e683bd011e700343e8cc6c775" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/25/860.json" +hash = "5ab44e409551b83a118f2300ae91a19399b6dd3b8afd2119ff5a51eba74c4ca2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/26/152.json" +hash = "d4485149821f1b7a341f472bb8711475c0fba8b031d87e2c4e0dc91fe589d502" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/1997511526.json" +hash = "853e11109e2398496abd7d252e3395464e53e2c1057d2935ad8b4f953c416b51" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/580.json" +hash = "d3bf4a3a68dc6ac8e5bde74bcb06e846c50bd49712782f10e50552af3b3ef98c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/775.json" +hash = "60a8a1595326045cb76f6a435b0fd7bcb34f17b07d9ff4e0c2a950969491369c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/781.json" +hash = "c3f5292afc8b425f3cd1a6d20a2dcc03b8a35bd37c038a0e503a9e6807664ae5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/782.json" +hash = "33b619803f2b456501e52679079abca80bc1c7eb676477f9d537cd3467d6c018" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/784.json" +hash = "c0eea47400ab11ee6feceb6a083ad7dc5cf38889a65de4eda359e9109689312f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/786.json" +hash = "f06a68e7b9f826de9501493a0182fda32a58cbfa812fc56eba1a1644d6170ff7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/787.json" +hash = "87defd32e3444284cc7fd81185dc0e671ac09d4e411a9e2e180ded8c7e533f32" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/788.json" +hash = "8c19c3bc790f6bca98c5f73cd15611f8a85be8e7ea835332687b6aadd560e8f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/789.json" +hash = "0f338ae151adb412d74ca6b614b228ccc704eb31996d74d96689942a3545c1d8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/790.json" +hash = "637fed69492f3f2036988e920d4f62ca9f1c2d2c8c6b1ae3b7e37905e5f563bb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/27/791.json" +hash = "0f3fcb47282caf754faeaa11e64dd5b2e0c270d0134c7458639fea4f4e0ec9d4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/1090881854.json" +hash = "b983580341426b7a5e2d9ab357a8e4f3d358171724ad48a2ed128535cb2da042" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/1402916517.json" +hash = "24d31f00444425663f36b2ca3113c30e8544fbee8293e4b0ee63853c162fc2e7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/1786950658.json" +hash = "465ad269149586c7b2dcc8d6b744ca30ba2717ffbb75e558cae6010f9d9323f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/238.json" +hash = "5711a702bf84bd8bf97a1d9ec0ecb5dfd8bfd3d7d2aedf844741c724145f7e42" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/254727108.json" +hash = "a01f009f6b9b71f7b73663c2ae2bdad5147a57b32ba8e86340ef6a93595b5ad6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/371.json" +hash = "5a8f652a05e2c35439956b2bbea98f4e3ae726554b21e652478bde00f3f24601" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/399.json" +hash = "96be168f7bdf1b2de8d2a3ce8b587a61b271dfb48ca3b48f5cbd74693812ab21" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/400.json" +hash = "a9fbedbbd6c5b2bd11a40fdb50544b9c7b1fd25534ed7d362ee107cc8a60d6e4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/401.json" +hash = "8e85eeeb4e144a4e034ab7d0e5e44f2befe92a07f661501595940b917c841c79" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/402.json" +hash = "5b9f046b373b212142ddea62239c23d2a134580bd18e92a0fffe008c35e2bc57" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/404.json" +hash = "04dc78549ef8a82b40ff060e25f1afe8c0f8b4dc896cb104e77dc31e14712b3d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/405.json" +hash = "8940ddca78e447ebecded58a0094f387d08d728fe058b0751f6d6546b7e564f7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/406.json" +hash = "27966180b5cb5982518e0304cf7f5f78e108b947a25821f3a7e22ef07367ce88" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/409196029.json" +hash = "55f8dc6749f7cf1099bb02e69de43e0652c98bef695d852208b59bdf29397b19" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/412.json" +hash = "8e05d2195b6d9b35e686256e7e146b62d29f8d893d98c877f33ed331892666e3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/413.json" +hash = "22ea2395dfb462df5e5ae8fca5c452b7cecf207f791faed374b48748e386aa34" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/450.json" +hash = "00195ed2eb4c01117e359b4d272eeca2b8c5b2e7e70f2e7937d768241c22bc98" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/451.json" +hash = "c51e21c1b384984225a1b5f0388a69bce324d95c35553a57f570523ee85f2195" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/459.json" +hash = "45af4738bdc4538f84dd69627eed88ec31d76111be3aeef8d13cafc0f72c7df8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/460.json" +hash = "279781a7c9d56259dd73efe022e579bdb9e345f6041a21d6b7afcf9a043030da" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/461.json" +hash = "d5f36f557f2bf74e6723f1872c587b2c8e11fee4af0e4a577bb3705db4c35f54" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/462.json" +hash = "3e70930fa5be86441aea50bf4e22a2ccf2041d0dc8b6bfbbb85da391eeef7ba3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/463.json" +hash = "8de6bf513dbfac89413211682add8820350052d7727b381bdf42185e273e4734" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/464.json" +hash = "2ef89850d3934bf34d59b5dd249ecd134568889e612838939d5f89e359871917" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/466.json" +hash = "41845f9e18870f575fb37e91717099452a964bbf253df11abd1d5404d714c4cc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/467.json" +hash = "4047afbb66482d72795c5cabc23956a37a1fc0d77d9530d5f97a283bc56a2c0a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/468.json" +hash = "680fe7ee9165fb9f79447f0904932fa05d4d4ed0892eac3647520f9a6a8bd51d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/469.json" +hash = "df4efba84fba009cb7759674ee48886caede970ce814b7f7e10205f31041bc1d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/470.json" +hash = "033b91f449f9438c08fd88780a20754ed6395cdd586b7074aab32129b4216ed8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/471.json" +hash = "667eb14cf18bf105ed4c30208e5b7b19281ad74bc500e6ccffd1b1011b605034" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/475.json" +hash = "e4602c889b88a78f1930f1f339ab3c934b2e3af1faa3dbf24533b2a05f541558" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/476.json" +hash = "e5f7a9d08107a0b448a0be1f417791e8840657be9720ee9dbabc18ca8ac45008" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/477.json" +hash = "ac7c2d96f1f3b3015e24824ab5eeb33628ce6c55aaf95833f3b7f411c29c3e44" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/487.json" +hash = "6e09b8cf091f6df849fe20317b566c817a82d578fc081a20c20b9584da70ad35" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/492.json" +hash = "a49f5ebb68df2b578a683314c682c0b203c923344d3ed4e8673cabd0474d5170" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/496.json" +hash = "84b518eb7807a76a14adf2d2c4047bcba0e7114343fa000847874ddbcd86041b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/498.json" +hash = "2b68db47b8b6b4e30e86c119567b970963d296054be1b48fa0cec4eaa055346e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/498154717.json" +hash = "22b3d4dd5c130f66e9fa0ba36cd161cd287cdb3fe65a51e1bc65eb51c7377d0f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/499.json" +hash = "1b8004d6a0a3da4fd7bdba8b83f6c60608a2b98b9edbcde17866839582482925" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/501.json" +hash = "8fceae58ac4b05995a60d5a12879ce95c55ec36fdbeeaa5897b3dabe5bd8a44e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/502.json" +hash = "6b4a5249ba06210691183ac9e7d14b151fb946a94f528868410b138a79de9b81" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/503.json" +hash = "0e784dcd3071aee04d267867e182f0136b988c9cc0e605ef4d54ba5e9e286078" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/504.json" +hash = "4505167fe22f56868e069ad9c4c420abe6be1a88b792579bf3966505805be061" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/505.json" +hash = "c283267f8533cd21c064a148f7947e6167023edc5dad301ef22a8a3affdf0e3e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/506.json" +hash = "ffa6dce9fffaca1d9ed4b62240ee47eda1ab327d068db6314e8b2366b3344a2c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/507.json" +hash = "02d4790f580e6c33fafabe29b4f9f6579db6785459778e25d99e74cc46f16e59" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/508.json" +hash = "ebc00a661ac4831ef1fcdca99686d7c5b004777d21497979848c9db29990b91e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/509.json" +hash = "f8e5570ebd5271e2545f46e6346994f85d071cc0223894b95171b4cd6d878eb9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/511.json" +hash = "78c7d0ea77e273dcb2d6a868f9ab73abc9829654560ae6567065fed9329b49be" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/512.json" +hash = "fca8d7bad043ea2303a40ff2297b72207784cc2671a2d414f0b83e61cae0196d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/513.json" +hash = "5444ed84fd7a40f5957823417667b7ab60bc0c81a996f0907f7913df10b14867" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/514.json" +hash = "b7390fa556c9d0d33259f4905cf9414f6579088a5e0bf406a31f6c4f8ec10fb1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/537.json" +hash = "e9715adf7d9cf9c5ee841b416736686a7d490ef1397ffc880fe3cc283986f31b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/538.json" +hash = "6cca5b67d2b52ce4e9782ea4100953d7d140e9acb4fcbb09cdba364cde1bb5bc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/545.json" +hash = "d71504f114e8ac3ebfc49f74782cf6c4896e9b6eae69968f6d6d601b6507c7d1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/552.json" +hash = "c31a5518d4d6331ebe8841d7d997c6bbea950b0a2e6d595554790af50561c870" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/570.json" +hash = "c2fb52dee0412357b0f66d528030ae324e2c030ceab8b903f7240d52d5f63d3b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/592.json" +hash = "944885f7b29840ce593cc7c30082c003203bfe504da7d8f5e50060719014cb1b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/593.json" +hash = "56a5a2d5d46e66a008050ef8edd644f8701e5ae170b0ff5c7b72f20c6923474b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/594.json" +hash = "aacb78cd57829d95e32b89817025ac0b98eecf877724920189e84a320643bff6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/595.json" +hash = "06de6499e03a275b848e7ea2616ed4afb8cded6fac096bd4d30a3d3cfecb9a43" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/596.json" +hash = "085eb4b72182eb1929ae8a57b371bc43d1e817c4bcbe1cc4d18bd65543c57298" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/597.json" +hash = "8786476be20daa6e2b2d53747e188649a1e908a4163bc587a2233104cd2ba40a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/598.json" +hash = "1998fb1977e3d1c2f01455b622210e8fe56f829d546d4237283a7e5941d125ec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/599.json" +hash = "9c95c48ff1178c87101d674df08a2613109aff52a337ba22e45620c5d000e639" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/611.json" +hash = "ca2f94602ac67a0ae3813c9777b0a49ed72a9e796af2e6445b8543ed2af3a4ae" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/612.json" +hash = "182fb0699cbbf99d8cbbd81406bf643b4113536ac5b91f59b4a81cea6700fff2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/613.json" +hash = "9b2a673da18062208723e36c6b547a0504b0875de99e819fc8b9e3eefe4a80cb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/640.json" +hash = "a210b2cf7fabe8da29d2dabb1c4b9ffcf52042495821cbf8c0358e6e27eaa5fb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/651.json" +hash = "4d6132ae9e1d7b5f5254c9ed4fe14f99fc7d0f597fef99d349ecd700b414607f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/653.json" +hash = "3608f920803db79582cbf3a7c12ff3d08aff99c381ced701e70d5dae8b933258" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/654.json" +hash = "036ce68d0ad2a168d32544e5b4f2f441a568551b0c8ff3c4c8f1dd0dbdbe4301" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/655.json" +hash = "aca522232fe7ac0fab4506a3dffc94f228c382d7aeddc42629b08e553323ba8e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/665.json" +hash = "28104d140bdbfa65cc255f6455933852072b0fb2daa6fa73fbbad7db88193bcb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/671.json" +hash = "8c40b3356f0473f0157da57e277af331df81ed1ea5b50651123db18ccbe1f639" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/698.json" +hash = "db6b742502b81d7dda801b3d2c3b7f709ff7e2be96273ae76c6e75b3d9d25ee0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/730.json" +hash = "471d47788332d376ec4fc4032397e8fb45a2d0b431e068d31a2b618e96b9a3b8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/731.json" +hash = "d425886ec82ddfb5c22ddb41ebf98ad9703e6a56c5475b8ccf60f57924e4cf2d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/732.json" +hash = "fcbe2c3112f38743a556f179bafdcb3a08d24287f129bc330c741a64a5932627" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/733.json" +hash = "042c908901ac80087c6a5897f30011b95d416bd42c2d9f81635e4b382d73a7aa" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/735.json" +hash = "8bcb8c42e2cc8c670053614d5f4631b7f1ebd0a48c8d6c8427ee48206aec449d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/741.json" +hash = "951b3b97dbd1ba3258a3aa72ed33c710aa322e95400ae6838e29824241e5ab96" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/764.json" +hash = "a02edcd5355168c76a5f8b704c936160503cc2f190db119fe7b1e4a3f58caf67" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/81.json" +hash = "65f8726925871894717f94f462525cff697f522b3397469547c9e44c42e020df" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/82.json" +hash = "9eada86c8d4b194ab5c3786fef1b95855850d1ba3c570bda03b7aba83035511f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/877.json" +hash = "32c62288e8dd1bf96437b6f5b4c1677320d59093f97db4caae76abd2941002d6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/880.json" +hash = "7d8356e80adb2106ea7aecdc945cf509b00296ca220a23bd780d86173b5f7233" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/3/881.json" +hash = "d889ad8d8641d45f953d9ea1478fbd05d07d3adfaabe014741445d7e16a1b176" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1056118460.json" +hash = "312a47dd0a81a3fe013fce42b66c8c82a848ea2721e66078a5b5b9950850884e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1177038065.json" +hash = "3f59c189fbe45efb6b29490f33d0738f1898e368a29b2441376806c63d3be372" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1193199034.json" +hash = "101c4a205efa414a9fede24d49fbf50efe155a780d644bc827d80781878c827c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1529184698.json" +hash = "e4f27112d45d1a7e4529e6ee6135b31d3b534943841bfe70e1081e75ffa1c2f2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1766408250.json" +hash = "4246cc11299d82ac572ea478dff8bb2b25e717fa253e4070fe5394469e367bbf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/179.json" +hash = "863716f8333ac07279d0e75b108871ab0903f603afb3b7725a684f7f15bb5ab9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/1837809262.json" +hash = "8d5361dd3f541156c19060b315e550c6fcd32c7b94c72e8a70dffe3c5f30ca30" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/2096017803.json" +hash = "4d65a64de72aecdff3a9b6a449e2a713509f2021845d1334b9991f5a3e62366c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/22127543.json" +hash = "0432f57e7e9f9a94bdc118bf4f87d240c6520b1152da168234f3083056bb71ff" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/326901357.json" +hash = "4dbadb8a5cae8ffb69cdc18a8b5c3880c8498da7d50c598ecd06e8ac70706886" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/452.json" +hash = "0362fd55c9f8e0f5368010c1b9b147cf8a3f21352b582cca8edc490911395733" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/456.json" +hash = "e693905c1030bb0dfda99f21bfc832b9dfab7749e7b9679da14327c15ddc29ec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/457.json" +hash = "980ae4051d5db29a357ceddafdaa145ae7ea55805dab812997388fd65e4a5d13" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/458.json" +hash = "fbbe251fb875e2326d3b7c35e8fc2ee2d4afce69272c9c751d12609ff47fd1f2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/488.json" +hash = "480bff87c3269b5ee3c421628553ef50b67fc705ac16de67c48684318feb5a67" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/489.json" +hash = "0566198cbd09f6d026b7d80c9a3c6bedbd41ed265b1c958e68dfa6810f391a33" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/490.json" +hash = "eb9227fb5381fdc17e316374a52c24a7dc06ec0f3da6382ef45dd84fc24b4a4e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/491.json" +hash = "12411ab4f2b3a1e0378aa2afd8e8cf5e6bb165de6fb97b7bd53f310b2c22de8b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/614.json" +hash = "6c51ad58f54a5088cf8078a186789490a6a18c005994eb53ff59ba4f609004ea" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/618527753.json" +hash = "a604e0bb131455a40c04d0d651d42b8bf64752e237c1c78d7045e70ec1762ae7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/620.json" +hash = "0832e5ee0dce931125b5f8e538192aba9974ba3d8c1dad7f3ef8386190ca4b3b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/622.json" +hash = "5dfae57d3ef5ff8200b8dce9e874600ce1a0f3061e58d3b7f0cd1756102616e2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/623.json" +hash = "d3ae8e06ea8d1219c51cb1cefd88548d691ee168f381f5f72529a36da326cf3a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/624.json" +hash = "10a3120400c6ac31416c4214caef135ff89d2be6aac430b35eebcf1eac466999" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/625.json" +hash = "515d92aa110f017fbc91ade825a2a23a8f46258439aa08dca4c17a82d141f30f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/626.json" +hash = "fd502fbe6143dfff4762dd7ee4897b3b5f5daabbaf75cae5aec777a521139d4c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/627.json" +hash = "021eb42da931a377e0c6d511118ac87b4841080731d6043f0a43bc9616474b5a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/628.json" +hash = "d58c92a7cc814dbabf6fda55c654fc4dbac045071647a4dcca327fbcbad66de4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/629.json" +hash = "310ffe31cc34fb182acadba9414120d4c838ade6735244512da94a36222e6877" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/630.json" +hash = "c13ffc44f00bce9c721a2ec477afc14599e7bdd9515267d9eab137a7e6cf9d4b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/632.json" +hash = "6ae0e371871a395a96c92dbe0e017f6315ad7df7319131444f97c06c632869ff" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/633.json" +hash = "119d3f722a2a188584ae208c19f3f80e5891177d19f6d1e16aed3e576a0e88ad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/634.json" +hash = "5044d4efc5581de8d881a77733c628b5d5cacd58c182c8a3c4285409b8aebfb3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/635.json" +hash = "35b0256b2b10ab0a221a306120eaced811c3312da44c8c9ffbd8f0b01f2eb255" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/636.json" +hash = "a90945a9ea1b4dde7e3bb848b076ddb774d53eed6490f051d53daf906080376f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/637.json" +hash = "3d2a595c8d3cfb6846606c6adaf0a89f9aa44ae13bbedc16caaede22f55d9a63" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/641.json" +hash = "c289dae221cc6f8e2ed67fbcba34fd517563de101d937740c53be4af84f9c4cd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/642.json" +hash = "c09a877b967d0decc41bdcbf8cfb1f08331f336a4d1f38dec03a2d66e180ad0a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/643.json" +hash = "4aec034e1aefd63adbbf733ea9cdfc2ccadc07a3d8bda81ca7975b7a3a48edb4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/644.json" +hash = "8c556806047f673337bc04de815cadf8f98c1297b4706981636804a086676627" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/645.json" +hash = "f3a76fcd28e59d51b9dbd1a55dabae6368f4e00f77856e2100fcf1651624c97f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/647.json" +hash = "088f20b618764a4c6b95bd9c2b9247ff41dc86a6b21b1b2b508e7121e2e5c7a7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/648.json" +hash = "e45ad28a118948785d949e88fa5126c7e8b13a99f0e0077c853c3baa52730f49" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/649.json" +hash = "69a80e17f081aed3676f1c825614ccba912d7dd9f8ea782b3ee12f9e7bfb9a3e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/679.json" +hash = "5cbef32933c0be7eb87c7c193b382d9276559ac701129de4852720ed0bbd8d84" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/680.json" +hash = "5c965de9ce9a80e9642a10efb59d47eda0889393465abe27d4ed61116c239f41" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/681.json" +hash = "e9dcaf95bf63f1d04189b5e7b494595b4b0e3ebfc9c86f214e4725a9c4b0ab1e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/683.json" +hash = "462d0de6ea24653f212bf111915d4acee0f1492e381d0e644bbd6abd73d99ee6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/690.json" +hash = "a58195a56054ab3da9edb42bdfb12b79c6c07a93b84013cfd7ddad486c07386a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/691.json" +hash = "e007817f6b4a5228ea0231cdbeb74b47f5dd148d953361e70b52d832e9fb5d10" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/692.json" +hash = "e38f6ebc182189ce50b8c8ff8a660f1c19abe9244b3b65a5192cd6b65b56f665" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/693.json" +hash = "580bf8c9e40b3235e5617be61a4849c8e43fd6dc46b55441dfcd42fcf961daf3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/694.json" +hash = "f097fc365ee8ff31976c55d7ce80e91f699da19a3c101dc9bf400ffeaa995ece" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/695.json" +hash = "be369da67332f568dd8a674d8e1b9bd8778d0fbd76aa3602afa2bf3cc0189b4e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/696.json" +hash = "10e7d63ab1fcc93a58a127cd334617e334d9c7563eb687739ecd0b5e139a4d99" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/697.json" +hash = "93dedae0ae4b1c3e51eb2f3b60370c255b1846ba210862928b31612e17179135" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/700.json" +hash = "54dc2d34e7be0fe4c11fe88db23d4fd333d9a77aa050cc39a6f554127311a831" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/701.json" +hash = "d65a6c645f0b6f3f81f8093727d3bb04d662deae357d4868e979bb2c550c6b41" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/704.json" +hash = "17484d099cb15d12e092e192f47bd3f31e836f5be308aba04357d755a6bdd8c8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/705.json" +hash = "400c8c5fb04b00d6364bf6f8b6189d2eb7e9fff12acc0a97fd786cd936f6bdfd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/706.json" +hash = "9ae82180f97b97a54bf2d84cf03075cbfbef8c02bc7df3808fdd7b7d7e9b17e7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/707.json" +hash = "ec346e72f4d84b086233d172eecf9bd42b3cf7d87637b9c3424c8450565c9f71" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/708.json" +hash = "1a972a241202436405ae88ee4d97091831dd2ccf4282e912401b9f1113d926cf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/709.json" +hash = "11f11ad6763e5113583731337577e11f98defc7c04648f6a68786e13fd7a2fdf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/713.json" +hash = "45deb772c18b82e79d90e181f66466ea94da87466a527078783faff6fe5f481f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/714.json" +hash = "f7577c689d6dc117d7c11222665b2c451c89c510c1466d01e569cd9e5e14298b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/715.json" +hash = "ee60c5fa30cc5ab7c29cf9ec65ebe17b56e9fd234278e0830d6bd0ecbd4cd68c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/716.json" +hash = "3599e04d91e3bfffa8e41e446733a9e877276704e2464e4168f24f2bd61f4de2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/717.json" +hash = "bee13dd432b0556870e4b3bc5b8e5495da1e11939cbfe84cbca8a8f8dac8f6f1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/720.json" +hash = "0c96979e98c16a269660b3e42c6199b97fa37b159007fa5aa9143ba4aab8696c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/753.json" +hash = "74c71fd7d810ccbb74ac36df7afc58023d464f80cbf25c0446444d408949ddf4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/822.json" +hash = "99313141873fdbe65a4573c1579a340e8dc82acc35ea3c8d02b25c53c7b8c5ba" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/823.json" +hash = "b31ba9fe6ffb7afbb1a45eaf322f038a77a2c6417d59db41dbb3606bf2aab88d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/863.json" +hash = "65b3d85cf3d3d7ce7f0bc6991b40085687c49fd5a1095109bba66c93de0c8b02" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/864.json" +hash = "976f0f4ce26d78a2409d30a166a239822b1d6abae7ea73f22c3df5d5352a0007" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/865.json" +hash = "0dc290fd59af9c1b4e1c8a6026c1663a2342950966dabae019fdfece52c1c69b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/866.json" +hash = "e26436da701569141fd319c4f0256e1992789f0d3ecae468719c881c802df2b1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/868.json" +hash = "07d05a610ff700046f8cab64b15ce13c13a3a9b9866908fc22ed6400de88acac" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/869.json" +hash = "31017e2e2b0d09d85043afe4a2b059c6a1065290108fdcdbd051e747ca94e0fc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/870.json" +hash = "22ecd0fe620ec7cb351a4454b40bf2b2c4d079e4b648191e0db2972fb42b79b3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/872.json" +hash = "7c919383004bb161e118944e73552be3ea86b1e5f7ccf25954f55beb9cd7edc9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/873.json" +hash = "bebed1cd349cc38f966f6b406aa92e303080b4e65ee10a2e5993745ee59d087b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/4/943634333.json" +hash = "f694212f3f6490c03be9d23163f02cee0186bd5a5196253573997c8937547097" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/754.json" +hash = "0cf491c85060c3204bbbb723373095a5f2f3ad5b91bd2023035b5a615d28717e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/755.json" +hash = "13a8ed8d8ffa894449393bd71cac17b28303b6035e206c3dfee7b1dbfa81b318" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/756.json" +hash = "f50a8a93c88a1685e5b73cf90d2f34520b1a7e3e3cc15c588fbcc037793f60bb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/757.json" +hash = "fb965451dacf6014ab6394a9e1df550ed797921a5f812d2c83fc17fec46f30e6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/758.json" +hash = "055d0b665048550c9b91a2697252845c30705875a6bbce8a80870367cd7c2b27" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/759.json" +hash = "8caff6185081e669e6fdfe5bed68efc877f492ff1ae26e61962defea0a54da58" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/760.json" +hash = "ac2ca220f32555b17954a5054ea50ca2ec7713209358490a5b0fc82dbab8824f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/761.json" +hash = "533d532570a05ed38d0043c491b7fb7279d8fe91fb0502f0a0937d5262f6e36a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/762.json" +hash = "68142ce794a7f03f68b099ace108f0f4fc419dc9582287732083a829fdc36f08" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/785.json" +hash = "5b3e5923a8edfbf1909e16985bbc288aae616d0ab00fd6a1212e5fe6cc092daf" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/792.json" +hash = "86404470ab53aba912ed156e2a02ed8f296c32eee60feb3d09fd09a5bcf2a0d1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/793.json" +hash = "4a13eb3970a82436cac60d1bf602b2732ad87aa579b89a95cca93a37f100d13c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/794.json" +hash = "d6ce602b0bbbc0f8a9fb11be525c0a0f2fa605a7bba7d483da79cf86ed005d11" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/795.json" +hash = "637ccb6def9addd75c230544eeffa1bc823bce5c7075c669adc59b1f86958c1b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/796.json" +hash = "e7ee15fd8de5b07df6b2a1a7eeefc7f63df32f41187d90858746250bb5f1e0a4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/797.json" +hash = "674819c8a2238dbb4eade647ce4d18f11d666291c070d52bd38e42393acd2421" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/798.json" +hash = "2d6490e8722068c53a6538a526cecb835b28230e80a4fa1a7405921cdf4a0a68" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/799.json" +hash = "98a62c77a48a7cb6bc3525b91657440874b65fcbf749149e37d79d0e5a0f8b3a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/800.json" +hash = "63eb021775ad32709ff4462bcbcbb4585a0376459d735bc7be86403c04fd2cf4" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/801.json" +hash = "8a9c46c0df18c62cda9100349972dba0a872645a429eef9c371c4f3df8c7b2a9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/802.json" +hash = "868b4bdad96abe05d41a9fdcf2efc3e53f9655dd92894a02a83580b255346247" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/803.json" +hash = "8d0fb39db79474f1df6ed9cadfa51a42d98f6fbb5e248273bfe00dafd589c38e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/804.json" +hash = "f6d33a3a485faa21e5cf9be9d5d93f0dcd4789bba4fff1a673a8997cd5837165" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/805.json" +hash = "2f0add2f649204885d0d0b295bab9cfc9be5791fa730e545eea44b66775c7513" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/806.json" +hash = "94571b08cc1fef1af91db88c47189eb90e4de1b052b064717fc7b98473f44156" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/807.json" +hash = "9f1a1dca86115743756715be0b296ad1fb70d251dd50f5adc855d3e66021b8cb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/808.json" +hash = "cff78a679e77cdf81d32bb1caf2519acfd01eb341b15f22da11ec429b9e4e72b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/809.json" +hash = "1e435ab3cdb78aa7f67445302a1931bb0b9eb56a51f211d24edd64b3c957b16e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/810.json" +hash = "0f51bd983b40d9632ba2ff59c6b5957ae97b199375a49b3b32a18c25165c612d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/811.json" +hash = "e3b364146776891f9a17b08a08ea65afd99525572100a73a668e9904e223d19e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/812.json" +hash = "68ece2f65505da271f9a9dd030c73ee22cb4f29a6fd442dd0442ff8cec9888b5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/813.json" +hash = "938c5b6e6ae052d28bbf13579d3d58cbdc92eb6dc9f9a3fdd51b5995344b43ca" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/814.json" +hash = "d15856e79e5d4053b30b50745ad75f74ef061fbdbbfc3357c9af65a80b994ac6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/815.json" +hash = "a42a62869f6fb8b1679ad98c79d376b31f503cb07b72816410b178b9b0c66621" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/816.json" +hash = "c36ede7e397718d1d9854386e8ad1b1c92de375511b2b2ad1fcb5b093dfda8f5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/817.json" +hash = "a1640da128d0df795b5469fdc56c17761b6157b5532496af61e8174e3b0012bb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/818.json" +hash = "0d965a09a701d43d0b859208fdede99fbf7fc4f8a3a9fdc487e0f90603198caa" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/819.json" +hash = "3e7a2fbb2dc730c3faedd74b491f61c51b334693adcee7a2e1ac7cd3e7e0bac9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/820.json" +hash = "4cbf619c7e4225102b5aefc53ce9484e56a2bcf769015a6f2b2e169c9191e2eb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/821.json" +hash = "131ed5fec761e691d8e3a030dd531c1cec8675351adad716b74e2a18820b26de" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/824.json" +hash = "3198744706b442e383f60a06c90e5c1dc4348c48836352e3bd5412e16e844f3f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/825.json" +hash = "528078f0dbc039d02a0dcb138f3c86cef9a2abbb286149171ade50b10d4c926d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/826.json" +hash = "e49389ebaa5c1d0e88044cc19a651b0a54ea2e53742e66966e52c56a16bf3677" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/827.json" +hash = "2d3b9fec974e603860da8eb4496d6f68e51dac73da28f3fde4f6a8638d2e5637" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/828.json" +hash = "4a478d52658eb6dda8577ed6e8b2db62a62422206f6d10f3b621df6a1bf79eeb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/829.json" +hash = "0b6a85513bef808ccf776fa611389878b788d3d70a96319f067505a9d56e5532" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/875.json" +hash = "0cd40e91f50f022121b6fbf9357b002cf2d81e44d35b75699e15e35e7892cba2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/876.json" +hash = "449fd83d99ad715931ab06a3ebe62b0faa4944dbf69c395aac925e1b8503ebcc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/5/92.json" +hash = "e3b0017fe1ab58f07939c0b6f94ff6e6d654b382a9fbf6501658abc2ba9695b2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/104.json" +hash = "72ffd9b1577800f604932de82747bff837b411ddc1a180206e309f9f42574883" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/110.json" +hash = "19fbe6c86a02f7c7f8ec392fd835c6e9f5d397503979532d47e0faab8cdd5901" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/111.json" +hash = "c5c49c003e1e6cee4bdcdb7eed1e20456049fdaa18f9aacb49c60816a82df3fd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/112.json" +hash = "527822a8b81d85d833117d05a45b3c248f5f990597e546d9d31c0b64b5af1fb3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/113.json" +hash = "8205710fef01d5f853275e77d9f4ee6ae5fb018651e8ff25ecab9ccf7eeb7916" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/114.json" +hash = "c8747498a9805465e80b64ab0ce13efcc7cd2d6e6f40d77ad69003ae2f89a2bd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/123.json" +hash = "8cedeae881bece3c04f29c517f99c6e2e9a310d23ee76b718ad78368eafd15fb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/125.json" +hash = "528dc215f33c9b05e29ea8f7fa7cf841ca79fb427e4883f2eb389bc05b1750e3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/128.json" +hash = "74ccf83a29c44212e28e635f2471a08a8f4ff099aa68c1ba7bef6d2f5d74a527" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/172.json" +hash = "265f7a781cefe9c4515cd12003612776ee18bc4052d47338d5e936125cff5835" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/173.json" +hash = "6b0788ac46cbf668fe24e3d5a18076af423e8667fa0f5934fa64edf68c66915a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/175.json" +hash = "d6b40583d67301b51c4cdda6af9edd67e53daf26e116d2709c039665516a9ff6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/178.json" +hash = "d7beaff0593ed3d3b1c5903e22b6d82f73abe806555d0ad5a7f45fc936195185" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/180.json" +hash = "d50e2f551a750724831751e8f1366e665598b44b6e930567d687c2e9f0b571c6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/181.json" +hash = "95d4e51a7120d4edead39a130a0c83f6a6006ef13169c15961ab138eb1b6fc60" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/183.json" +hash = "cbb8fc3059cc26ae7ba4b986c88c2c3326f80e19db1c8ce7762fdc30efe85d2d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/184.json" +hash = "480dc28bc3b88b104a52fb0de82706f93b267732bef6dd7d15610f22ff094b81" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/185.json" +hash = "9759a343d92535e92d21419c5ad2aa7e23184324744985a4ae0259be7e17ccdd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/186.json" +hash = "dc8436ea5632783d220f02797a066b4fae29e736fd2b78f4d178f883c481d3d1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/198.json" +hash = "fbfcd9ea39cdcdce58d058ea43f42a8aabbc95ca0f77c8d14d6982916ef69674" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/199.json" +hash = "4658ba8a1b29dd906e601f766f91469254f07c006dc2e69e53dcde5ac0fad31d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/200.json" +hash = "be405f342ea23f21bb2c80f1bfabd18b3a356847bd8ae4271ef0f71d06590c0f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/201.json" +hash = "848817bb4acb80af972c1d606f69df26be0376f92352d68eced80fa442a503ef" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/202.json" +hash = "d40c908c849b2d0d2e6de5f50b55ee98433ef3945a9b7739645592634fb0fd3e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/204.json" +hash = "b41a0cb4b475745fd75d37bc58cd8fefbb2763f3782f0401fb49f4a8a1c748a0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/213.json" +hash = "94e6866b29445ccc218cbcc4bce94bd42b77e96ff975f7d1369f3e5f0df3038c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/221.json" +hash = "64018e2cdaeb31f3e61179c04717980692d939bd0f478932c33e6a1c94513d9d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/222.json" +hash = "be680cdd2ee159ae8786109f42eba3d4873d5d8bc639dc0cac991abf50206706" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/23.json" +hash = "cd010c20ea0fe82667f1e02b4d173b26ad4265278ef95d505a4446c427517e98" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/242.json" +hash = "438030d5da46dd96d39a33bba3c9397bc74d3919e1f74e6e29c7609a4b948e24" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/243.json" +hash = "9eba6c3aa61d6f70688cc8df9584fecd0bfc45b0eb15554b9062d7b7385f2c43" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/30.json" +hash = "dbfefc0f4ada3f902800249dfb8e57873d5fef436248eb59881f9c9bd83b7df5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/369.json" +hash = "83697b344b47d95b1ba1069e431157dd4b1258c214271c87968f57ef96b6f8ad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/370.json" +hash = "9d86b8a4554494a72c1e5d30c8a353098ff03104310b02a6172801ac9affdea5" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/373.json" +hash = "2397edc98a7d150748aa18ed17c4b694b86becdc0f9ef157f496d9da3ff936a9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/374.json" +hash = "7defca6e17b46ad61c65df996b36bc45d52595f74a09b99a0d66667cbaa35e02" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/38.json" +hash = "bb663bd5db7811e1fc2b260a0e8fe69df40437fcf7f9f9e4467d0614128725e7" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/381.json" +hash = "48a859c5a0ddc1855eacf2f6ea1be0c0c48bc715772c75feed783a0456e2df75" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/388.json" +hash = "341f6efc824e3e95a284df4de25912f3112ee974042281e07f3b2977b9d538f3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/391.json" +hash = "6b94655def63d8a290ced7f4842b7a386cb2dbf1e4b3b5d99b2f7d7fedcbf09e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/393.json" +hash = "d6ae1dc2bb510813ce42fcefa5a04e67637be6185acaf374fa5b3a1642a20018" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/394.json" +hash = "358f1b30583775b4fef97a4e261eea478650eed3bd74eb3570638acebc739aa6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/395.json" +hash = "800ead9bce10d98103f25e50fb9c2ce603817a60daa0a5edeb68370a63389f70" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/396.json" +hash = "a1def72a5b68d3b0bca4683852a17d71fd6a69bd2df8368bef71bd97c29de6ff" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/397.json" +hash = "5e52e74dfb502ae2b5f6623acdb00d809ba31463109948b975439f6c8aa31433" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/398.json" +hash = "4311ed42c27cee0903c2e14ea3d55d1a856f6692c1ede54b720e8eb8316f1d6e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/410.json" +hash = "d6b2b52cd3257a411578dfa93c3dd22e162e1642b7c5cf03b672cad308192bcc" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/415.json" +hash = "dc116eaba5f386c5ff2783f41f3a884741130981b1da0f19916a02c26bcb5802" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/417.json" +hash = "b77461bdb14d263ef60939c4669fa50ee00929f81687dfa5cf60d6bda788f93f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/418.json" +hash = "3a6a572ed31a0ea99a45cd4fb32b6abbc48b2abe475bafad9fc9dda16c7d22df" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/429.json" +hash = "8f115158242b964d6b8b0f5561ae952d73914296c132c9dc829f440c1525781d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/433.json" +hash = "ac36f9d374a07e8f6093aabd0bf0ff724dfe49f4aec18e7820cc285a5c3b76da" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/434.json" +hash = "11c5d493ecabb328e25759593ff2ca8f2b765e215085c6757c41cf2f7f6bd838" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/438.json" +hash = "0ad90db905b698c39ca5e9bd63ca43cc67943b0e46bd42bcdd4bddf48e942d9b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/443.json" +hash = "11101b1e4ec19b93148d780fbb0e0ed926b6a38284a4e22185e4d28daec7d8d6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/446.json" +hash = "56b676a434c145b56fcbd05d1a688de79304e4f4bc27bf430c9cecbee4b9dfb0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/447.json" +hash = "d44fbbe2e00373f325d6b82505ec30460f96bf76b15952de27a392c2e0d23c76" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/453.json" +hash = "458b9105336ff06c8e10b7993c519a1d69f680cbd2327ac7e695f354a2303778" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/454.json" +hash = "59fcb560a7c64bd57b7da588ba0dfb2892a0e10b417e7e7233bc5be068ee8477" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/455.json" +hash = "2b0e6f6303770dd2fd857dc97a37015150a8cfa62206539ff5b1b1dff07667fd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/46.json" +hash = "ba3a470c1d06a2fa8f7cbe9233c8292dd7b252e44c1a19650dab3793672e9c8d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/473.json" +hash = "503ef644a36d9a94110e295bf7ed56f61b1e39789462277d615c718ae0504535" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/474.json" +hash = "9c43974b9a32f993009d07a8a2388714ccc716f8d8151a2bf6e9969102a45a90" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/478.json" +hash = "d2f5bfbca0ebb7386b350cc52ae9c92c962d182930de1acd6d3ad03d019051f8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/479.json" +hash = "3cc12858aa66370f714bd307cca7725f64625f5f9498807460ba5096b2249a34" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/480.json" +hash = "768fb8cb5d6e44883216cfc8bbc97700ff8418471e562d996cc45019f5c9e988" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/481.json" +hash = "136a570587c3cbfa0476179f8fb591c6b1d6ee62c53a16587f42ae8636bb1b3c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/482.json" +hash = "64322e675d68642af5a5156512eab4b607461e98b468e7946220c453e627f907" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/483.json" +hash = "0b247d4c782e2e755d890383d22dce037d1ef0c978262f62da5c334b81038aad" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/484.json" +hash = "c9bcf4c6ff9db9df90adc079aaefa9322b6370098834d8189120f67b17b84002" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/485.json" +hash = "597b5ead28e6a71fe93ab3b79d7be9142e9edf7715029a506f28a1112013a898" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/486.json" +hash = "e5eb65046a0cd3c64810d5a09059e1d50b435e547de66228132684b8ef77067c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/494.json" +hash = "af22e3980fa6d21fc9d010b913e8b3550276c8587c55ae9216470d691c27b2bd" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/495.json" +hash = "215b527af14bf31e121fcd8a596b3f801f093eae817c7534484288b9cdf0de53" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/497.json" +hash = "6a86fc43a3782a0dc6a754958337cdf9148fcfdb2d0c1af09be6ab81cdf5e881" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/500.json" +hash = "143cca78ced283250b995b2e25ca452c00c91575fc657c1f060aa95b8cd1f857" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/510.json" +hash = "0d9b6c07b2cd6c623d634b9687c27f19112e721c4db5b5e2203c1f2cbe03a526" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/515.json" +hash = "c5277c952f7173c0d0846fec55543cb5e244d5b774c70a1794575bcc854954e1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/516.json" +hash = "ca0338b85549a97bed9907ec6e712f3e4865793f10b7c737258d4f0d0e96d132" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/517.json" +hash = "0accf979b0c74fb6ce261493768e64d00b314110f68bca6b9f9a79887f3d4739" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/519.json" +hash = "298ff4365e3ebedb86c10183095209704dd03a2656222654b4f6b0408b9c7940" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/520.json" +hash = "7c2ea8e3196743ca55964d39082aa646ea481bbf40234a2168e0535788911e12" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/536.json" +hash = "7e348886d792b0597419a431420ab79e09f16dc38959c16c42b1eaa34dec5116" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/54.json" +hash = "8be479607f09c0cf726dd4ec221185ec6a0d99471c86e88ed479a3b2e16dadbe" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/550.json" +hash = "665e07a379049aa326aae163ee1ca170498417831d0e0eb4fe6ede9a7c0c89a6" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/563.json" +hash = "8d76256e75634bd2e5ff14df943f087606410da55c313f2139a1a1d0af3bf3e1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/57.json" +hash = "f4cbd5b6da9109e6eb981380d7f16ad29a47745f7f8471b5b689ffc8e97a3dfa" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/58.json" +hash = "a16314035fb6739cb4a5e300646e769609e55d0542ca7e8537ed6a56871fb912" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/59.json" +hash = "efca5435f2fe4ca982347dd355dc3cd198d848b57783aff21137d3cb15e88efb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/602.json" +hash = "c67684d42496eca64a63d86bfea26ba4b858bae60dacd33dc7ff4dbae0fa8b6d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/610.json" +hash = "ce8aea4e343f5969838cfb5a0f02b20eebd5ca3a64510c13a60fb7e4e1f7bdba" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/621.json" +hash = "24d024e55dfc25e17e637b3104281ed9077d6118fd24c908e051ab77b3c33f2a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/638.json" +hash = "14e7529deb9e020c422bbc67fdfbcf06d0b973f17fa361713da9f9c864243250" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/639.json" +hash = "329ed4ccbbe9653d39f43413ae96fe302043d47570a515dea6ced5b318405a42" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/652.json" +hash = "7bcea4d5dac3f471e1f4a6e9500b64f7a786d1cb8b2c4bbd11ac677aea2a5964" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/659.json" +hash = "f423597f996a7057d54d26423484effe849fbc1b1fcec4fc6b94a6b7d68a6fc8" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/66.json" +hash = "22c42270ecb1d437b139404333125595ad4708496d3d3465ea03b0aac2e13316" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/685.json" +hash = "dbdb50b9098cd17453f89bc00fc12c14c04a42eee8b7061f20c774aec73c8787" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/686.json" +hash = "8a7b46a41bd74097db427ed3cfa94f535267acdc0ab7beb9aa64fb83f00b6cec" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/687.json" +hash = "d858d3800479acfcbf66f77a7c5dd7cd858b9e4ade0f8c7f2bf03cc26de8a9c0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/699.json" +hash = "29153b76d2e59e31d574b9a5533e838473cca59843535878ce303b6673f5244d" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/702.json" +hash = "bc537ae1110d270250ccd61446e60b2e93d7599efc7317eaed788830b749a291" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/703.json" +hash = "b7882b6f3bc5057776e625939a628803d7b05f89ed655e8aea44ffe172e53842" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/710.json" +hash = "03c1bfd52502fa68d374d8f4c21b2e3e47ab163812800f7d6be2b36fb065dd73" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/712.json" +hash = "3a392f3e53362f1f00843fcd2f1d4a7c908dcf5dbf6a95681b15294f4060ffff" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/718.json" +hash = "b1c1a0d2c3e02a8e60c80698faf97f36e74e4ac5a0597d745d9beaf1b2726bf0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/719.json" +hash = "1afe2b376b06967128e1cfb4654896ff5c81f48ee05fb41b4fa68f02222542d1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/726.json" +hash = "932b47b014f5fe1592488bf64a1f4a77c5931978860c043bf0705e2af43e9bc1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/727.json" +hash = "13eaf2f15ba445141bcd5f27c994594efbe7fba2e0e3212ddeb4cbc085c809e1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/728.json" +hash = "211d703ce669d06b7093f2898d19192170e33ee1149a426fd59cc0bc99d0bdd1" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/729.json" +hash = "c775b407749c7810d323e4bf6df55b029b1eb96c477e4d255c478f6a75944a4f" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/740.json" +hash = "80b912d1011bfa0df279b2bd10644a7113de0d775b33aa17322b6c2c4d76320e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/742.json" +hash = "a7b6fe1d278a8c15364815c13946e4ae22778bfd96f2fb9fffa70227b5ee0c0e" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/745.json" +hash = "1d95079d51d8c07abf325cf06e20eabe08735b55fe4b03753cff617e61e690e0" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/751.json" +hash = "9a3c472e4f336d2d86b7db61039a6ef7167593a8a125df6d41acb186b2755ae2" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/770.json" +hash = "9a92321fbab6fab92dabbab5229669c391784d105aa3d046785501e82644a279" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/84.json" +hash = "69ca9970f6db4179c89be41ecddeebd1b250a7741536bef2eb037a848092117c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/MultipleQuestLine/874.json" +hash = "63239713c077e5e5f47dedf98e3c41eaff674776c324572fb6dbd061ede756f9" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/177.json" +hash = "19623aa425a330c729ae7bfbebd70a8bb73e7e34bab00cd1d4ac3b2a021b1392" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/182.json" +hash = "efaf9648e23da7c5fbb809059b71152ba8e9fd73f68701da112d637e682ef566" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/237.json" +hash = "20d06d2e07395f968475d842ec5f457f474572133b7c4544111e51c65930cddb" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/37.json" +hash = "b1087d3533ace4406c61a6cc9f55fdb72143c5793913ee82d40d732cd20afd8a" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/493.json" +hash = "61351f555dd4e927b3505b085e9a0225f29bb446ee90925d21edb9c612769a03" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/52.json" +hash = "1a4aa2f7cb8e4a5c956ad6b9549e3e77eab4f1efe4549190efbd08af09860077" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/619.json" +hash = "095f4b1f0ae1e6cb6d83d1019e8c58baeb3fe298e366f0bebac242e0cb7cfb5b" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/734.json" +hash = "97973cfcecb874f62f085c344f7318e7e4959fb4b82b3e3f040f7ad91945d445" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/736.json" +hash = "f321b6af261012a9060004622884ca27a2dea90f0e8c1b5f6aff3a48fda126d3" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/783.json" +hash = "b6292a7a8ecce672cad74e9e644e43925ad78a63da247bcc66ced438e34596be" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/867.json" +hash = "ef3d0d16c4880b50143a7671e06efe6fca580d6b30c117fec709d5407b2ab38c" + +[[files]] +file = "config/betterquesting/DefaultQuests/Quests/NoQuestLine/871.json" +hash = "2055b699b0ee1d1e62e6d3bdad64f6956da2db5a6ea5721fd57e64f0cff5fd4f" + +[[files]] +file = "config/betterquesting/questbook.cfg" +hash = "48f8b415e5e4ad80e1fb6868e6bd3e3200b80f7d232d6f90efc7e17cc6b3482e" + +[[files]] +file = "config/betterquesting/resources/midnight/bq_themes.json" +hash = "23a03f6a875667fdbc731f242bcb1ec5614e6ef48a9386df1c453cd9315d150e" + +[[files]] +file = "config/betterquesting/resources/midnight/textures/gui/midnight_gui.png" +hash = "4d5d3b4debd2f7c1ea2e2760beb17699d845d1bbad712c86e1dc3de0f51361ec" + +[[files]] +file = "config/betterquesting/resources/questbook/textures/items/itemquestbook.png" +hash = "f13282df67c2057ebb2fc3cadbd9a2dd7f1bfe363e27176a3e3d262a30fc9cfa" + +[[files]] +file = "config/betterquesting/resources/supersymmetry/bq_themes.json" +hash = "b774a1a6bb0ce1e0d4dccc0b2ae740aaa8dea58be90d13ab227aacdf002e0b7c" + +[[files]] +file = "config/betterquesting/resources/supersymmetry/lang/en_us.lang" +hash = "a4cd86b4ca3646e8b274db87f6be086d6c10e4c8f68c6a94ced4e2f754cb78cf" + +[[files]] +file = "config/betterquesting/resources/supersymmetry/textures/gui/supersymmetry_gui.png" +hash = "bf7274412dd6f80cf70856694ba344cd2c940419831be9b47621c5ed7f88c264" + +[[files]] +file = "config/betterquesting/resources/supersymmetry/textures/gui/title_card.png" +hash = "4d2a672b8f4839a26347fe02c7fd2ff2a228229e58eedb9ce771f2c0b4dae5ed" + +[[files]] +file = "config/biomesoplenty/biome_ids.json" +hash = "c6f055f96e99958234e29808ec0dd445c0adf20871077eb95f1d3aab067c0c73" + +[[files]] +file = "config/biomesoplenty/biomes/Put biome config files here" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/alps.json" +hash = "57528ceef638b268c680a8607f7d735cc2edbf7dd3abd8007d9a9b2ce4ff9151" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/alps_foothills.json" +hash = "4b19f320a65ef1e81b350353831d6bdf1d14e4f0e6a0d828167e4446c4407720" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/bamboo_forest.json" +hash = "f22fd7e2bfc35e0ca6ca1e4569d8b24c08dae6f5dccd708d7cee9dcc57a294ca" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/bayou.json" +hash = "4e23bbf8fe98abe8c89d90f32c7d798aa876ec3655d596cf96b44abb9683aa3a" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/bog.json" +hash = "cfa4e10193ad6fe374c7be3298e3c436add4f94b8e0030500897d3f82e3c2c6f" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/boreal_forest.json" +hash = "bba6adb22a41bdab54ff1f7e28a462670c0256a4f656dec353be07c3501e344e" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/brushland.json" +hash = "023f49b4cc46ddce58d58fc4bb8e63248663f9ecd3b16241408e00ed653d846f" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/chaparral.json" +hash = "8bebdb0012d923b6e307c250a4375ecce19af0ebedeca2b47b9df0c664bf201f" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/cherry_blossom_grove.json" +hash = "bc5cdbbdea6751ac86d6435b464161b9281344316e1a70af0ea4e03abc51adfa" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/cold_desert.json" +hash = "9768f0db2688e722937ca95fb585471e5f5c7b05999129a360adcb615bf9603b" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/coniferous_forest.json" +hash = "e78bafb94910658a0ba0ebbb8be0f0323de12658d07c489d030954fe0505fef0" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/coral_reef.json" +hash = "f8ab4a9c06d7ca7102e08e0b5f43967fb11f5ce401c6e8f609e74821d10092d2" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/corrupted_sands.json" +hash = "068c091f763d59abf7691682544a440513b8d4bc5f708cd4cabae82567d9ff30" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/crag.json" +hash = "031118aeefd83f250a7e2e410fc8262e0bb5c5c27b2596fd1e276e8a71f72020" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/dead_forest.json" +hash = "304b5c7652d384792c596b565494f8677ebf37a2a0f14fe4c6f44cefd6840d4e" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/dead_swamp.json" +hash = "b6d944232eceacb2bf3f41505d1ee3bfc7599f58c8e61c3b5a60306e734acdcb" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/eucalyptus_forest.json" +hash = "40edd7e40ea588c8a62dd46316e50aca43becfeadce7197e7ef4bedcba0272db" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/fen.json" +hash = "49db5b1e100e7da42764886206c57e0010f313e899e903ef70f2ebb72a10fc92" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/flower_field.json" +hash = "093872dd3fdc432939d76bd48064149fc17a91236ac1f5e16dac70b470d0610b" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/flower_island.json" +hash = "b0139dd61bcb00e334601eb2a430653fcd593b1ad844c531347efce109fbad64" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/fungi_forest.json" +hash = "c18cb529f441f504cf40c8ade1e1dc3e76bf6e4031fb5a0070edcab67ca70c70" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/glacier.json" +hash = "4c953bd9e0b31dfcb017ab1c1b2161ea713a974eb57f698e1682d2fe37673d52" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/grassland.json" +hash = "8012ea7bffb9dca074ea8d8aa27103a72b9d944a5cbd88231e0b4e67f5cca3bd" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/gravel_beach.json" +hash = "a5fa3e8e55dfbd48c5443935f61acba05e451ff408621387e6cc8c2b84bae6a7" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/grove.json" +hash = "71cc83626f877fbbd9a59170e1426ad9fda5e8f938a551660310f52d97858e47" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/highland.json" +hash = "aa0aa380cb00102b42995b5293ea5600b19366c83d8329523b6da03e3ebe0816" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/kelp_forest.json" +hash = "ef9cad188785bf6ed03b4483a05bced972fbcd513e85e96b5088cdb2b45a5332" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/land_of_lakes.json" +hash = "8c632a2ee1b90f77a0c76982a2dd197150619dd96c5ea0eb6adb4804a05f3353" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/lavender_fields.json" +hash = "209ae58ffaacd73ceb1e3247698adebf589eeedcd7ed932a11d0ecd447760d94" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/lush_desert.json" +hash = "dd9bb037e1aed572a8ffeb3bc52aa539aef67c30c4ff0feae24e01ccbde86145" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/lush_swamp.json" +hash = "e617c2739290be9438a0e4258920916e3b9d8ce0fd3b2549a973197cdee0054d" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/mangrove.json" +hash = "436b6b6bc42a8e76d4cf8c89fb2c7dc290e8516fa88a6a4ad69bccbdb33dc8ae" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/maple_woods.json" +hash = "b6b83fbd6e69eea53c41e63ab454fed95a86cbec8975bfd44956af77906614ad" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/marsh.json" +hash = "fbcf4b841b5149781d30fde006986c995daa3fce342ab8eb5d9de3ecc70d3210" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/meadow.json" +hash = "9da12601ef0d7faa09b99adc48c524b2a067a442fd9741b468fad6d2c5a142ae" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/moor.json" +hash = "5d4e9a078173526fcf177509f8c3ec42db0816967b71962854b33e196595c2a5" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/mountain.json" +hash = "a41b84f1f50e9c19fef8572df68292085f9f67405f4b5e7d02ef4256e9d9d40a" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/mountain_foothills.json" +hash = "dd02a3243a827b03798a947717d0aaaf5b45a25212b3ca1f9c8264fd3a4a5596" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/mystic_grove.json" +hash = "094bde7ec8200e5afe05ef325104ae7ca5ba76f6a87c3d1e1938a6158910df66" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/oasis.json" +hash = "962202e4a84ed3af0f16a9cd6a6d1a5b13792e4dfb1dff565e1bb0128be4c898" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/ominous_woods.json" +hash = "7ffb0827b10113f0c0e55e9daccb467f82f693946bd39dd46b64d349952ec16c" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/orchard.json" +hash = "a136484238562056cf5c50679d6db4e206926096d3fdae1ab1b6d862d8c5d90b" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/origin_beach.json" +hash = "343149da50fe0f09c468cb02c5bc5afe4451187b92ce627e18d709bbc4d4af03" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/origin_island.json" +hash = "3f8d848186810bdb5092d64156014f26ba6103bdd2aee14b65a768d6370e47c6" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/outback.json" +hash = "90feb82eb2094434b76e28a30513f87e8f8406da44b765bc287c0355e32fc558" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/overgrown_cliffs.json" +hash = "ae7f9522a58cefd9ed7f55567088e77eaa4b7c95a04e90ca03a0b3c01e99694a" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/pasture.json" +hash = "b5ade234f43070780e57eb1fd410d07105885d99bec8890fea6bdfa98dd2d6f6" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/phantasmagoric_inferno.json" +hash = "c9712c0038b6ff0d07ad214b587d13d3b6d73b2112be8d7fffe492d20da38343" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/prairie.json" +hash = "30b7ca1bd277f0e1af317ec8502db3e5b34d1912569080f89bfb748c1d3075c8" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/quagmire.json" +hash = "7496cf6da7314b60d6f6e8b7e817fa83ddc2f931e0743346558d51cdb341ad12" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/rainforest.json" +hash = "e498af064cc7d5816690828886d87bd632c0b7116e0d4c659e0d792e632c2f73" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/redwood_forest.json" +hash = "e9f88efca8657e5c32892bb43c5c57bac23520e03d654ab9b7f65bc1e20525b2" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/redwood_forest_edge.json" +hash = "7c24f192a96ccd7701af771b48aa7206231dfc2055a8e735430343ed0b629f79" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/sacred_springs.json" +hash = "f57660a3f08a26c721bd5ed086ba5291dc42f55c8a44f4e6c47e9c806c498d61" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/seasonal_forest.json" +hash = "2f6ec52c7944ccc7d2fc54800ef6fafaed74d18590ea48b18f887b4cc0f5c10a" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/shield.json" +hash = "4f061592bac5ac55c58c249f619157b1ab150388b0e1b785ae382be710b8b77d" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/shrubland.json" +hash = "c32e1ea9edcc311eede6178046b36da67524a5e618a89430c04f004450d26a60" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/snowy_coniferous_forest.json" +hash = "e4878b49b9677e65ab3449cc9cbe3c2624ad3744ba71a9099b5b230f9ad99edc" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/snowy_forest.json" +hash = "7975a473bd95484b437a0ada99204f00d19e4b48ff87d5f581bc16a2bffb09c9" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/snowy_tundra.json" +hash = "e68f9f28f41a56c9a2b0dfbe99cedca9bb69f9088dfe9c35ec657668c8ed868c" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/steppe.json" +hash = "85498bc36143a91d6a21972b9c788404c65cf15f32c6a1a99bd6e014397ad661" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/temperate_rainforest.json" +hash = "092b5e88b27f0d3a7f40463089ca39e8d9366a8fa8389533943fef3fa2566226" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/tropical_island.json" +hash = "2cae91afc59b25a90e66bd1d0f297d1b2c2660306ecffaf93d3e24240d919b83" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/tropical_rainforest.json" +hash = "e7a8d3242869f6c16d750c553c7c04a12894ad7db8460da4c2de181d499a7178" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/tundra.json" +hash = "717d414c41ada8c8668b905c3169adbe6c956c6283acf196404fad3990c307d9" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/undergarden.json" +hash = "92e47a500c7fac58aacdd4574ff8427ed4c72e0c712b26aaff5f8317ce07ab19" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/visceral_heap.json" +hash = "d3a18eaa762abee27a0156446de59856acfd5bc0c576c98dcfcc8504c5c2206b" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/volcanic_island.json" +hash = "8c83333694736192a012e0600a950094c252b0258f14925314bcc57d1d710e8b" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/wasteland.json" +hash = "7c857f426db5024f36a964cb7a0943f3a2c11401e269251bdfe344278ff6da0f" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/wetland.json" +hash = "834d38c5c3cfa8cb795dea0fa63e9593434ff867439a23bb10b006f385f4af18" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/white_beach.json" +hash = "ddcf52d396a41a58cb31cb51d6ccb80275af00d9e09f7782fe3b7ca4881c08a5" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/woodland.json" +hash = "171644ae85b15360f82fd360f97477eec2e9d59920d561b1a8571daf81cbdbb9" + +[[files]] +file = "config/biomesoplenty/biomes/biomesoplenty/xeric_shrubland.json" +hash = "581c7107ce804e90d1458d509c7e84036e3995c53271d470175f198df143017b" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/alps.json" +hash = "790145e6eeb051e5af6ea21d2fc74b3123c5e4e09e151e5b97f43eb6222d3b91" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/alps_foothills.json" +hash = "89d53519c4ce40e56918f7b16e8763a03e968b84bd84c77510d7851d7d9fe554" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/bamboo_forest.json" +hash = "b1f68e0a4204f4b7b9109652939c21374fb410e73bd96c8e40045f68974e0556" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/bayou.json" +hash = "75b80b8247b4e3816a0070f39d63ea8259445c55ecef9bf10b6e3290f504e845" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/bog.json" +hash = "92718f21666441ad013668e87f0637d77dd51ba4bfc6662de1bf787a847348af" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/boreal_forest.json" +hash = "50a4f1d7cff9a762685e4fcf35274f3ce455ec7ff8489cc9f6cea25a7eaa5258" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/brushland.json" +hash = "71f11d93097817b70db6aac2e9cf5061770aa9b47ed0043adc2dc46a8e7543f1" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/chaparral.json" +hash = "09d42ef86176884353b8741eb9d4013957b188eacc10ec630d5b5495196798b8" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/cherry_blossom_grove.json" +hash = "09d3cf765196d0969110561069d02530c1bdc6eb94810370e5dc1462c3b5323f" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/cold_desert.json" +hash = "7d1e25944f9a2046c5e6b38ecfcf95714cf84fdd81bfe182e849b65b6a983f15" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/coniferous_forest.json" +hash = "0c692de9cdea714057aa98121b91b49e4b8ea4bf90c1e45edd6207590bc8e021" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/coral_reef.json" +hash = "601e99b8b1e1d1af6f8a661cfaf0143c8412eef2682ee25f847e01f67028e23b" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/corrupted_sands.json" +hash = "068c091f763d59abf7691682544a440513b8d4bc5f708cd4cabae82567d9ff30" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/crag.json" +hash = "8d7751cdc73e68bcf82c424207e3093805875898541b721075382e5b8d0978f5" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/dead_forest.json" +hash = "b4660be43dba7947d8c70e12c6f6726091b378f7f6c906cee960d261714ae87a" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/dead_swamp.json" +hash = "97b942a1bd47f067306893e230201738354a793ed1b4e9ceb9a0f7bdaa870434" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/eucalyptus_forest.json" +hash = "d0c32e29e87cd055dc8b6557ec4d26d904238366a9be5242bd59d00fc80d63b0" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/fen.json" +hash = "136f6a6fd7fb10884c322a8c7a77d0dcaef85d984977e1b5d805950c48a5d169" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/flower_field.json" +hash = "89948cd654e80b6efae201030e21ca9a67ea058b52b62710cd5c51c5bbcc0dd9" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/flower_island.json" +hash = "9cc2500f351627c18288d60b11794084c1d6181912af84a3e01b51eae1d06a37" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/fungi_forest.json" +hash = "c18cb529f441f504cf40c8ade1e1dc3e76bf6e4031fb5a0070edcab67ca70c70" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/glacier.json" +hash = "6502014068d647e2dde226072c2ebe5a66c948c39f94e9ecb5442007cdc14fe5" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/grassland.json" +hash = "32d674006d832a3166c559ed508cb58a56febd356ffbc874708382a46d51b22f" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/gravel_beach.json" +hash = "0e2baa55d50561c3fa4544a4bf4d89cc94e12e2c05821052e3b1c41123691920" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/grove.json" +hash = "ba18e7634d33562214d64b6cec7f19a8649f063a30f8917cc73ad7f259775a63" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/highland.json" +hash = "d78d48ef927660daae834fcc245679f7417121dd41d0a09bcc16aa09a38fbaf3" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/kelp_forest.json" +hash = "b9afea1cfaff56044f5283ad541ffa609a035c24823ae2560592e23eac55f76c" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/land_of_lakes.json" +hash = "2e2af2cb9806b1506b1b8ad1b46ccad4008ab9a224096bbecf128ac9adea9021" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/lavender_fields.json" +hash = "e3f6ae1aff47b9a1cca63c08910a1516ef426507853f4192b6658003a10a1291" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/lush_desert.json" +hash = "51c093de2455a99208462011a216b38b254671b459ae5f2b08a6c61dd8c32283" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/lush_swamp.json" +hash = "2c18252b4cf9c2b85bdafafb134d97e1eaddce2291b2b3d266fcfc23b15e5011" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/mangrove.json" +hash = "73ad7fde612b92a69aac656148d0bf61b9bfcfc8a7ab09b95f4420155200f2b8" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/maple_woods.json" +hash = "fe9c5a07f96febf68418e1cad8ca9bf8c8b7695ab24f6252aa45e89cdd320300" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/marsh.json" +hash = "0c8bd3fc0efa04c6eaf5f2432c95f2542e939e868029de212b4826fd3a9f71a1" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/meadow.json" +hash = "c37bb2a07fa889e82b10b4237221dd3c2034e07924f63d6de2e97b12c17bcf17" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/moor.json" +hash = "29965b3a042d029669b8ed8609a7ba7220ba07402e0bee41baf91406239b30b2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/mountain.json" +hash = "908d8d246638e8687fdb74f5372fc24c5397a64de4d1f70c11a57dd0bb4b4c32" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/mountain_foothills.json" +hash = "b0fa34a88944e090e11e52feb30cc2874a0d7bd0c5313b13192e9f77de6dda2c" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/mystic_grove.json" +hash = "9e23bd0a8053a3e4aec06fead493d3bd9ee464dfd6304d04e2586668bc05ac69" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/oasis.json" +hash = "10a40f2e4ef66a2b7711c89eb7606ecaaa9632608b6eec4d5c9dfc9cef23ab6c" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/ominous_woods.json" +hash = "7618e14b49a85dbe67a287f894bf36d8b3c83626a79b89728fc067d09f7d39f8" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/orchard.json" +hash = "c4780126d677fead36300da5198015b3c132a9b34d60f948c06762b94eebcce2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/origin_beach.json" +hash = "a845963c9abec1415d0ce0eec0ba0d9de1d038a53857b87c404d767e61a16f20" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/origin_island.json" +hash = "8845e1de63122e0ac671192da42d4cc249a3f2d81cd30b2d1d486d9d09f711fb" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/outback.json" +hash = "d3bb51d1eb21524f5b2561c251e3d0574aa40d060b6f5c1cb3f4963b5be2e528" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/overgrown_cliffs.json" +hash = "784200b02ce81acf23a2bbcedbd338499c77d522644b7719ce650bc7a85dbec7" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/pasture.json" +hash = "6f4c4581bb3cb002da6f211c93cd5e7ffbbd560ef45e2d0934fa0f5a002a7bc8" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/phantasmagoric_inferno.json" +hash = "c9712c0038b6ff0d07ad214b587d13d3b6d73b2112be8d7fffe492d20da38343" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/prairie.json" +hash = "584445d56448e79b01536ad74c4bb247a2ed7f163180af9a463460b43fecffaa" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/quagmire.json" +hash = "9b4f64492b17e9a46aa20b2053fe99f43f108f431f15b002fb8c247bca4fbdf1" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/rainforest.json" +hash = "b175e8abaf8ee1b3b3fb202b302ddf0ab458dc043dfcd17b7ad95e406c63dee4" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest.json" +hash = "e994a13d6877071d07903e25bb0ef02b612853612ff4451ac3d0d84439099d37" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest_edge.json" +hash = "62910d6b413db3bee1683f4d90f040f4d89cfb2aab4e6e4f239e2844fe9735de" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/sacred_springs.json" +hash = "cf7d98e63a6f94095ea49e93ac44ed3846be1e4c57543fac331e91555f00861a" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/seasonal_forest.json" +hash = "f755b338f46badcfb94bb6c838ba27984c572e5ad7ff0aa4f9428ef9263e0b50" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/shield.json" +hash = "01031c16200ce8684ffe18a3e07b777344994a9fd455f69c0746ac231727df39" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/shrubland.json" +hash = "7e1b2e469bb130e8ef2b548586d79abd4864fdc3d5131b2a25edc33529f5614d" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_coniferous_forest.json" +hash = "821a28acc23c3b92ad763ae93dd42e8911ecbe8463d62d7f308f2a8e714fd14d" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_forest.json" +hash = "863611bc94dad6e92a1fe8a6a973711cb70aef1cd25906fd2cc40877dfe619a3" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_tundra.json" +hash = "c98590276f170007cbfdfe9491d8e94c1949cf6ca171dd98a4697bab1d5dd9d3" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/steppe.json" +hash = "a4a5a515fa4008596a29db4c2d80e5e80cd34278ac874512bd7b04ca4c2c6b31" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/temperate_rainforest.json" +hash = "b4997e84d1d7f919510a141112070450aac14a125d1618baec2a708dcd36922f" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_island.json" +hash = "bde954f498defd87280994f7bae6cd5d7ee067b1456c3f0a07cdf69a8e0624a2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_rainforest.json" +hash = "fa2bd79d2c2db21c59518acab716d2fc9765e14d946e9a5cc97b1da68c7220c8" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/tundra.json" +hash = "fa0c12baa92df5b17705689414d87153aca9a2b68d387de39d23e4a35f491bda" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/volcanic_island.json" +hash = "1a91e496b8fb15eb9e8d36d8bf8aefd7b1e7f62ff4f02ffb1ea709f4dfcd1054" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/wasteland.json" +hash = "e340c93da9cefb86b490dc6d264e2a540a1d06153363c5a06d1def48706a0558" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/wetland.json" +hash = "77000e430f9f9863ce2682de09f1401a2839207402e8fe2e1bf7da091f3cd049" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/white_beach.json" +hash = "69a9e54dcf8da7d5b8da5bf1ba8a23c8c5cced9da1dbfdfdc2beba728df8d6eb" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/woodland.json" +hash = "51314ad983b378660c32971fb7937279cee8d50b8685e24f3a7ae32a5506254a" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/biomesoplenty/xeric_shrubland.json" +hash = "f784e58ffea157b6fd0995f01ca0e7a79874bd15c9771ad3f4ca8bea990b00f3" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/beaches.json" +hash = "11ce93e57c84aeaec79945e82d2ee7e1a708159017d3e7877657c89c265f348a" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/birch_forest.json" +hash = "db02c3a484b5e0f0c83d20dae1d37bffc5b38c07b713515392a9e4e271df7bf2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/birch_forest_hills.json" +hash = "db02c3a484b5e0f0c83d20dae1d37bffc5b38c07b713515392a9e4e271df7bf2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/desert.json" +hash = "d43ff912e1430e195d9d174a6cc00238fcf4e4238fbb695d54d6e5dc0e280d41" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/desert_hills.json" +hash = "310b12a3476ce9cbf3e9aa9832a7627617953a0b6fcc1391470dcb65ec5516d3" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/extreme_hills.json" +hash = "c3c147a263ac9d839dc4b1e9cdbcff00af6aa2461b2f01d974bfcccdad53a599" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/extreme_hills_with_trees.json" +hash = "c3c147a263ac9d839dc4b1e9cdbcff00af6aa2461b2f01d974bfcccdad53a599" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/forest.json" +hash = "85bcf5e240eca02369bafcb70dc284feff12bea91845a0b081f93c28587d54fd" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/forest_hills.json" +hash = "cd3b4a2f7203b7f09163f7f9c1d2535cae45cfe15b791fc835be511009568e82" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/hell.json" +hash = "1c4a4cbe3eb11a647e8357a20225b21448af1f99452b29174b5a9dc17f061a29" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/ice_flats.json" +hash = "d51f3a018c095c6899c3bfbc0274f0812679e56007e1913acd2845dc47eeec51" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/ice_mountains.json" +hash = "d51f3a018c095c6899c3bfbc0274f0812679e56007e1913acd2845dc47eeec51" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/jungle.json" +hash = "9b751f8e910966ffe852ec5dc71448c547688675da591dd25ccddc4bb9c5e814" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/jungle_hills.json" +hash = "9b751f8e910966ffe852ec5dc71448c547688675da591dd25ccddc4bb9c5e814" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/mesa.json" +hash = "93ca5fde991a6bad6251b38cc774ffb5d0310a80659f7fb7406b190e9ec379cb" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/mesa_clear_rock.json" +hash = "93ca5fde991a6bad6251b38cc774ffb5d0310a80659f7fb7406b190e9ec379cb" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/mushroom_island.json" +hash = "6249e197ec40a61740b12f140c884b760dd1884f3c9f0caf6b584aba7af6fead" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/mutated_forest.json" +hash = "fecaff8714828d5fc1fb21336ff73bb080b9456943df05e4dd54f9e910cff675" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/ocean.json" +hash = "0cf38fbbc51492eb47ef42ca0f6c63989417f067975284aab1be2ba60d539e80" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/plains.json" +hash = "a979aab699b229319d6c81009c9dcce44dc140baf78544c89f07442afbf0e1d0" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga.json" +hash = "150e78e10c71600ef372682f62763bd6ed24c105b4bd56e3294a0fe949b5bec7" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga_hills.json" +hash = "150e78e10c71600ef372682f62763bd6ed24c105b4bd56e3294a0fe949b5bec7" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/roofed_forest.json" +hash = "cb744089b71700a28aca94295c7feb08faeb727231442407dc7496e05d720ec7" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/savanna.json" +hash = "f03e8d3c81a46d494fa91230c7ee7015abbc0527a2197d583c7bf616e84968eb" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/savanna_rock.json" +hash = "647729adee5599868bbabb8f69d5cb6c22bc84e2c14f48a0919e9f35c46a5ca4" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/sky.json" +hash = "9c38be193b590150873d14183d428f5a335f4178c3c06668a2e11c055071c2e2" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/swampland.json" +hash = "7963aeaa4668e58c3f154ba216d419ed41862f7a4aa046a1fd8b42af292a0918" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/taiga.json" +hash = "150e78e10c71600ef372682f62763bd6ed24c105b4bd56e3294a0fe949b5bec7" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/taiga_cold.json" +hash = "cc881c2692afc963ab6440a8b661c98607cad5218b8f017e16187282e93f8f44" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/taiga_cold_hills.json" +hash = "cc881c2692afc963ab6440a8b661c98607cad5218b8f017e16187282e93f8f44" + +[[files]] +file = "config/biomesoplenty/biomes/defaults/vanilla/taiga_hills.json" +hash = "150e78e10c71600ef372682f62763bd6ed24c105b4bd56e3294a0fe949b5bec7" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/beaches.json" +hash = "813d289a5a66de405fcbc1ae9d9f8cbe2c79a47784e4523bcd96f69616a81abb" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/birch_forest.json" +hash = "63b2bc86a0cf357fa90f5efe1e281f61ce096a88d35c25dcbc266d1bc10305f1" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/birch_forest_hills.json" +hash = "6724ef1452ca16392bafb5b1fd9776200c4c5f72a9dd1ea13c4764110ff95c7d" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/desert.json" +hash = "69c4bc0719e3faeb36f633ca2559da31d1ebe3a114b92aa7e2ac0030928a2453" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/desert_hills.json" +hash = "c14b0fc68ed710007e8b1b7e98424c4a42ca9013d32536baaef521b566501226" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/extreme_hills.json" +hash = "e852ba181e38c1b9c48acad5eed2d2096a9b84f933b498d89b867f9cb0e904ae" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/extreme_hills_with_trees.json" +hash = "e852ba181e38c1b9c48acad5eed2d2096a9b84f933b498d89b867f9cb0e904ae" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/forest.json" +hash = "0e6dc863ac2a4af70678dfa51f3e801ff54d701fabcfe3eb9a6021b842195d83" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/forest_hills.json" +hash = "f96ec51f6007029e31af27c4bb450cd1f254e8cb5170fc9eb2c0306f36d78337" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/hell.json" +hash = "1fc050652e1cee3f7404e01d82e0602f4ac1d63aeef87f38df98a8d8bb14beea" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/ice_flats.json" +hash = "67aabb31468acf18cf45876b683f729b846ab5bf148db949a451171700449da8" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/ice_mountains.json" +hash = "67aabb31468acf18cf45876b683f729b846ab5bf148db949a451171700449da8" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/jungle.json" +hash = "e7af678fb07784a1a0b0f22921b96e9e5b343a85d85d4aacd534536e83653bca" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/jungle_hills.json" +hash = "e7af678fb07784a1a0b0f22921b96e9e5b343a85d85d4aacd534536e83653bca" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/mesa.json" +hash = "48c0be84995df1e42e269322bab8296ab5d5703d5582f9741692e7e287607135" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/mesa_clear_rock.json" +hash = "48c0be84995df1e42e269322bab8296ab5d5703d5582f9741692e7e287607135" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/mushroom_island.json" +hash = "88809dcd7776738f541264de87fec5c3ff1f0a9653bb8ef56c40e1f069117059" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/mutated_forest.json" +hash = "221fcaa1dc693091483e2deec2cb5922c6cff75c5abfa1f6f09e4fd43303e640" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/ocean.json" +hash = "a3e7a0fb74f02a9ec5d137dff42659d2a5a843cca0b9c300cb7bf159f57e19a0" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/plains.json" +hash = "200d21303653ae5ad315fcb8296c34dfd3df61dc97a47757dacc97790cb41a22" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/redwood_taiga.json" +hash = "9da3dca732bc3bca17566c86a9c95d2dc27175e2882525cb4cd84349457def13" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/redwood_taiga_hills.json" +hash = "8624b65ad7838d213e94def867ab285279b9f8b7513edfd8865d4be7a2c6f074" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/roofed_forest.json" +hash = "dc6ffad285827742f31e8de14c2e66125d8a41df22eefba9dc74dc5a9b727b40" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/savanna.json" +hash = "76c9417f43a19869161fe0b574f1ccd6483275164168192ab8ddeed309aba6ec" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/savanna_rock.json" +hash = "e021178afb0addd9c7e56a32add4d9850c51450a222e3aa749aa3efa614d0788" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/sky.json" +hash = "473c01157039747011065a4d3c2fdc17ecf359f05e925b17f893a4b5712cd871" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/swampland.json" +hash = "e4f28e2f4433bde77861681ae72133cf7e1ca221ae5c89f338f4ca40988dd1a9" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/taiga.json" +hash = "8624b65ad7838d213e94def867ab285279b9f8b7513edfd8865d4be7a2c6f074" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/taiga_cold.json" +hash = "18cd4c335aa8273e02af61c97ca879ec10a794dc977fb91ed9dbd818d6e64d02" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/taiga_cold_hills.json" +hash = "18cd4c335aa8273e02af61c97ca879ec10a794dc977fb91ed9dbd818d6e64d02" + +[[files]] +file = "config/biomesoplenty/biomes/vanilla/taiga_hills.json" +hash = "8624b65ad7838d213e94def867ab285279b9f8b7513edfd8865d4be7a2c6f074" + +[[files]] +file = "config/biomesoplenty/gameplay.cfg" +hash = "38eb1b2f878f25650977a171e6eaa934b596a44627c39d8ac88cbc6164eedd23" + +[[files]] +file = "config/biomesoplenty/misc.cfg" +hash = "180711c7c39cd9e3b2238d21866f379a1d431dd11184c0360520d3b506fdb13c" + +[[files]] +file = "config/blur.cfg" +hash = "a842741a6d8d105d5d06c6d04f3581ddb742f701855030a750ab59bbf670157d" + +[[files]] +file = "config/bogosorter/config.json" +hash = "a7f13290ff122ba856560f913d4eda1a7a411f4006206211a8fbb5ffbc1d3235" + +[[files]] +file = "config/bogosorter/orePrefix.json" +hash = "bb49c7b079dfe5948ae022bddc60d7812ecbb88cc0b065c64e6a3ac921e7e86b" + +[[files]] +file = "config/brandon3055/BrandonsCore.cfg" +hash = "09e421625c08b8270040bc58e9af96bd7aa5da5f85865778cf42d8c6fdb9a88d" + +[[files]] +file = "config/caracalsmod.cfg" +hash = "ff345763681d85a426b787fed0f7a6aaa7d95185117fc9ff1cf58a079a8e4582" + +[[files]] +file = "config/catwalks.cfg" +hash = "d8f1873d5566653f74f5ada720abc8319ca696d5cc9b054c0cb1d0fdc7fb5eb6" + +[[files]] +file = "config/cavegenerator.cfg" +hash = "c823a3af452350e1e6ff406db9a824196c8f89545423fd997cf66eb04b71fee6" + +[[files]] +file = "config/cavegenerator/REFERENCE.cave" +hash = "6eaf0af14ab92209f9f752b13ecf270761219299c08d612640bdbea4cddd2dc6" + +[[files]] +file = "config/cavegenerator/TUTORIAL.cave" +hash = "0ccc72d9941ee0e55dc62fd9dc47428e99338706ba93efd1b8c23eb439421294" + +[[files]] +file = "config/cavegenerator/examples/caverns.cave" +hash = "98f142413622210fbc7ff0fbfcaabaf805b1e5bb6211184363270f4545d60972" + +[[files]] +file = "config/cavegenerator/examples/cluster_caverns.cave" +hash = "d7121c2013d12d23210047c188dd2794fddb6281d044d6e27418c764eec01871" + +[[files]] +file = "config/cavegenerator/examples/euclids_tunnels.cave" +hash = "be7160ec3b5eac1218ee197e8cb3232e05a0e24e6cef7b43143be744ed9de406" + +[[files]] +file = "config/cavegenerator/examples/flooded_vanilla.cave" +hash = "60ed30b486a2b738e989f50502284a802b6505afaf1354dc514ce4abdc928cc9" + +[[files]] +file = "config/cavegenerator/examples/large_caves.cave" +hash = "ec5d253fb92f4607badb5eac590c6c6e37db4736f55bfc21a27b2fbe8480eed7" + +[[files]] +file = "config/cavegenerator/examples/large_stalactites.cave" +hash = "8b9cc1256940ac53ea2b4708e7a611d9db2e3ef20e4939c8fe323a0dcc667b15" + +[[files]] +file = "config/cavegenerator/examples/lower_caves.cave" +hash = "6ec325d6715dba4d0906fb68d4b8e6a7681d1be12f662934a693cc47f85d1b56" + +[[files]] +file = "config/cavegenerator/examples/ravines.cave" +hash = "e2be6d709f7f6acc4e50cb50417140453de312a24e2f467d7e63a9cc5b9d0176" + +[[files]] +file = "config/cavegenerator/examples/spirals.cave" +hash = "0a0bdac499240256fbda990eead29275e1893a1794be8c272ce81c2f64b38e44" + +[[files]] +file = "config/cavegenerator/examples/stalactites.cave" +hash = "dccede5b886bfd880558fad80f6c0c9d906b672c8a1fa9cb66ef82a8c8322a8c" + +[[files]] +file = "config/cavegenerator/examples/stone_clusters.cave" +hash = "39718ee5877e9260e5a32024623459adef1523e89d6e1b79ed36543db3889638" + +[[files]] +file = "config/cavegenerator/examples/stone_layers.cave" +hash = "a6194e69df5c41c2a4cea7a5152cccc10335bdc196fe64a2b85eed8099d6ed05" + +[[files]] +file = "config/cavegenerator/examples/tunnels.cave" +hash = "667fbf85de61e30a7b65475b211c2d61ab10df2bd98ac082ca115acc1826ba85" + +[[files]] +file = "config/cavegenerator/examples/underground_forest.cave" +hash = "aebfb62db48c5c5cf57fc199d03b038b1533061d78b6765bb514a2110e29b038" + +[[files]] +file = "config/cavegenerator/examples/vanilla.cave" +hash = "1ffc8069b370469c01824da3c113494fd541b1d88ab139f4b6069d56472cef30" + +[[files]] +file = "config/cavegenerator/generated/cat.cave" +hash = "8890457c66b62d8448e2a4465069dc49acbbfeb366107f6b0fcb92d087524438" + +[[files]] +file = "config/cavegenerator/generated/cat[0].cave" +hash = "8825175837f63a60877e05e8dde9b2c1c6c06dde879195b80e905973ad69745d" + +[[files]] +file = "config/cavegenerator/generated/cat[1].cave" +hash = "cf0ac6243a18acbc9902e9ae60c8f93dcd66f0934dda22d0aa755d848ae229da" + +[[files]] +file = "config/cavegenerator/generated/cat[2].cave" +hash = "8ce8201da0ddc9080b4eae0d11cc57b5ecd60cc5c5d8192612dd8a590dceb804" + +[[files]] +file = "config/cavegenerator/generated/cat[3].cave" +hash = "3f07ceaa2c0236a88ecfe872dbe0bf35b62a62d65e45a8fca8f8552db221e4b7" + +[[files]] +file = "config/cavegenerator/generated/cat[4].cave" +hash = "0a976ddfb0e766a81242724efecb65125c468a2a097f7cafdeddb34620d19145" + +[[files]] +file = "config/cavegenerator/generated/cat[5].cave" +hash = "f967b69e016ead5dab5670894ed143e5c44c77c9e60667ccd2dc1a92634d55ce" + +[[files]] +file = "config/cavegenerator/generated/cat[6].cave" +hash = "7a216dfd3f2c6edd93cadbe00d416a75acab45e0a392a222da36567ac9ae5ebd" + +[[files]] +file = "config/cavegenerator/generated/cat[7].cave" +hash = "5bbda58aa5c12e70d5399e3ead31b998437dc54d60fd339e0e46c9b5c05cdfc4" + +[[files]] +file = "config/cavegenerator/generated/cat_lite.cave" +hash = "3e56ea0ff820af92ea4f22bf1ff73b0fd236f35002c4dcf1b0b05460c2c4258f" + +[[files]] +file = "config/cavegenerator/generated/cat_lite[0].cave" +hash = "87e2a9cc51453c9d4c2d3e1323a35dd77823657f20662cf55b2a41160b5ef7f6" + +[[files]] +file = "config/cavegenerator/generated/cat_lite[1].cave" +hash = "a01cdb0c62c515b4a522da408bb98e7de5f597b07b34ef1a9fb178e0a0fd05ff" + +[[files]] +file = "config/cavegenerator/generated/cat_lite[2].cave" +hash = "66438506f3e55655277c3322631f15b9d406fd410fac6cadee0b12ffa4c3a84c" + +[[files]] +file = "config/cavegenerator/generated/cat_lite[3].cave" +hash = "323fde372a0e0c67af21d67a6d2825c02b9925d04c5c3f8d58b764249345f8c5" + +[[files]] +file = "config/cavegenerator/generated/diorite.cave" +hash = "ad156f337021ec0dfcecbaf8fde33bf07b5ea75a992532709f98293dc3aab65c" + +[[files]] +file = "config/cavegenerator/generated/gabbro.cave" +hash = "15c2a12b6cdc7ef0b1753e05b2d377de33af068a6d5f9650ddb0294b13db722e" + +[[files]] +file = "config/cavegenerator/generated/geodes.cave" +hash = "082ce014011d06803d02d1e21fad52181a893ba369c1823d304b5447bb9fcd01" + +[[files]] +file = "config/cavegenerator/generated/glaciers.cave" +hash = "199190ebad96daf6938109be5a1cd20a0db1f946a5d2c4651298f433658984eb" + +[[files]] +file = "config/cavegenerator/generated/granite.cave" +hash = "1b748529121e2f7d7458eb89f6deae647d005870858434ecb7ce6038b8a4b357" + +[[files]] +file = "config/cavegenerator/generated/limestone.cave" +hash = "83ecb7155702f72aa0787ea5e807402860396919b152ed88548ad3704b5b11cc" + +[[files]] +file = "config/cavegenerator/generated/metamorphic.cave" +hash = "3c16811ccb746c14cfa21ff0a4c60f5ed8ae6138f21a2fdd4789c8b6a816997f" + +[[files]] +file = "config/cavegenerator/generated/mountain.cave" +hash = "b9e3f46512d98d550a34ba6b347ce6c80126fd7cb07ec88233c8bb7238be1573" + +[[files]] +file = "config/cavegenerator/generated/ocean.cave" +hash = "5990eacc29baa2e3dc8248d32537d3c612be6137d036b41534a1d83a4e43dd8b" + +[[files]] +file = "config/cavegenerator/generated/ore_veins.cave" +hash = "ee8274b5fcf35e39ae598d99dbbd2537a3bcf46505c809b6151122d3c181429c" + +[[files]] +file = "config/cavegenerator/generated/shale.cave" +hash = "63030e37432c2ee33ae340158242eef71cc6b8a6319b9617f431a3862b8be4e9" + +[[files]] +file = "config/cavegenerator/generated/trench.cave" +hash = "0df358ba865f73991241503d584550da6dffba5876b303279a2eec11d21294eb" + +[[files]] +file = "config/cavegenerator/imports/blocks.cave" +hash = "c748d6ac823f9e5ac3c15bc14be3db864850e210d984fe31aab44c1854383d56" + +[[files]] +file = "config/cavegenerator/imports/cat/common.cave" +hash = "d3887ba7719ddd3d238644d31c8442c6515f7000c645f13474388e87be379607" + +[[files]] +file = "config/cavegenerator/imports/cat/crack.cave" +hash = "c6b64822a6b2fd6dcdfdaa63bee8db8e75e333dfee84fed95d8480335e9d6d1b" + +[[files]] +file = "config/cavegenerator/imports/cat/desert.cave" +hash = "45257b00d4a9ca3aef23f9fa63eb6a550f802916857bdfa97dba88be407de32b" + +[[files]] +file = "config/cavegenerator/imports/cat/generic.cave" +hash = "93c78568034795eecbc362a1b3445abfe5cc3378b47f1b13410595719dc524f3" + +[[files]] +file = "config/cavegenerator/imports/cat/jungle.cave" +hash = "93705582faf2335f162332db69456905f799c69e78a014af1b3dca2413fadd5f" + +[[files]] +file = "config/cavegenerator/imports/cat/lava_aquifers.cave" +hash = "43bc7065b1bc466adb5d6a8ac7f1660c7354e93a858ee16d91a88b06c477b436" + +[[files]] +file = "config/cavegenerator/imports/cat/maze.cave" +hash = "3d5c849702005aa59a4e65ffad78ef1c22a271482d6aac937b12b2258e2919cd" + +[[files]] +file = "config/cavegenerator/imports/cat/mountain.cave" +hash = "40d031731a00783c7db24cd02f774a0506e3a13b3307efa0192ef8e245ce9b37" + +[[files]] +file = "config/cavegenerator/imports/cat/mushroom.cave" +hash = "b252f6977759ee24806876ea4723e24eb1d766e8e03fdd81334ec8779ba1f919" + +[[files]] +file = "config/cavegenerator/imports/cat/snow.cave" +hash = "27b6b4e87a4767e341f6a14a9eda49a132f7864b8f1bd49f0258528528a3de74" + +[[files]] +file = "config/cavegenerator/imports/cat/water.cave" +hash = "b35dfbdba4c5cf370af0a24d72a05927d4810370df2a9fbe27f2a7563a3436dd" + +[[files]] +file = "config/cavegenerator/imports/conditions.cave" +hash = "55d3afdbb0c5f21bd3b5c376ce8d496c5badc933712de029bcef899346cebae7" + +[[files]] +file = "config/cavegenerator/imports/defaults.cave" +hash = "8680f3131ad8afaa5c20570714f5861d58c6e6eff6da9bb2a5ffc35548ec50d8" + +[[files]] +file = "config/cavegenerator/imports/types.cave" +hash = "090ff891415b88f5aa38f40dc65b1240e0c32a49da216c025f7694ac32908eb7" + +[[files]] +file = "config/cavegenerator/presets/cat.cave" +hash = "b42e4a20951a889142d897a22ffe897dd33f6e4b6fca5521f4125cc2117a4684" + +[[files]] +file = "config/cavegenerator/presets/cat_lite.cave" +hash = "5cdfbc153cc3db19d2ad10a7c07ff4d24d279bcc318e55c753e30a41af603336" + +[[files]] +file = "config/cavegenerator/presets/diorite.cave" +hash = "ad156f337021ec0dfcecbaf8fde33bf07b5ea75a992532709f98293dc3aab65c" + +[[files]] +file = "config/cavegenerator/presets/gabbro.cave" +hash = "15c2a12b6cdc7ef0b1753e05b2d377de33af068a6d5f9650ddb0294b13db722e" + +[[files]] +file = "config/cavegenerator/presets/geodes.cave" +hash = "264c027eaea62111b7b5fb1f86498f2832669e12faa1e9c679343c7a13544b09" + +[[files]] +file = "config/cavegenerator/presets/granite.cave" +hash = "1b748529121e2f7d7458eb89f6deae647d005870858434ecb7ce6038b8a4b357" + +[[files]] +file = "config/cavegenerator/presets/limestone.cave" +hash = "83ecb7155702f72aa0787ea5e807402860396919b152ed88548ad3704b5b11cc" + +[[files]] +file = "config/cavegenerator/presets/metamorphic.cave" +hash = "3c16811ccb746c14cfa21ff0a4c60f5ed8ae6138f21a2fdd4789c8b6a816997f" + +[[files]] +file = "config/cavegenerator/presets/mountain.cave" +hash = "5df1e3f293e6de083c84fc33d40d943387f82f4c6f3b7df2ef0271974eab5beb" + +[[files]] +file = "config/cavegenerator/presets/ocean.cave" +hash = "5990eacc29baa2e3dc8248d32537d3c612be6137d036b41534a1d83a4e43dd8b" + +[[files]] +file = "config/cavegenerator/presets/ore_veins.cave" +hash = "ed5de0e3a35e6eac90d2670c9c1a63a4912ed4693188cffab44483fa57814fbf" + +[[files]] +file = "config/cavegenerator/presets/shale.cave" +hash = "63030e37432c2ee33ae340158242eef71cc6b8a6319b9617f431a3862b8be4e9" + +[[files]] +file = "config/cavegenerator/presets/trench.cave" +hash = "0df358ba865f73991241503d584550da6dffba5876b303279a2eec11d21294eb" + +[[files]] +file = "config/cavegenerator/structures/brown_mushroom_lg.nbt" +hash = "6e460fe37e0558c5fe8c58c4d0128a0c2312a2b7a958f3457b3dbcd6c797ebec" + +[[files]] +file = "config/cavegenerator/structures/brown_mushroom_sm.nbt" +hash = "09f7f6ada01aec44988156701fdc7921fdf4366142ef956892700e907af4a2d9" + +[[files]] +file = "config/cavegenerator/structures/bush1_sm.nbt" +hash = "fb21428e0d635cea649c0f34dbaf8fb4de0844516509236da00d0fc70404fc06" + +[[files]] +file = "config/cavegenerator/structures/bush2_sm.nbt" +hash = "29e521475eccd4531bf7745c80022ae59e5ab1d2a7fdc46cc8b3ebf03db20d8d" + +[[files]] +file = "config/cavegenerator/structures/bush3_sm.nbt" +hash = "64dc5f42799c6c5458c2b630df360b7025b01cdf0ae5e3a3e0afce5a11a2fd4a" + +[[files]] +file = "config/cavegenerator/structures/bush4_med.nbt" +hash = "c1655513647a78082881fa83005359fa470f1d7daf6b4b717e1b85fc725cbd5f" + +[[files]] +file = "config/cavegenerator/structures/hanging_spawner.nbt" +hash = "ba77cd40e5b81c065086de6452599c473c67068b7114b84b74360c7d6e7246b6" + +[[files]] +file = "config/cavegenerator/structures/hanging_spawner_skeleton.nbt" +hash = "80442f3f206ea73093baffdc56e7c0e3fe4132e5f348ad0276503b7df7f0edc7" + +[[files]] +file = "config/cavegenerator/structures/hanging_spawner_zombie.nbt" +hash = "3ad10de723d12293a8c32bd6224c811bc36bea2d1c7dd36854fd016e5c50d058" + +[[files]] +file = "config/cavegenerator/structures/red_mushroom.nbt" +hash = "8386b33dde7f31cf14763709e06bb2462f68ec02328f083a4af449c78110547b" + +[[files]] +file = "config/cd4017be/core.rcp" +hash = "0a564a00a4880c0e0e648d7df4428397db209145a66da1cfaa765a7fb04c3baf" + +[[files]] +file = "config/cd4017be/redstoneControl.rcp" +hash = "d3cef229c64123db79900175822e6f214145422789abb8023b931ce8f5a49258" + +[[files]] +file = "config/cd4017be/verticalDimensionStack.rcp" +hash = "6f11b7fd3ce8d7e0fc49fdb9dda7d9514f2228cc74a75dc203c7fbd855c14f10" + +[[files]] +file = "config/chesttransporter.cfg" +hash = "bdc9ee4d4700c26f4a8ad202f52f13eee22ab3e36ce366d4464451a60ea66175" + +[[files]] +file = "config/chisel.cfg" +hash = "63bfd65a2de715dc04791051d738d92a927922164c0a59449ee2f3a4deb24961" + +[[files]] +file = "config/codechickenlib.cfg" +hash = "cd362380ceff6360c6fd1312599b277942674106fb430866d3efc834556a7d1b" + +[[files]] +file = "config/cosmeticarmorreworked.cfg" +hash = "fd78957f8f69b6f7e95a81e0e7b1aa8f46c7a5ed132feb2a36022d52318ce314" + +[[files]] +file = "config/craftdevmods/GaspunkInhaler.cfg" +hash = "af5109543dff18e9820ad1dfe0595ead08f54fca8aa075f6af2b17062f5c2beb" + +[[files]] +file = "config/craftingtweaks.cfg" +hash = "5e9fa648e0f38dd3f51cde95bd921442a777de164ee48ed852178a0176115946" + +[[files]] +file = "config/craftpresence.json" +hash = "69f2838ef359a2bb52a2a2b7f74a4c38011aa79b2be80477a879d8e874fb64f6" + +[[files]] +file = "config/creativecore-client.json" +hash = "73033d7ed64b54f6736ec7f74f428c09c13206dfda43162546191ca6c433c059" + +[[files]] +file = "config/creativecore.json" +hash = "52c4973688794613332db134f5efb6fbb481456712316c8545174ea67538e369" + +[[files]] +file = "config/ctm.cfg" +hash = "2695969995e5c4d34e6f350bc2bac289b8ab0e80bca9fce098f5e10c370389d6" + +[[files]] +file = "config/custombackgrounds.cfg" +hash = "ff19bfd0601b72e40954498abd2b9d79f62f81456b3d9230b6ecafa06f201934" + +[[files]] +file = "config/customloadingscreen.cfg" +hash = "9a719c2ef538751a9df8870e9c7cbae8f86aa8224c0cef5741c7b4c01633f1a2" + +[[files]] +file = "config/customloadingscreen/example.json" +hash = "4f05a5e09112e10fb510fb0d52d8c7420806fcf4f54d96cbe6b4059e9a97df2f" + +[[files]] +file = "config/customloadingscreen_timings.nbt" +hash = "0aedbb2e12ecf0d9a12386a890244acf715b2ff8503c3992866508769d6df483" + +[[files]] +file = "config/customloadingscreen_tips.txt" +hash = "a5fec39e74a6f18a0dfbab99b5be7be9ce0bec0cf9596269c4e2a4ae55616b00" + +[[files]] +file = "config/cyberware.cfg" +hash = "0bd0dd149aed5fb26b06f622f94200973a6f1278c5fc2983b0662b43dbccabfb" + +[[files]] +file = "config/darkness.cfg" +hash = "642254f869971ccb807e0ac2013e801dc73bdf409fbb10f2fe3002cc2afe204f" + +[[files]] +file = "config/defaultoptions.cfg" +hash = "f177ee6ebdbde5e015d422455259f8547719051c9a983656eaa367429d09ed50" + +[[files]] +file = "config/defaultoptions/keybindings.txt" +hash = "00b2643710f2a6f1c8f8626e7c2b3a771e6f82caff14067bffead718a81b024b" + +[[files]] +file = "config/defaultoptions/options.txt" +hash = "62e887edc7d0e0238b45f083b45851b336803ee22d3b06b2f6ea3fecfd4ed648" + +[[files]] +file = "config/defaultworldgenerator-port/bedrock.png" +hash = "5d55dce4d92e1901f8b7b8b394b94cfe6b12227d1aab18ff293c54fff1ba2899" + +[[files]] +file = "config/defaultworldgenerator-port/susy.png" +hash = "d4e5f6f24a4be6263fadf4ef038a5cdffb77d1c95a88e8499e91e31a0c9e809e" + +[[files]] +file = "config/defaultworldgenerator-port/worldsettings.data" +hash = "b38052e36a4d434e2fd6f92403a4f98a88de971184fef11c541df220ae224616" + +[[files]] +file = "config/dropt/fiber.json" +hash = "f66de0534c1c9d3341686656bc58af53b191ae66f825de27b7479966cb026234" + +[[files]] +file = "config/dropt/stick.json" +hash = "73cab85bbe3e59583d52fc6304250fe368b5dace35c12ccbdeec7087fa04cafd" + +[[files]] +file = "config/dropt/stones.json" +hash = "7ab62a8e07e8cdffbd533ef12b9c788f0416e8a12fdd6e432f1b4441db60913d" + +[[files]] +file = "config/dropt/wood.json" +hash = "d4a4b1fc42e86655e61b65b97a378e3f25097944d5bcd60d7f35836d1e40d2d5" + +[[files]] +file = "config/dropt/wood_chips.json" +hash = "b41db07a8aeca7c365e62250a4e82ca9c6250732f41825d7a40564a4f053adeb" + +[[files]] +file = "config/elevatorid.cfg" +hash = "5f0a16b3252c91898d55705164f0a95060a3130debfe023077354d61009587b0" + +[[files]] +file = "config/engineersdecor.cfg" +hash = "949a812a5f3a50b5be8331f72e7aa55b0f96f08c4802da35a52a4b0980b42801" + +[[files]] +file = "config/extremesoundmuffler.cfg" +hash = "25d6fe7cb2d6e01318f746de9f6586db01bc25916c97f81f8f911a0f3a74b694" + +[[files]] +file = "config/findme.cfg" +hash = "398c005f211151f3de851f71f7a1a589df3edb3a3db30a997f5b147871d00334" + +[[files]] +file = "config/fluidlogged_api.cfg" +hash = "f1489bd867956fcf57d51ded35fb7fe3e672bbb7445d6df150704df465828ab4" + +[[files]] +file = "config/forge.cfg" +hash = "f169f76a9ef84297a2bb24844aa27b78a4eebfed5df7dfcc6a5f27ce5040f07c" + +[[files]] +file = "config/forgeChunkLoading.cfg" +hash = "50e88939247f315c9e6aaf22df29771350a323cae5b4414c4543303135f1a122" + +[[files]] +file = "config/ftbbackups.cfg" +hash = "c215fce0aa33196bd21eabf7d99ecfc0010da143ac2ba3153c9b1fb2f182602c" + +[[files]] +file = "config/ftblib.cfg" +hash = "e9c807b6a4ac7a3075018002ea0f5e822b3dd01e36e6590a20f2e590431f0c5b" + +[[files]] +file = "config/ftbutilities.cfg" +hash = "43703a809e9baa368de4eacd7fe448c4e36bdfeb5f4f82b9ab9cbe1f4cb6f77c" + +[[files]] +file = "config/gaspunk.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/gaspunk/custom_agents/_example.json" +hash = "f58b360ae582358f191b8e3f2f7be7bf71beeb0891efb069830130706cc9648d" + +[[files]] +file = "config/gaspunk/custom_agents/lung_odored.json" +hash = "b46133e6a4715993125e16ea1b6e5f6eb58299ad7ac516ca65341500c194ea90" + +[[files]] +file = "config/gaspunk/custom_agents/radiation.json" +hash = "ae4e4fd3567a4b53f32fe78e3232646ea5293738edcda8a21a831ae6c80cd11f" + +[[files]] +file = "config/gaspunk/custom_gases/_example.json" +hash = "8eb83e722e1ff0670d6054aa2cdfd3dbd24a1410ae4d136968c82ebd4b9fc683" + +[[files]] +file = "config/gaspunk/custom_gases/carbon_monoxide.json" +hash = "34aaf3dc7f1b4439335579e3c372bb0be822bfde8d16ea2eab856391a507855e" + +[[files]] +file = "config/gaspunk/custom_gases/chlorine.json" +hash = "2185cde898948a9806f765e5056fc60e0605152c4b3bef4e71405cd62615c4b0" + +[[files]] +file = "config/gaspunk/custom_gases/chloroform.json" +hash = "bae5190144e575158e3f579dc7d14e1793627c8f5396a5a7c0e9a52ae98b7bac" + +[[files]] +file = "config/gaspunk/custom_gases/diborane.json" +hash = "f833bff00572ef60a0f9cc166a5eeed633648e144af26868bd9c6e0bca1b2add" + +[[files]] +file = "config/gaspunk/custom_gases/fluorine.json" +hash = "3a1b64b08afcb9476c057f9e5e413b826e1dd05bd3df257a66a887d268112e1b" + +[[files]] +file = "config/gaspunk/custom_gases/hydrochloric_acid.json" +hash = "091397465d8bee5e1dac30220d0e0a0a3c2659dc294c71777057b9f0d836299c" + +[[files]] +file = "config/gaspunk/custom_gases/hydrofluoric_acid.json" +hash = "991a6ab8ad8ad9ec863880fa1db7c8811b1e4dc3b8fbfa0aa54d56dcaf61e6d3" + +[[files]] +file = "config/gaspunk/custom_gases/hydrogen_cyanide.json" +hash = "a383919a9b468507af6bf9d368e80381282d595a323bb3b32f9ab0ff8796380a" + +[[files]] +file = "config/gaspunk/custom_gases/hydrogen_sulfide.json" +hash = "3cefe83e49b72a966ee69500d5a0b5acdb025370f63294d04a20d7f137568a90" + +[[files]] +file = "config/gaspunk/custom_gases/novichok.json" +hash = "5ac2fe69e15a01d2358b85748c3033c101f2e3d3a64ce62dad4d17bb225c8b84" + +[[files]] +file = "config/gaspunk/custom_gases/phosphine.json" +hash = "f84df6cfd8c328e1f10a362998091dbb921284b9c470d8c2906d5c6626ffcc15" + +[[files]] +file = "config/gaspunk/custom_gases/radon.json" +hash = "9219e2a15853b16dbfc82cb4fe32833144910ce8ce03b7e677ab12b0b228d1af" + +[[files]] +file = "config/gaspunk/custom_gases/vx.json" +hash = "d062d95290d30648bc39ad1e86c6274f14e454dc7d6095182a245848c2a38c89" + +[[files]] +file = "config/gaspunk/custom_recipes/_example.json" +hash = "0240471398f44d885168cd5ee974ec990aae3973a98d2d940569375e70f6ec83" + +[[files]] +file = "config/gaspunk/gaspunk.cfg" +hash = "fca496f2f27033221da39a7f34ae8043d60779e649f453eead176c2d7422069b" + +[[files]] +file = "config/gcym.cfg" +hash = "dc111bc6fc81ffc8d8672361d9004a6c6202a4d1c8c5862154f1fb4041df212a" + +[[files]] +file = "config/gravestone.cfg" +hash = "bbf1f0b00b07343a9ee2b439bc23f81dee6465584a8ac10a417379e37cfedc3a" + +[[files]] +file = "config/gravitygun.cfg" +hash = "55a9caf084e03a6b7f1e0bc803f900797de2b0ae98c8091ef569d0e71e9b7590" + +[[files]] +file = "config/gregtech/dimensions.json" +hash = "d0364c7369c9894821c061253f9ac3997b7f08e7e5874b3c7329c16673c03182" + +[[files]] +file = "config/gregtech/forestry_integration.cfg" +hash = "4a2a2d6322a6e85cfb251ac61fb87f6fa8e8313f57be51b964a6103d6fe63ed1" + +[[files]] +file = "config/gregtech/ga_worldgen_10" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/gregtech/gregtech.cfg" +hash = "ab09a3a760b96ee529cf44df07e1f752fbff07915a6f1ac5b3c1ad17f5a3751d" + +[[files]] +file = "config/gregtech/modules.cfg" +hash = "b2f54c960c13a00f3b9ee24f3a894dd626789574e0f3de64b9d7ba28b62b13ff" + +[[files]] +file = "config/gregtech/terminal/config/theme.json" +hash = "d65edd1c8bba9b9bbc46c36ef3b6cd4aaa4be85493939181786ea84cabd6ffef" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/activity_detector.json" +hash = "4d4170b7bdf3a24c1a0449bb007149d7dfcbe08059594d3edee026d151f7bb7f" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/advanced_activity_detector.json" +hash = "1fc866d284c9cf6c514ac547fd11c76145f96b25d9b9135d1894ac6c840abbbc" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/computer_monitor.json" +hash = "b888f75406ee35cca3aedbb0ffbadb36c4d221cdc30d2558485e9b162603823a" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/conveyor.json" +hash = "f6de298f6d6b1ecd76d84d881b905b366cffd1896733a40b77742bab6425e1f0" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/crafting_table.json" +hash = "7b538324f373c62ac889da53398ae88003239f135f59c13d7477323bdd895e64" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/digital_interface_cover.json" +hash = "86455809b1e63957a93e6722dfe9119e1f5d31260e6f63ca4188119e9f4083c8" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/ender_fluid_link.json" +hash = "1941e0069205623cad218c744b6ea20545448bf42d4ce674bcd7ff44e3f4815b" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/energy_detector.json" +hash = "60c6dfdb79a34eb232fe8faef9e8ab07c99836db82111f115af2af19fefbe26d" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/fluid_detector.json" +hash = "bc1838f76f1108abd07f0311d595d64443655e52d14e991ea24f7c4db4f5262e" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/fluid_filter.json" +hash = "2bd5c96ef1e72357724e9762309fb6a6f31dd36f43159046c6c456d0d524ed84" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/fluid_regulator.json" +hash = "2fa3566d58a34a02495105e9c05ef3c363dac237765e4656dc8b35550dab8c5c" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/infinite_water.json" +hash = "7179ea77d278675c006cf4354f69af67fe4cb421a06a26c20448f6e3cef58c34" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/item_detector.json" +hash = "3206b1970054ce1991c28f2c35330f0bf29748f980d8cb5308ce40a766a4a3f4" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/item_filter.json" +hash = "1092db981c0546ae7a64faffb325e883f66a9dc7656a328bb35ff6b8d7716895" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/machine_controller.json" +hash = "9e13c6aed0004ea3c7c8477dd635a5b56fe4b739523c194e163e4bacc2aa3c95" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/ore_dictionary_filter.json" +hash = "42a2db789d43b466cf9b61d3cb0ef22e65e364335633ac44acee38fdf42ebb82" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/pump.json" +hash = "d328ffd934557929f4fb8b414617d741c2fb77e9f64f1471fd5b9e376228cbf4" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/robot_arm.json" +hash = "c1c0a731cef82addde307b2ff9575bb619a596b50f1ea90c318af45f08701137" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/shutter_module.json" +hash = "7fdac96558580f2d68d0bb5d6617b89350e458e63406115bb4d351dd2cc3e140" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/covers/smart_item_filter.json" +hash = "4af4247aab471c898311fcc34b81334b6baa29d8f369ed0eb6cdb9233e886e3c" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/axe.json" +hash = "5322c430e0decc836858b51991fa4b2f03e004416694282a45b665305ee206ce" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/buzzsaw.json" +hash = "3abf157e74389b6ce016f640e70f4c223fff115cdf6aa6016a72c8b090240bb8" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/drill.json" +hash = "734ec37c24a490f7fdf99e730b331b279be7e2f25db30f19226daff7e059f9ed" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/file.json" +hash = "8ed0eb6d1fe81947bd9d8857750e17edbeab848b100898408a2bbc6bd4672b7b" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/hammer.json" +hash = "646811f9c4450efa09a440fbc9ef8a251fb5e99c9892060e9d10ab3493c48a0e" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/mining_hammer.json" +hash = "242d5df856668eea2a5fae3baa29b50092f86fedf9c99570f9f637755f80ecee" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/saw.json" +hash = "bb17d82cfc879e61243e9598da8ccdcbfea4fbdc8e37564e00b9d1d1714d6a7b" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/screwdriver.json" +hash = "4fb9aebd1da58ab9acfb777f5be820cf77f274e2932912b11e8ab5d47296995a" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/sense.json" +hash = "695201026acc0d8208a007e6926e956d6ef73f3a1379d7666cac2ef5e7cb8a4c" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/test.json" +hash = "1d8915039543a230deb62ad02ee2debad03293ac2bcaed8efa3dc7a3fc80b7d3" + +[[files]] +file = "config/gregtech/terminal/guide/items/en_us/tools/wrench.json" +hash = "ced0b303b49d1d11958a67d5e2fd1d0c2c8b1709b4eed1eeb3809f990a43d21d" + +[[files]] +file = "config/gregtech/terminal/guide/items/zh_cn/covers/digital_interface_cover.json" +hash = "3ec1ff5333dadfa4705a9a0445f48559b3731e137decd6c9f1fb76a9acd45c17" + +[[files]] +file = "config/gregtech/terminal/guide/items/zh_cn/tools/test.json" +hash = "6b4fcef2405dc65e54a1bb97a4e4fdf79d22a37ae8e8b623be8c612f7a1899f3" + +[[files]] +file = "config/gregtech/terminal/guide/items/zh_cn/tools/wrench.json" +hash = "6b4fcef2405dc65e54a1bb97a4e4fdf79d22a37ae8e8b623be8c612f7a1899f3" + +[[files]] +file = "config/gregtech/terminal/guide/machines/en_us/steam/steam_boiler_coal_bronze.json" +hash = "7d2d49610b00ac6214a4636fbf2dc0a94a832e3ec8d8c827d6069258b9a9378e" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/advanced_fluid_drilling_plant.json" +hash = "121b63c2b12967068667caf2eda5f970cd776d0e5e0fa7efafe86ecd6b8f9f16" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/advanced_processing_array.json" +hash = "30b655c29cf37408e2300d9f539b6404917e542c7e7654c649d500ddca85bbb1" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/assembly_line.json" +hash = "e1c8bfa461fd892b50e09632fd0c67909eecf2fc59cfed7923fab3b307e8ea88" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/basic_fluid_drilling_rig.json" +hash = "f1af2e8f1db3e92ab0d3853887d3a2d9762c371b3728009c4c2b87ccd24f6baa" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/basic_ore_drilling_plant.json" +hash = "282913665db58c7fa0e157364c059a6dec2a95cc04d30b43caf6ded4c2c1219b" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/central_monitor.json" +hash = "2be43f6d9a4affb066f92211fb95f680b62e756848e17d78a3faaef1bc4a48c1" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/distillation_tower.json" +hash = "908c64bc418c82ee5084419edba733c1f8c4f7897e2338fc28989fba7d56a152" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/electric_blast_furnace.json" +hash = "a639ce0d570aa9207a6b5b44cc6500c38e15198c7f0db0cf5031266ffc500c85" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/fusion_reactor_1.json" +hash = "321adf45ac74ad884d3c8bbf69e17c777cf9a295094d7a1c111dbd9b590537c5" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/fusion_reactor_2.json" +hash = "ec57802220735fae25877770ef5d1389c6e1cda040380fe6a838bde99b7b70b7" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/fusion_reactor_3.json" +hash = "d3645b26d4378244c713c98e0ae33b2d638988490b160a4bd31c29fcc4688363" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/implosion_compressor.json" +hash = "0d9a7aa3e228a8c90a37c2872105bac44a3bfbfd5862b1f1fbab6bfcdd4d6491" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/large_chemical_reactor.json" +hash = "924b2e5103b5c73131c1c8dfb1a26fdb402b4252fba7163888a295e35fd52bbe" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/large_miner.json" +hash = "9d06694656d77049092a788735788990d8e1bcfe8f7809cc2740af87d9b46cfd" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/multi_smelter.json" +hash = "52cb83e4f18219f650aa6361a8bf5dfd8662d4ac70efe0d50e4953ac747d8ec9" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/oil_cracking_unit.json" +hash = "91a1b4d4e6f364f1df0519c26921add21837eca64288dfc4139be02d79271ffc" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/processing_array.json" +hash = "1bf20322f6b92d9d9399f979f0dcec446691f4eb2de9aa4fc1a5ff7e3a3bf94e" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/pyrolyse_oven.json" +hash = "fc8832079f4204bf9080f605d36a36a307addfdb391f84234a86d4be4413a157" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/electric/vacuum_freezer.json" +hash = "5f9f0865337a428c9a325daec7566dee289b2bf3e863eedc6f4938b70ca870f5" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/extreme_combustion_engine.json" +hash = "48dcbd80a423a63169d2c0beb7fc3a650888b6851f375fca32970f00feddee3b" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_boiler.json" +hash = "d4c48df8e66bae388156150faada250e8535457ec9a6cbf436586029fdd88bcb" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_bronze_boiler.json" +hash = "65f5812ed208ad427e509f984e5234a93fd574333c3cd94d3e0b38e6dc996a1a" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_combustion_engine.json" +hash = "7fa1b6d8cbd7bf9e0abb456de3539caf3a2bdce284a14a1dcb4fe2a19fa8a6b6" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_gas_turbine.json" +hash = "f375689b5ec7f7b00c63cde76a12d9366f2effdc2b3c0dc2830dd578308a55a0" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_plasma_turbine.json" +hash = "cb27a8adac1880d6ce41c9acc5d08ac2d69559dc6a24de138068e4cb746867bc" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_steam_turbine.json" +hash = "cabd249ab3909c4079ba35ce17e261a313732ba212cee6f08b0da301f14b199c" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/generator/large_steel_boiler.json" +hash = "6ae00ac52ca3d13edb41f676b62edbc5e2ad17b569ff3fc3c3b6989a6d03a2a4" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/hatches/advanced_maintenance.json" +hash = "12f64daed2b537a5e6a6b458d8a3173dff7a47c646330511e71936b4e7c0736f" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/hatches/energy_hatch.json" +hash = "2c9c84f4499f742bd344d8b55064177201869625d59e69c5bf5362f65208d53f" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/hatches/maintenance_hatch.json" +hash = "89902afddcf7ec2961ac77deecbe06fc79c15dc4807d4c069d7a06e3d0632c26" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/hatches/muffler_hatch.json" +hash = "c64e6dc57db5ae305d073b329f36842ec8f14fd4439c11ed28a3abac7eab6ae5" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/hatches/multiblock_input_output.json" +hash = "36ae95924175af4652be3cce0bf983b8ba5e5190a2fcf2c4aac0f269a04527d4" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/coke_oven.json" +hash = "6481e66661042f51649756051b33bc7a9a39a60aaaed1b16e512687a47401b49" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/multiblock_steel_tank.json" +hash = "0eb5750982b8f6253984d857dbbea2b160ce3949bf25abc99529804dcaca61fa" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/multiblock_wooden_tank.json" +hash = "3cdb613eb4a799fcf9b6e13d3f0f43bfb8b3f620c4943128eaec9edc042064fb" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/primitive_blast_furnace.json" +hash = "50344a6e3b030af1e7693b8fd613e655b3424c9d2c260a814c4e4a4d439c3288" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/primitive_water_pump.json" +hash = "3fafad152826c11fde35f5b2b2add7dd2d57a32d42b3e541202c8840d4dcdf93" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/steam_grinder.json" +hash = "21d79322a12ff7d98eab0094c400c647d13d25f2b14c40c748fea0c91e38bf03" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/en_us/primitive/steam_oven.json" +hash = "cc2cf114afeacf2a0fb20bf607f5672e5e4f70443996996f4f60e30b1ffe7370" + +[[files]] +file = "config/gregtech/terminal/guide/multiblocks/zh_cn/electric/central_monitor.json" +hash = "98fa851dfc45583c64da00419af5d513555ff122937534e0eafc45a7e8a5c4e4" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/01_definition.json" +hash = "088cb5845abc01776dc55c7fd097a39b47c2dc416aa6cf7c932af5af121ad019" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/02_element.json" +hash = "524514d7c1e0d1a9feee5e30c462e8d887ddd4ee8927b33cf9ae62f29097c89f" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/03_flag.json" +hash = "49d1193c7f630fc23e3099a6ff2762f126375d73f993248e5e9637667066f0a7" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/04_icon_set.json" +hash = "7c66873cfdebccc9df42e799e5c6faf7e51bc24c65b4b60662a5495eb53c2b52" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/05_create.json" +hash = "0f6c010d85dd48d2387f23f1f15a8b6f6c4ce4a2b7bd3369f6f74275708b8304" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/material/06_modify.json" +hash = "a386f5917bd743ed146d04df89de5ee495f437830ad63212cc7e52837701a925" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/crafttweaker/terminal/ct_terminal_01.json" +hash = "cbdd36a386a1c33c40d103dc5adb7b11258575c923ff8f0051dcc7f766012859" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/guide_widget_api/api_0_guidepage.json" +hash = "fa0db7c6b26921b3e5ee15b4a702825149383f22bbbcbd76e5b44d1e718aa2cb" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/guide_widget_api/api_1_widget.json" +hash = "d7cb96aafb11ea3e45349f46e22745c38c5527aab3621bc1cd4aac2b1d4cd8f7" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/guide_widget_api/api_2_textbox.json" +hash = "0e8d53bbb9f973904349244045463a6dd69b8f71f118d85aea10ebd8534e5a58" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/guide_widget_api/api_3_image.json" +hash = "8247dacd03a95ab72924cf7312c36cd5c41170bc739f1df3ac683ec4da48074a" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/important_concepts/machine_grid.json" +hash = "7c7bd7bdfe0c1703846cdb83a62019c82056e5dacb0cf66c07d3b32d6c0cc048" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/multiblocks/forming_multiblocks.json" +hash = "2530df71dfd629188c5dcccaa4034bdcabc524153df3144823677c1870f1513b" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/multiblocks/large_turbine_mechanics.json" +hash = "3a83544a154faf5691ec8ffaa5b3057a5bcb19a4927f507b2e324045f5c8f344" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/multiblocks/multibock_troubleshooting.json" +hash = "bf95baf62638d9ae0df7a69acc317ba4c7d0bd9561ac16becdf3f49b1957c18c" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/resource_pack/emissive_texture.json" +hash = "9432853a7de1d7420b6ebc59c94e4dabcc86b926331281bd01830565d7b7c810" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/en_us/terminal/terminal_hardware.json" +hash = "f9356355665a7ba05aa8559dc6ee5b57061824a9cd7c3b8024a6142b5b113c92" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/crafttweaker/terminal/ct_terminal_01.json" +hash = "1a004142fa078f681e6ea8d39d4f1a57be6c9014ba6c9ab468124b477b29ffd6" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/guide_widget_api/api_0_guidepage.json" +hash = "2f53e68cd50f6415ae00226dd488b043fe3bc2e81a9d379b64f63dc555426b5c" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/guide_widget_api/api_1_widget.json" +hash = "a84fb37fd2172d294ef79efeca14f82a0ea7dcb00b1a2df5fd46e7c1a843cb5c" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/guide_widget_api/api_2_textbox.json" +hash = "633c9daabfca009f5f422bc01a5759ec4fe796d203a3abe2e7e24fe93f52bffc" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/guide_widget_api/api_3_image.json" +hash = "8b16a4afcec064c1b50d2389a97857f92701fa6cdca6b4f3f1875bc318d9ed5d" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/resource_pack/emissive_texture.json" +hash = "1ffc7a26d4883fb95be7ef2d3a94eb0eab84303aeaf7521e3beb38f46edb63b2" + +[[files]] +file = "config/gregtech/terminal/guide/tutorials/zh_cn/terminal/terminal_hardware.json" +hash = "b325395794abeadb5a39d3650b94e235ebfabd5c5df64630bf13ebb8f33053c9" + +[[files]] +file = "config/gregtech/terminal/image/wallpaper_Kumquat.png" +hash = "48ad4d4f48001317287c6b6dc80716c151213e6d88de9afec5fea376006a68ac" + +[[files]] +file = "config/gregtech/terminal/image/wallpaper_Zalgo.png" +hash = "2abed263345dd5a4723102e9556137b6bdce69adc8cbaf861b1739c49b121d7d" + +[[files]] +file = "config/gregtech/terminal/image/wallpaper_celeryman.png" +hash = "b8f530b47f6504fd5f6485676aabcb2547c3e2bc959c660026fbc2dcf4909746" + +[[files]] +file = "config/gregtech/terminal/image/wallpaper_moth.png" +hash = "aac34491d198820644fcaef0274289cdfa600d39ce65569af1ed4082f70c0965" + +[[files]] +file = "config/gregtech/worldgen/fluid/nether/lava_deposit.json" +hash = "2939a021f836d42ddad17d3a1baac033999b6b7fbe632d510dbbc31014f05d5b" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/brine_deposit.json" +hash = "c5d928a240dcd723b58f51fe17e2c6af2780f74d999b6c0546fba6ea0f5c24b6" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/heated_water_deposit.json" +hash = "4b0ea15cfb6886433e0104c9c91cf1923f8a013454ebf8df8c598b22249eaa82" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/heavy_oil_deposit.json" +hash = "52ab40a2711ec0ad0eae303bb0015e32ad9bd17016524550f07cd24cfeb0ebfa" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/lava_deposit.json" +hash = "00befddf9144f125f5d219f131c917e0621e1d32125066644999f6d9786a68ba" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/light_oil_deposit.json" +hash = "17b077bfc3d882a8814853b180509c9d3010b6b30ec94759b1d3c4c502a4e9e1" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/natural_gas_deposit.json" +hash = "cbf98161bc9b953be60021b21071b5067faaa11151e0b0376ec22fc503cca7b6" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/oil_deposit.json" +hash = "3ba1acbf1c244f4c94bd194c8adda328a19e73fc64d4c884523319735ed3edfc" + +[[files]] +file = "config/gregtech/worldgen/fluid/overworld/sea_water_deposit.json" +hash = "eb1689ba4bcf9c2289c61e9e1c552de6ea5075b4ba2cfafa4b71ee489ec2c7ea" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/anthracite_deposit_vein.json" +hash = "9441e1da00b407733b4c99dae5d545c9f3ae61dfbb8900d772c6406b889f8111" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/arsenopyrite_vein.json" +hash = "b44ada53a0d452b4d6c231486fed093d034ffdecf3b21c44b19dc91e95b362df" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/cassiterite_vein.json" +hash = "1b28717661e983b5f59afc0af9781dca462f14f6fdf0a6d5cdd932dd245b0736" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/chalcocite_vein.json" +hash = "9d0d1e5b3e143314317a9aac5308c92fc5fd090da145cf49342043c403640b74" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/chalcopyrite_vein.json" +hash = "9d9c75223ae2abd4667a8e9b6fcecdc0dcccd133fc794052eaabb4afb70c865b" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/chromite_vein.json" +hash = "99c2cb973115ab6ac6bdc75dd29c6ee7e9359bfae041b795546009a62e15d602" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/cinnabar_vein.json" +hash = "6039c255f81ee7f396d78c364f6feab97c41c1de37fffe0739bcc3c2f7b20bc5" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/enargite_vein.json" +hash = "0613aff2edc340ec1bdf15cd04d91bcd21c844b908e20d0e2979290325ee1a57" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/graphite_vein.json" +hash = "53e80b68b066b437bb179ceb09aa2499bcd218f0604089eaa753212dd4788077" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/lapis_vein.json" +hash = "9b65a0cfa1b6cd8bd76995ac4f8781c27ba1633b5c535348fbc4fa6412944c3a" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/magnesite_vein.json" +hash = "8b4cd1e818fb3085401a90cbaa8c3288d606818fd29dcb8e8f382b2b9a607a97" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/magnetite_vein.json" +hash = "dd917e30c0fc8709a9aabfb83879a4b628d91e617d3271a7bb38261d7f4bbaf2" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/phosphorite_vein.json" +hash = "6d9cea9e4346e64433bd0d072b4d98a822dd72fcdcd93366280746585474bccc" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/pyrite_vein.json" +hash = "37ea21bdd45b8796e93071b8d48fe0850b73231ae45d9519cead337990463484" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/realgar_vein.json" +hash = "7158b4ac89d943995f17a7f7592d6bc1d6c7a995eccde01d345419d22c575d35" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/redstone_vein.json" +hash = "f604fd19fb1b88d038ce9c90b1a59264063375653efb43869f201d15a1503cc0" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/sphalerite_vein.json" +hash = "0188d3be5ede0a4379ab3d4a93c83b537b6712e6a9eff71415589bfb9ae1c832" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/tetrahedrite_vein.json" +hash = "a78ffb171cf0b887e00d74718669bdb9d65cd6d3c7c35e85bfdb2e511b253f50" + +[[files]] +file = "config/gregtech/worldgen/vein/beneath/vanadiferous_titanomagnetite_vein.json" +hash = "74578e299ce988f406bebe145648d5a0f42116c0e2d9210a6b792edc76293efb" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/bornite_vein.json" +hash = "728a95e64009ef0725cbd10b4d847a60851ad1f5f86d0be7daf1b22ceccdc02d" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/cassiterite_vein.json" +hash = "982bd101598a332213bebc661957eacb6221da743fa2acb7db3551fbff41391c" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/chalcopyrite_vein.json" +hash = "8cc2ac3e46f3fe47c10ab9ecea241707f6741eb5915356702278a634859cb544" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/garnierite_vein.json" +hash = "c38c6a7324d2bfe20f6d6de60c69a74fb38080cec1e7977394777089c36ea1ac" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/graphite_vein.json" +hash = "aecc6e6eed2f3f3accf2d4140e7fc6664d9947872b84f016c76b927e5dc01cab" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/kimberlite_rocks.json" +hash = "75f3b77df1117b55b6d527d60a69b98c7dcf80f502c3f2a4a2a96224db337133" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/magnesite_vein.json" +hash = "a9a86899fd988e9d4b8602e6fd135985768b0942cad4425954a02ba9e52a34ce" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/magnetite_vein.json" +hash = "61e07086fa774d71572e62bf8f10ec2dc83df655f3574f72e11cbd6d7c854c00" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/malachite_vein.json" +hash = "2cf3125aae2f78ceb340602f1bf6a484a0f8f7a6ca3f3b724648357cff9fd0eb" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/nether_quartz_vein.json" +hash = "d6c480f6af1b873a808cf52d68b5e394edb1547ca37fbd673a0aef37c7fff8a6" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/pentlandite_vein.json" +hash = "98a93ee8ae660595c2ebf968966e3ff8154b8cbeadb91688ceb0434fe58c62ee" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/redstone_vein.json" +hash = "70aa66138b4cd7ff6c5d096d6e1d609679f25f00185b5db8b26b5766a5cf319d" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/rhodochrosite_vein.json" +hash = "d3e703a0e7743c0b7335ce249a8c8799e50d259b5c79ace3e1d2a4b1ff44498f" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/smithsonite_vein.json" +hash = "d99300912e69715adface93d588a724322c152005efb96ddbd9f4864069627f4" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/sphalerite_vein.json" +hash = "3dfc31ccba3fe9cb415b681582494374ba73b181551120f1660d9e0872068a18" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/sulfur_deposit_vein.json" +hash = "65a036368be151863c96266873bf00a1b1b75a9b3427b88e25e0947dd57dbb86" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/tantalite_vein.json" +hash = "ecbe4481610fa63fcc6cb396ddc2db929dec50f5b122ca6b8a05993cc6186d13" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/vanadinite_vein.json" +hash = "5a4824d4b85a8820318f642809fa492ff51cf39b97177110b39a8337af794d66" + +[[files]] +file = "config/gregtech/worldgen/vein/nether/wolframite_vein.json" +hash = "e1fbb26740cac90071f7039d027276e1939272ab8090b661352a93e44c64dba0" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/alluvial_platinum_vein.json" +hash = "46d10fe7bff65579d70d3219daa9a9fe3f4777d864a009817508aa3bc0d81b26" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/anglesite_vein.json" +hash = "b503a6d49108093110d8f1e9a9ae733e6c7be053c99e7c85b40e166e73517cfb" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/apatite_vein.json" +hash = "722145f73b7e5df3ebf9be97998db77dbbbbc0d2eef0fc296e7cb7d49bd16d69" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/arsenopyrite_vein.json" +hash = "a0c0b9aea6b67d3bd99709f49b13b32d3271e988a1e685bc0998cc82f6b2efa6" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/banded_iron_vein.json" +hash = "0241e2a1ff9a4256e2e34343f209505809cfd6522a22cc548a20913b9b668c7a" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/bauxite_vein.json" +hash = "ed996dac28ed8190800291047c3986f5d47fc24576a77995c01e01ace3a660c3" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/bog_iron.json" +hash = "6cf7bfb8c9e48435ace277c90ee2ffccf8667d1530d70a67a3259ad39806f5e9" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/bornite_vein.json" +hash = "86a885f99732260597a074430a468a42e6046d7c2c24cb0b3317e9fb3fe19f01" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/carbonate_evaporite_deposit.json" +hash = "19fe9ccf1bd630a26f56cd79e22599f014934a1c4c6513f9a7dee1a01d462e4f" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/cassiterite_vein.json" +hash = "006b0b263fb7c1d292743ede8658a4862efe892f623c3cd980a1463c03629320" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/cerussite_vein.json" +hash = "14a9094a952934953e14a5440b88c481352d374f002f496cd3a1100a5c67e75d" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/cinnabar_vein.json" +hash = "8a3abccc02c9d7ba2a84b149e903e4f2aeaa887d10c47ae69b0869d1f0f45beb" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/coal_deposit_vein.json" +hash = "ea7fc03de337655c51b496fd65ef34c443a59dfd8d704b8a9935b5fc9395a7b4" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/cobaltite_vein.json" +hash = "53fb3db83466ab442a773ddcfb76ef84b29976d204a2e12e6967b48c98c57c5e" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/electrum_vein.json" +hash = "6691a2e32a4c8fe26b632061e9711d19849d7d9531abd91f63058228e6ee3ee1" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/fluorite_vein.json" +hash = "ddc3bce0f758ab052051c10d255b4a423b739ddf9bac4c89fd694a5560468fc6" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/galena_vein.json" +hash = "1ffca75b4c65975533f7ef4c131040e464e56c13b1822be4b6f8101a5c08b9c0" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/garnierite_vein.json" +hash = "4999d234b7c013d1fd1fee8781dbe159d24f52293b93b9434540fda96b9e25b0" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/halide_evaporite_deposit.json" +hash = "9284b4e1168637b2e6ab30512389610a815498abfa11e31f56c9e36fe07ac54e" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/kieselguhr_deposit.json" +hash = "fa94420e7640be498740f8a73268da75e4f70898e7f246e005d582f165fb1910" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/lapis_vein.json" +hash = "a56742f7e796866045236a065fe2c0f16b3c393b27cc80a2ea85cc1a0c66ccea" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/lignite_deposit_vein.json" +hash = "4b9d40229f8c08584c6351f64ed8ae34142e552f8082ff8ae7b868b1b9a3f61d" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/magnetite_vein.json" +hash = "97012f68e39a382ca310a0dcdc435e939fbf841233b4354527c40a90f32078c6" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/malachite_vein.json" +hash = "87b92fbb2152395f3a562333c6ea3481328c09d1e205389dfb160b4127504be9" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/native_copper_vein.json" +hash = "6c7b174abdaa587afe8bb3af15084703591e7060b20b19f01db2efc65bbce637" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/non_marine_evaporite_deposit.json" +hash = "7feb4edbc2c11f10027346ba3a77fabb97667781117f4a3d89f8ce80706039ed" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/pentlandite_vein.json" +hash = "ad3fc01ac4e36a09d7baf5f1e6099d40d53f0426de83a24a9d44ca7777ac7b33" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/phosphorite_vein.json" +hash = "8737f363bf04efab57564ec5ceab424afe6eba8d67fcaf185b81e70178ecc91c" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/platinum_vein.json" +hash = "70b3aea836587bff306021ed3a7198d2dbd713d94e070752b586f2cf9d2e54e2" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/potash_deposit.json" +hash = "5bc398c11fb1ac9af0487fe41f9e36afd499bf3dd40c495cdc9aea5a7a901975" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/proustite_vein.json" +hash = "fdf7833729a1907c9d53b14d995b69e7b9a3f9cc970dd5467d9866be10999171" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/pyrite_vein.json" +hash = "2449ce28340910d1619be8c24789c7e1be1269b78d4597f182f65b202dc3c99f" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/pyrolusite_vein.json" +hash = "3718918883941e65a7d10a667a014422abc677f0fc498d6be120c596543b9a2e" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/realgar_vein.json" +hash = "b1b5a22ddccb9cc3b3a236d5a13f9918e076e98e03273cd52284f52e46ea144c" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/redstone_vein.json" +hash = "2a7f7ad5457bef6f283dffbb8ee2b4b8b659c8c644c22cf4aedeeccf5ea77e47" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/saltpeter_vein.json" +hash = "17153740c2fa27cdf4ca5e833eab5b254f866985514cfe21f856a6cf8a62f33f" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/stibnite_vein.json" +hash = "8402db3ec820446ce2ff535e237f27aefe496d37e655ffadd0fad46162fe66c0" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/sulfate_evaporite_deposit.json" +hash = "dfcaa1eea2574829743289179099d5eac66623c542f87a16a37fb99d29d862a8" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/sulfidic_silver_vein.json" +hash = "e0cc229abf6cafcff6a937d1afbce7d3f0b8282ccc4c575fa72a91b8487430bb" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/sulfur_deposit_vein.json" +hash = "afa92d20b845b53bbf3ed07868fba47b2abb7c4e73c708654e3bb1e3dad2c523" + +[[files]] +file = "config/gregtech/worldgen/vein/overworld/talc_vein.json" +hash = "58298066eaff9e172b9652e4fce3c8251bee7efaea8977af9d5165fd8d2204c0" + +[[files]] +file = "config/gregtech/worldgen_extracted" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/gregtech/worldgen_extracted.json" +hash = "6c66739cadefe6e73a1cb0c23fbda336670a9e52c5e35d00e23a4696d26b79ed" + +[[files]] +file = "config/gregtechfoodoption.cfg" +hash = "fa138a4c7389121e021c8cf1d2f7441ac5ce4c0e5138fb1f4df9c706c8a85b46" + +[[files]] +file = "config/groovyscript.cfg" +hash = "838e508a1ab9489e6c2bdf3093f8588f788567d4da44fdcacf24efdb1b5dee46" + +[[files]] +file = "config/hungerinpeace.cfg" +hash = "712b3a9ac89d13171e0fcf33399b93a0395bfce2c5e2348cf74d75b16bf9b993" + +[[files]] +file = "config/icbmclassic/battery.cfg" +hash = "a9b37a9e7b704757c015e52740f3d8b2bcf76c31718a9a16c912950bf6f04d05" + +[[files]] +file = "config/icbmclassic/blast.cfg" +hash = "e1facce024bbe54deb54cb0d5520076ec12fad33106004db76b408f005c184e2" + +[[files]] +file = "config/icbmclassic/client.cfg" +hash = "782fedfd6859079f0099bf18a98f5a3bdea4e61904b686972164724f9d83c7f1" + +[[files]] +file = "config/icbmclassic/debug.cfg" +hash = "6984c1a1cbda03746307d4da45486071b602376721dec51f39d0c4a474fb3a5b" + +[[files]] +file = "config/icbmclassic/emp.cfg" +hash = "09015ffac38d49c5ced6c9d6f1f97ecb86a273b3a64bd45f6b5e0c0528436087" + +[[files]] +file = "config/icbmclassic/emp_tower.cfg" +hash = "797eb13d2dfdd935207cea472bd803bee6eeae14b0fe756cc3b8929868b4842b" + +[[files]] +file = "config/icbmclassic/explosive_reg.json" +hash = "ed8405c1385099bb92be531fa2c52a092dc1ac6c2235145fa66ea00d6abc0d9a" + +[[files]] +file = "config/icbmclassic/flying_blocks.cfg" +hash = "b8719bf3562bfdebe6f25d27a3883e1efade630c7fba4c318d7a0ac1f6ad0e78" + +[[files]] +file = "config/icbmclassic/item.cfg" +hash = "6770d94ecd605f187411aacb5dd664c73712d17e2e97d2faf219b95961084221" + +[[files]] +file = "config/icbmclassic/launcher.cfg" +hash = "c0b0922ef1ca7d90502cced435b4221a1e638bd18aaaaa21eafe2eec4546630b" + +[[files]] +file = "config/icbmclassic/main.cfg" +hash = "a6b58a9c7d2c64835d1d8b597eafd3c82e2d456f1edc97d587c47a4695781e48" + +[[files]] +file = "config/icbmclassic/missile.cfg" +hash = "cf7239edbbe15086a33ea6a86232e3c65932aba12043d7687db28e4b979c6f64" + +[[files]] +file = "config/icbmclassic/mods/jei.cfg" +hash = "f7768835ad756b3ca2ca10c0f504108bc5e4c0269ee5e6ec5e7269db4f3e9573" + +[[files]] +file = "config/icbmclassic/radar.cfg" +hash = "3434414b4699e36e7ce66dcc14577f0d0fb6ecbe952e73a92c2e87da013ad823" + +[[files]] +file = "config/icbmclassic/thread.cfg" +hash = "9aec3601f5ddadc1bf0f189973b9c9f99ccac8d36a1bae25c4867f19a81a1484" + +[[files]] +file = "config/ichunutil.cfg" +hash = "5b4e89cfe30d7c6bde2e68f6606029b79a2a5f4cbff3bba4c093053fa8a9c018" + +[[files]] +file = "config/ichunutil_keybinds.cfg" +hash = "ed8ad79fb177c814506c5dad50e07f9ff83d627242fcb329c889c166308d88f9" + +[[files]] +file = "config/igwmod.cfg" +hash = "b009114e923af3b280640ec647d2c497b45ebfdce053a8ff60f08f10441cdcff" + +[[files]] +file = "config/immersiverailroading.cfg" +hash = "334b76e1d81e4eeb02bca7aa9ae7d810bd55215f0dcd4881e78e8b14f340dfc2" + +[[files]] +file = "config/immersiverailroading_graphics.cfg" +hash = "750a3f6cd94813e41eaf3dd68d8cb8b3ee39e42ad81646cfe715ba242d59ee98" + +[[files]] +file = "config/immersiverailroading_permissions.cfg" +hash = "5f8644271ccc99183610089aa0a89af8fd05a01ceb40ab72042dcc444a9c54c1" + +[[files]] +file = "config/immersiverailroading_sound.cfg" +hash = "a87577e1c51261a7d81708af152c4bd196ce06cbdf4dabdb6939bd1f6ab01820" + +[[files]] +file = "config/incontrol/experience.json" +hash = "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + +[[files]] +file = "config/incontrol/loot.json" +hash = "db3ca410f70187ff4fd4153f288a13634fc229a322308fc48514193a8c37dee6" + +[[files]] +file = "config/incontrol/main.cfg" +hash = "b87eda7795fcd1c50ca8dbbe9775b86a6bc297ac45570fc70d679dd34cac11e2" + +[[files]] +file = "config/incontrol/potentialspawn.json" +hash = "a858bf4049049f8b9d9a874a12eddfcba3d1a5e756bc8a2e72a6c41d5357a594" + +[[files]] +file = "config/incontrol/spawn.json" +hash = "ae7bc41c57ef309f095632cfd2c5a9ce6a7a4382a518cb5da64c1cf61a81814f" + +[[files]] +file = "config/incontrol/summonaid.json" +hash = "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + +[[files]] +file = "config/industrialrenewal.cfg" +hash = "4f09a15b4e1d5cd03d8e5d664613f80af6ed902954b316ceecfa43f051a4463d" + +[[files]] +file = "config/ingameinfoxml.cfg" +hash = "2d3dfd0d0a136688dec741210cde0fa24400443d782dc455ee620ed8b3a25a84" + +[[files]] +file = "config/itemzoom.cfg" +hash = "50037b96acbdcf1a5d1afab2f0b1b4a333533d0889a04639716c80744796aca2" + +[[files]] +file = "config/itlt/icon.png" +hash = "fb26d2614c8a4f211af1b4e96d81bc74f9ca30b8ad1d34f3c06eec50451109c5" + +[[files]] +file = "config/jei/itemBlacklist.cfg" +hash = "32c649e54ff67fd510add5b81dfab3a73b67022034db3f4776cf78169b82c504" + +[[files]] +file = "config/jei/jei.cfg" +hash = "a9faff5f3e5b1ee159af269cbda4831f2eb3a4ed4df3d6960a19cd07c3c4ae98" + +[[files]] +file = "config/jei/searchColors.cfg" +hash = "aa2d125660ad731dff9aec92c745a6947e204dba56ecc95d6907f1883d26ec33" + +[[files]] +file = "config/jei/worldSettings.cfg" +hash = "59430c06541f6f05723f902429fe400e895972601d690a239983e64e0be22106" + +[[files]] +file = "config/jeiintegration.cfg" +hash = "97450a1d017a7cce413043c8facd7262532439077f12acc0bc3b3cab6dc07b0d" + +[[files]] +file = "config/jeiutilities/jeiutilities.cfg" +hash = "a0f234cca139bf470e246bbef12fd9aebd42252d383451d95f5ca0c9bf182bc8" + +[[files]] +file = "config/jeresources/jeresources.cfg" +hash = "047cd00d92a1f69ee1f857cc7bb1a5d08a40cbdf81ddee8dc8a8fd00d5ce89d2" + +[[files]] +file = "config/journeymap_server.cfg" +hash = "c3dd92629e5c58b896df3364bc19cbbfd74446163b20084eb61947ae08dde223" + +[[files]] +file = "config/ladylib.cfg" +hash = "06b4db8d2f13928aeee84144ec5d4c9d05d4ea0989a6ca0c8684127373357ab9" + +[[files]] +file = "config/lazy_ae2.cfg" +hash = "b47c6db2645183ed892d73338a72779829f00017d2c5410c8ca5190b38dd0139" + +[[files]] +file = "config/littletiles-client.json" +hash = "82c8476b79c10bb8b6accbd2d90858079940d18f7310f2e9215dccf3a4c86b2b" + +[[files]] +file = "config/littletiles.json" +hash = "28b03eff9d51f78be0d69efbab2caea4a9f51cbcfa8728deb3bd4b3df77b1fa6" + +[[files]] +file = "config/loliasm.cfg" +hash = "62c195f72d6a42c2c41f900d0fabbe951476674e021447541df89f66112a3121" + +[[files]] +file = "config/loliasm/methods-stable_39.csv" +hash = "89d63593c75c4813dcaddf7a0d7c04942bb01e913cf3c22ef0a29a419c1e5ba8" + +[[files]] +file = "config/lunatriuscore.cfg" +hash = "62b4288aef168d9d67efbf5432d0bb952542cfe49f7ba76683bbe0ea87f170c0" + +[[files]] +file = "config/mcjtylib.cfg" +hash = "e439d2c0b4d00ab4207c63ab011e3cea27e358c6fa600314bc02841fdf1b6ffc" + +[[files]] +file = "config/modnametooltip.cfg" +hash = "b8d688a569e68664b2d3b65983ff3f3f7bc2d8e61f7c58c94e054d55428f6921" + +[[files]] +file = "config/modularui.cfg" +hash = "07702d236077a74a14422d5a56b773b3496563326bc2497a482b7ec88dcb9918" + +[[files]] +file = "config/multistorage.cfg" +hash = "dcde7575649b8669045885a59823ee171f89264d4403a5113372a66efe97a3e7" + +[[files]] +file = "config/nae2.cfg" +hash = "baacbed983c259a60420133491fa755fc8d5f88aa12f7117a2765215bec869b3" + +[[files]] +file = "config/naturescompass.cfg" +hash = "775e84e5fcc57c495eb3aec4abf820e88d4c5d343cb9922c2e7dc75418833329" + +[[files]] +file = "config/noworldgen5you.cfg" +hash = "ca3ba10d830e3dda39e18ed77cd3ab71c08d39f9b3cb56b76a72ee2087bb269a" + +[[files]] +file = "config/nutrition/effects/example.json" +hash = "b6d232d025abe01c9cf7f9839d0174f646618ded97424417ecf9f9e08414a429" + +[[files]] +file = "config/nutrition/effects/mining_fatigue.json" +hash = "b3a8df63789d63d2c76c42e6adfdd2a7945e3cef6c6ee645be3b12d17f0daaf7" + +[[files]] +file = "config/nutrition/effects/resistance.json" +hash = "137ff50001dff59eceffda4631d7203d58c2ccd387124943b0b5efe9c5a98830" + +[[files]] +file = "config/nutrition/effects/strength.json" +hash = "e48906dbd864ae3ad5a1ae1287446df5dd623e18606da29ba8987cb9b669f15d" + +[[files]] +file = "config/nutrition/effects/toughness.json" +hash = "7caf75685277afdb6666eeda43b8add087c17713a067d5be175951456c15b68b" + +[[files]] +file = "config/nutrition/effects/weakness.json" +hash = "6a53e2ca6f794f7f4b5e3b4fb70888ca24911f437bc0735f9fb62ec34cd4e48b" + +[[files]] +file = "config/nutrition/nutrients/dairy.json" +hash = "a65a3abe76bfe58bd339668c443ec5d39088f8a767f790baa2eba23d8e6ada16" + +[[files]] +file = "config/nutrition/nutrients/example.json" +hash = "a8bd02c3b50f7308cdcaa69a78f3bbd38bba88c280d857cbf81f60be9404265e" + +[[files]] +file = "config/nutrition/nutrients/fruit.json" +hash = "251cb047b5078549fd6ba189fc43eaca79d8acda1198979eb8e031d57ed91abf" + +[[files]] +file = "config/nutrition/nutrients/grain.json" +hash = "07ea1fe71a9ca7cae31444461f226bc3c8479cb32bcfbc5fab7662b60a6b14eb" + +[[files]] +file = "config/nutrition/nutrients/protein.json" +hash = "88bedd4b77bc1643c9a3621e8daeb33d2ad0b9aa40d8b4596f3e4f196a3629cc" + +[[files]] +file = "config/nutrition/nutrients/vegetable.json" +hash = "9868a457e282bf0e3709443e333a6d1e7b79438090ebc603fa277f690cb05328" + +[[files]] +file = "config/nutrition/nutrition.cfg" +hash = "b0db2b622f7a7aa539621c13ba38473c434acedfed8af3d14e1a24822d631475" + +[[files]] +file = "config/omlib.cfg" +hash = "ae56a0fb8e1bbe0c50ecba971d1c44f9a36362e25c11031e9c8d8faae5025a5e" + +[[files]] +file = "config/ompd.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/opencomputers/default.recipes" +hash = "83e92db8906351e470d13907bab0516febfdba6abf9de6f7abe3970cdc64302a" + +[[files]] +file = "config/opencomputers/gregtech.recipes" +hash = "2c791acd28f72d75de0747f6fa95c197cc3abd0938a1929933c3926974462995" + +[[files]] +file = "config/opencomputers/hardmode.recipes" +hash = "07e0e81eab77fbebefa84eb25078e672b6f847ba7a88cc5e205593975fa6886b" + +[[files]] +file = "config/opencomputers/peaceful.recipes" +hash = "d7bc152b73a63abff66084d96c8ba19af9e35f459054f21a8dd08308c4a1f8c3" + +[[files]] +file = "config/opencomputers/settings.conf" +hash = "d9106edc053f138dc1f30fa58dbc263acb6693fc2e588584f28d015fc8b37a69" + +[[files]] +file = "config/opencomputers/user.recipes" +hash = "50ea2cc418070e18c4a7919a18266db536c7ccca24af328c6076915293d95d84" + +[[files]] +file = "config/openglasses.cfg" +hash = "f6c5baaca7bb5acc2e694903b24bad94c929f3507a870c212e7b2e0d991a3644" + +[[files]] +file = "config/openmodularturrets.cfg" +hash = "44c8f35486cb5a1303cae112e3b3d4c652ba6364fde101057b5056f442328bd5" + +[[files]] +file = "config/opensecurity.cfg" +hash = "b36575f9d82e5969d26df12f95e04822b227abfe183a5ae95864021b2d3a9158" + +[[files]] +file = "config/overloaded.cfg" +hash = "f94fe17e7ecc54e886cb88d2bc4f3c72cfc45bab694c399f7cbcc4aafa4a39a7" + +[[files]] +file = "config/packagedauto.cfg" +hash = "9cbfbc54620e0e3060f91b46df9c87d7720c1d3ae4d2e1cbc22be265616852a3" + +[[files]] +file = "config/placebo.cfg" +hash = "77919b9509541ecf9882c91cd6b73b8e2c31b8b2f7157275c0ad6b8e25fe769b" + +[[files]] +file = "config/portalgun.cfg" +hash = "4f9fc3a744b0882332cf55f0c2a1330eb5235e141092b5907020a89c22018c91" + +[[files]] +file = "config/pyrotech/core.OreDict-Custom.json" +hash = "6a6a2d3620c1ff8a4db5ab0b55b84b03c3df94de868e6133fed1080839cc96c8" + +[[files]] +file = "config/pyrotech/core.OreDict-Generated.json" +hash = "954535357266426fd10f8d880c8b02d54e03591d07b3d0fb05ecf80455e60527" + +[[files]] +file = "config/pyrotech/core.cfg" +hash = "88eaf9b43f57a74d7703fa35209e46f66142e588430e25aa674d7e6d84a4e4b6" + +[[files]] +file = "config/pyrotech/core.compat.Ore-Custom.json" +hash = "5cb08231d568eea2f78d0e1ff1d5e6cd0a5acf0bf7087ee0b5b2b971d51d1e98" + +[[files]] +file = "config/pyrotech/core.compat.Ore-Generated.json" +hash = "85f8a208c365daeb78556a8fc7bba52bdc252a985b56dbb95b56ea3296379b18" + +[[files]] +file = "config/pyrotech/core.compat.Wood-Custom.json" +hash = "df4416a0292b089a482d261647007fd19e0877b32736b2c6f9d1add9e1968bb1" + +[[files]] +file = "config/pyrotech/core.compat.Wood-Generated.json" +hash = "a976177ac77a81e1da01f16bd5fffb1dd3a28be928cf519c576ae3a6d878c51b" + +[[files]] +file = "config/pyrotech/module.Bucket.cfg" +hash = "6f2a1e8d98be419dc795ac32952326b0b068eb21b671042dc638a3ee52717b06" + +[[files]] +file = "config/pyrotech/module.Hunting.cfg" +hash = "ce70aab63ec14fb4b83d5988f94d5434d2a998c0463d7f2271981f0749433d1f" + +[[files]] +file = "config/pyrotech/module.Ignition.cfg" +hash = "559d1f1328a85c5a39da33f8cadbfb077cc19452f1a4e0a7ae1fb6300ad420f3" + +[[files]] +file = "config/pyrotech/module.Storage.cfg" +hash = "c979815f0119b9cc2fa55fd0a4dea98753512dc8412d401da625f9df08d03ad7" + +[[files]] +file = "config/pyrotech/module.Tool.cfg" +hash = "5a0f6b975d74cd56ac262ec85532958c43e0e174fe4cfd50ae3e9df2c83cd62f" + +[[files]] +file = "config/pyrotech/module.WorldGen.cfg" +hash = "355a056a81973f7b530fadae27ba12e6b00fecef7d6e2cac47b3939cfac514d1" + +[[files]] +file = "config/pyrotech/module.tech.Basic.cfg" +hash = "0117c6e0b77461f59925103abc5b417a80f27629aa9446e64d8bae012d6e3d47" + +[[files]] +file = "config/pyrotech/module.tech.Bloomery.Slag-Custom.json" +hash = "7a1f14b84916dadb5f56591a154803d7716e382ab369e56d2e90d8b8e225a35c" + +[[files]] +file = "config/pyrotech/module.tech.Bloomery.Slag-Generated.json" +hash = "7a1f14b84916dadb5f56591a154803d7716e382ab369e56d2e90d8b8e225a35c" + +[[files]] +file = "config/pyrotech/module.tech.Bloomery.cfg" +hash = "ed18b4f50dd82835396737a8ac77914ef287c05c081a8e02cb7ca60e2de3d752" + +[[files]] +file = "config/pyrotech/module.tech.Machine.cfg" +hash = "f01236bb21789e61f6a905bdb14396aeaf4303e2becd83481ca362179c3e326b" + +[[files]] +file = "config/pyrotech/module.tech.Refractory.cfg" +hash = "83d77a32cc97f1875635eb40b7fca9d008f9794b75079f0f8b24c7b82c573cc8" + +[[files]] +file = "config/pyrotech/modules.cfg" +hash = "6660752aaf7277f63d9e9b7039f267f83d5f6ae20630ed4f5a94e8503e94829f" + +[[files]] +file = "config/pyrotech/patreon.cfg" +hash = "cde1eb0c761d142670b53e8e7eab1a3ae9d6222415f8fb8355a08dfc8a840e9f" + +[[files]] +file = "config/pyrotech/plugin.Dropt.cfg" +hash = "cc1215f810bd22083dfec49be03958a34fc9019ba9c87f4805fe6b59a0d4ef36" + +[[files]] +file = "config/pyrotech/plugin.Patchouli.cfg" +hash = "785a2816aac76c01056c693e7759bf6d830e469313a0d0a2f0a22cf7db64aec0" + +[[files]] +file = "config/quark.cfg" +hash = "b27953b7959612a48fae11760f794fe32f39062ef7da51a8b041e8bac1c54330" + +[[files]] +file = "config/randompatches.cfg" +hash = "4324e243701ffe7b414be9f2fbc8a2aed48f2f125e0697f80881805f3f97f849" + +[[files]] +file = "config/reccomplex.cfg" +hash = "377116a18eeafe96714c8aa909eec81d061a875a0f023f34fc99afbba3a539d5" + +[[files]] +file = "config/recipehandler.cfg" +hash = "af38e324a444aa06dd9ecacf87f3e4a70a97734113d2d1a1b22f14d9e9c9fbd0" + +[[files]] +file = "config/rftools/rftools.cfg" +hash = "8f2bcb1549eadbf52d2fd809b0c82b2868e247a8df3af7888bb5ab12f6ed52c0" + +[[files]] +file = "config/rsgauges.cfg" +hash = "b02b266ce5f62c35dbeaaefe291d84f013fba1e3eb961c875346a412ff2fd2f3" + +[[files]] +file = "config/scalinghealth/main.cfg" +hash = "0de35ec13f6f99888c22a721975b9742a4fecfce124cd732869397991a519e22" + +[[files]] +file = "config/sereneseasons/biome_info.json" +hash = "e6e907f40f8e4296186bad8ac49df09a9b4a30e4c6a556ad4b2f5618fb6667d2" + +[[files]] +file = "config/sereneseasons/cropfertility.cfg" +hash = "9e6ab52dad680384dc2645425d621132e1c6150a609d88fbbd2bfa7de141e401" + +[[files]] +file = "config/sereneseasons/seasons.cfg" +hash = "73a6d2ecdcc31f03c5f35213613b112db41a808541a1547bd4b8208d20823d38" + +[[files]] +file = "config/serenetweaks_options.cfg" +hash = "0d56889d566b16dd9fd2376845a2053db6fddb624e901b343e0eac3a54282c60" + +[[files]] +file = "config/sgcraft.cfg" +hash = "7cea44ee27e91220345876b4cf38fa3a100359eee2bee6a48c973a0f510fdb5e" + +[[files]] +file = "config/shetiphiancore.cfg" +hash = "11bfc5566ffe29d45dc4d4039709083e87113b29159947d7dbc7fd94c41be61d" + +[[files]] +file = "config/sledgehammer.conf" +hash = "63f4ce1581cd0d7a1a498b874ea9263832b910f5ef6ef1b0bdfd6edd450cf54a" + +[[files]] +file = "config/soundphysics.cfg" +hash = "b687ab5b093ae6ca366d69646af9eb37c9a9cb7ad311b25537cce31a2a9fe704" + +[[files]] +file = "config/splash.properties" +hash = "2588d04db1fa8de9103cf87bcf1187045783c901cae53601b2522ba5358a17f7" + +[[files]] +file = "config/srparasites/SRParasites.cfg" +hash = "f192dd0c3035038bdf29054c890ceab584e71fdcb5ec9f16a9c12d561fa3adaa" + +[[files]] +file = "config/srparasites/SRParasitesMobs.cfg" +hash = "e2b51db3f53db12e70442fd1c622cd0ac917ab638f4ff46f19924e73bb27bcb4" + +[[files]] +file = "config/srparasites/SRParasitesSystems.cfg" +hash = "549d0956ec04124ece8f81074523dbfcb89f4cb5b031a449894b20cc5aee39a1" + +[[files]] +file = "config/srparasites/SRParasitesWorld.cfg" +hash = "4a1e3690278ebf637de6a46368ae2c86a444c221bf439e8eca7cc9bc43d2c847" + +[[files]] +file = "config/stellar_core.cfg" +hash = "194acb9bd0e01030bab2b5cbc8c15fb2968e44a92be2b68a396d128969ac8918" + +[[files]] +file = "config/storagedrawers.cfg" +hash = "86f3ef9e4fefc045f0fd51b296c47794d862fc2493b0d5cde32c7af84ed19f7c" + +[[files]] +file = "config/sync.cfg" +hash = "33e88e282c46d8845514e1f0e5b1fab7088f42bbdfe6d06c541aa77d4941b44e" + +[[files]] +file = "config/tardis_ars.json" +hash = "609881111e070bb2e0919084950ebfa5531a7fc0a7118d1c4e1c26566d726082" + +[[files]] +file = "config/techguns.cfg" +hash = "f289aacc387c7e90f05a6382928752e14b5f88ef2a4c3ca19b1d049650231715" + +[[files]] +file = "config/tellme.cfg" +hash = "8fcdec05bf3212432a8852aa9f756e82fd5f6899632f317af33abab1a58904b1" + +[[files]] +file = "config/tellme/blocks-id-to-registryname-csv_2021-08-21_20.49.47.csv" +hash = "62c0dbffb2eaea16c3a23559bfa22b5b5c6b68976621a10f36e2bb8d6cdd96d3" + +[[files]] +file = "config/tellme/blocks-id-to-registryname-csv_2021-08-21_22.09.15.csv" +hash = "62c0dbffb2eaea16c3a23559bfa22b5b5c6b68976621a10f36e2bb8d6cdd96d3" + +[[files]] +file = "config/theoneprobe.cfg" +hash = "73a993e4bdb84cfdad7acfe8d8a8868fb5eb68b3d66b947e366459043bdce77b" + +[[files]] +file = "config/toolbelt.cfg" +hash = "cb71d1fed56c00605944442667b4b330211b1cdd8364accefa8b0f81e8e6f433" + +[[files]] +file = "config/topaddons.cfg" +hash = "1396a9d9399cde72973bce0739ef02fe3a86a66d1d7adbae014bd6501892f597" + +[[files]] +file = "config/topaddons_client.cfg" +hash = "d797c393b950f1e6ce6d6852a9448fbe15c3d149d94aad7ce59ea4cf73e8b915" + +[[files]] +file = "config/torchmaster.cfg" +hash = "dc780199da0a1a99998773e91508d3cfe82adab4ea9979860b1f3534ced66a19" + +[[files]] +file = "config/travelersbackpack.cfg" +hash = "d480f50115c6340366ad31b407b75c8e5f9c35d27e6e239bc49cff1cfb639c55" + +[[files]] +file = "config/universalmodcore.cfg" +hash = "715e5e6921d4955a7013ba5bf5a58b4dede1a579b86efe6cd3d6de0297e409bd" + +[[files]] +file = "config/vanillafix/config_version" +hash = "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b" + +[[files]] +file = "config/vanillafix/methods-stable_39.csv" +hash = "89d63593c75c4813dcaddf7a0d7c04942bb01e913cf3c22ef0a29a419c1e5ba8" + +[[files]] +file = "config/vintagefix.properties" +hash = "17502afc44be1348cb5b2788cc8f4f4fec141e7e1373d52b17ae6a93a3eae246" + +[[files]] +file = "config/visualores.cfg" +hash = "66cd689c4ce484928d8339b035ae8d8b1b6329babd71727da34b5b30bac02a55" + +[[files]] +file = "config/worldedit/worldedit.properties" +hash = "4a64b99d60ad434bddf6a1bfe45b91653ff298ce8b5f9356a9bf98887798fefd" + +[[files]] +file = "config/xnet/xnet.cfg" +hash = "59833dcad1ddabc99854d51d88f2ce9822afee502034a87c52f1951a7d4d0e5c" + +[[files]] +file = "config/xporbclump.cfg" +hash = "7fa33fedb5c3b1e263cb64e5711f48e7f24cc5278a8cc6efcd93f581046990c5" + +[[files]] +file = "config/xtones.cfg" +hash = "10c212439ac422358b053ebaab8b8728623a0533ca944e6958007af40e947f22" + +[[files]] +file = "groovy/assets/supersymmetry/lang/en_us.lang" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "groovy/classes/ChangeFlags.groovy" +hash = "ddb8eac056d12a0e9c86535e057a9832a86060c92a03c0849eced44dfab8df93" + +[[files]] +file = "groovy/classes/ICoolant.groovy" +hash = "ffab443f8a89446673ddf3fdcf3221e51670c627bd32e3edffac0712cec838c5" + +[[files]] +file = "groovy/classes/ICryoGas.groovy" +hash = "178fb924cdc7a0adca0819eb1166604770d4b611168ed29d1b05605444cc9729" + +[[files]] +file = "groovy/classes/IFluidFuel.groovy" +hash = "3d7cdd8266288b308da305e3788ec19dc3972cd797668f5033ee206c81b8e271" + +[[files]] +file = "groovy/classes/IOreRock.groovy" +hash = "f7faf0343a03b1e2137f8052e2ffab64d1a2a8d99bdc06e98494d7fc8d80df24" + +[[files]] +file = "groovy/classes/IQuenchingFluid.groovy" +hash = "4f726ce8601aed209e17cf4bde7ee749ddc06613513f5cc5d772151ef8671090" + +[[files]] +file = "groovy/classes/IRefrigerant.groovy" +hash = "aa1aa0503a36473734f65edde835dcd1484764355e314b18a0f99e2fe2b33635" + +[[files]] +file = "groovy/classes/ISupercriticalFluid.groovy" +hash = "0d4becf385513525bc65efbdecbe8e403b26e544208e56ff9e38d985063fc661" + +[[files]] +file = "groovy/classes/IWorkingFluid.groovy" +hash = "a3c7be082eb428cba825594f591a85ee9d1b542e64c1fbdd6bd58bf86e5baeaa" + +[[files]] +file = "groovy/globals/CarbonGlobals.groovy" +hash = "c21d7a1614a94b053f03447c15655aebb69e039fe6453b4e9b396bfc087c2b3a" + +[[files]] +file = "groovy/globals/Globals.groovy" +hash = "6c439ff8bc8d1b1c39cb3b8f9fb97b3ee6aa2f070a31040bbef2b3d68be7a55a" + +[[files]] +file = "groovy/globals/GroovyUtils.groovy" +hash = "1a6a2acb658417dd75fcbc4e769013f250a88e1d18c0e1eb7652ce331cada846" + +[[files]] +file = "groovy/globals/Petrochemistry.groovy" +hash = "3ca1b77466fd8cb0328b622867e15ca36fc3376752eceb97dac40ae73a76063d" + +[[files]] +file = "groovy/globals/RecyclingHelper.groovy" +hash = "1d35e56b8844482ed1d673b406e9e9d8ce7105b6f8896d42eddff848c39d7d75" + +[[files]] +file = "groovy/globals/SinteringGlobals.groovy" +hash = "3d8a6ae0e49dfe607f81b2766e48fe89594401d3ffa3c0d8751508824685e75a" + +[[files]] +file = "groovy/material/ElementMaterials.groovy" +hash = "488fdbff4d07b6c953622aabf40e701346763ae0224763c854219d06967f7adc" + +[[files]] +file = "groovy/material/FirstDegreeMaterials.groovy" +hash = "f2f2af9a6671243e3a53eb9c12dcdf2660a35f0d493e07a308499534ce0ee932" + +[[files]] +file = "groovy/material/IsotopeMaterials.groovy" +hash = "6827b72d26ea4008a9ab03fee407de24b56258c3de1f18a1281e15fb43d30838" + +[[files]] +file = "groovy/material/OreMaterials.groovy" +hash = "f6ddee3c00a1e6c006764a7c7941c9a58cbf843e01458a8422e29c1fcc91b023" + +[[files]] +file = "groovy/material/OrganicChemistryMaterials.groovy" +hash = "9e71e6a2ccd9846be9a9036dae2375cc472552875a6e9b97a1cb7d32aee8dea3" + +[[files]] +file = "groovy/material/PetrochemistryMaterials.groovy" +hash = "86c923ad32b42f8f83e6249d7c281d14a2516a374d23ba1ba364b4001d23594d" + +[[files]] +file = "groovy/material/SecondDegreeMaterials.groovy" +hash = "93623220a790f52e30f5113dd84c22d282ec5895a0b60c72c75a684d053ca2a8" + +[[files]] +file = "groovy/material/SuSyMaterials.groovy" +hash = "ad62406f1e298aadad1a1db2b261e10df0e82ebc964093cdda1868e826509bd8" + +[[files]] +file = "groovy/material/ThermodynamicsMaterials.groovy" +hash = "9c3577e7829d0d80172e68429217d0b1170e7481fdda69c6accf59fd7ff0c85c" + +[[files]] +file = "groovy/material/ThirdDegreeMaterials.groovy" +hash = "ab869fcd55abc7efadea0161ec80db61384dfc8ba18e2e25e067555a441fb659" + +[[files]] +file = "groovy/material/UnknownCompositionMaterials.groovy" +hash = "1f87614ca6c14b76a3f50e18f6956a346f82cf5bc1d8246c29ed14128e65db5b" + +[[files]] +file = "groovy/postInit/biology/FermentingChain.groovy" +hash = "f0410de0e5eec1e22d54ddb17482f732b94fd0e39bef9b6f32700d55360ef3f9" + +[[files]] +file = "groovy/postInit/biology/GreenhouseChain.groovy" +hash = "130c94267b2ded8e5e0727cc1749a723c5a27ea7ad052d05405c9fb59cf75178" + +[[files]] +file = "groovy/postInit/biology/PaperChain.groovy" +hash = "f9400509f1da6539a9f2e4f068038881c731df74fe02aa9494d00ed762abb16d" + +[[files]] +file = "groovy/postInit/biology/ResinChain.groovy" +hash = "f5de21cbd99dd7f43e5798b60c06ea013d98f5ef60266b9fa833f4971097bebe" + +[[files]] +file = "groovy/postInit/chemistry/Catalysts.groovy" +hash = "fdae54e280929a6958578b08c655c538eb085fb95e139f85583fd9736e3bb929" + +[[files]] +file = "groovy/postInit/chemistry/ChemistryOverhaul.groovy" +hash = "818b5c13c7b874b6277f5ad451eb20780a5298b643d78a9495d44b74f63c57bd" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/Dyes.groovy" +hash = "65ead07591b99106e42be6b116572dd4579f77383d79b2fdbe14380a4f297578" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/ElectrolysisOverhaul.groovy" +hash = "d7dcd0545e79b8ea80e29b727c5d6860d8a656cd1945e972adba9e0ecdccd197" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/GemChain.groovy" +hash = "2583728595581ee4fee56e9756032a447218e283d6bc62df7dfbdb448f612776" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/Magnets.groovy" +hash = "e30b2fd00acb7ce9216b8cab9841524a9d546b0fc6f775458a16e140e37b3546" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/WaterPurificationChain.groovy" +hash = "aed559a0e02603461d64ec28e5c60cc4dc19746596e7da51febbbb0c56d9e47a" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group10/NickelChain.groovy" +hash = "9f756c6d21b6165e927aed12f9a345f7a3460400274f2d1ded050b79699064aa" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group10/PlatinumGroupChain.groovy" +hash = "caaae4e6c2eec8c5d754913cabe38c8c731ca985189bbae3644b5f571885d268" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group11/CopperChain.groovy" +hash = "a1ed1075125cc531ddca08998dc4494aa563bc60ad54d5b991654f91f2e131b2" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group11/GoldChain.groovy" +hash = "4b73016d1e49ecd70e7a558e4f53e85abf7e6bdb478040a7717a78bd90854aeb" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group11/SilverChain.groovy" +hash = "7e2811de20aab0a03237e101f6c2ee65f5eb9f7230ea3a4e073fbde3cf8e993d" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group12/CadmiumChain.groovy" +hash = "233cce6a34d18e05301d2653f1e501625d2cafb66663b9f926853e2fa34276fa" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group12/MercuryChain.groovy" +hash = "525b67bddd29cbe8f49e1abb3fb1b1b24ee311410bec9417c53e6dc1452946b1" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group12/ZincChain.groovy" +hash = "b45df0708d6608df58ed1f70dfa39979ba383be494f32777efbb5efbaa54933d" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group4/HafniumChain.groovy" +hash = "55e47685ea334549ffc76ed0c24188a881f6ccef1ca05903d843418a8759de8c" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group4/TitaniumChain.groovy" +hash = "0b22de6947e475cb9350d786eef15add5ed1ace959370e04e1cb07a3cfc2749a" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group4/ZirconiumChain.groovy" +hash = "abb50ddbbc72f9a4e257b6e33d07cd946df26a94355be32704297b35d527611c" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group5/NiobiumChain.groovy" +hash = "0bb62e40dc04fea97e51c9c1a5b2c7a1c9f2a29954e11537a5c4598c4204a3ff" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group5/TantalumChain.groovy" +hash = "e2c36cdd277603f1b3d92a017acc517ec9e9b264a63c00645951b5cb52754cc6" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group5/VanadiumChain.groovy" +hash = "e8777a30a71b64cfa779f263dbfdfe636fa362ad94ab16c4f3bc5c76c31b0cb2" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group6/ChromiumChain.groovy" +hash = "78adb1a0aab70f2e274f8d4be539a579dd204e98e85c6a4e2df147680d538eb9" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group6/MolybdenumChain.groovy" +hash = "55f96d7cbcb7e095baee6abaf30f192a5093607b1e6c753faac320cc65ff3b26" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group6/TungstenChain.groovy" +hash = "62f968d09d50a509fcdbafbc051c33d917c4070f5dd814e96d110b8517a95d5c" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group7/ManganeseChain.groovy" +hash = "167d0c658f67fc82d615263ea0c0674e65fa20ad343317490810bf68be1d8e48" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group7/RheniumChain.groovy" +hash = "3362161cd9ca4d7925d9cc55ee8b1dfda7589dea3ce1eef1ef183fbd7bb4fe69" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group8/IronChain.groovy" +hash = "91fccf89bbc35e92d421c24e93cb9c5a82599edce4e4c571df4a0b69c1df7d8d" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/d_block/group9/CobaltChain.groovy" +hash = "616943fca0c0c96f2fedc313c1fcaa84342e49d0be8aa5892b25f212ef91913c" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/f_block/actinides/UraniumChain.groovy" +hash = "aa5e4d446f2c7f7a2d5fc6bac1896c22197a0f06f0da561fecb0fb1a3346ce1e" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group13/AluminiumChain.groovy" +hash = "5b189466c3b2e6f88ab5d87b35616edfa146c71aea643c1ae9f91b75a64d16d2" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group13/BoronChain.groovy" +hash = "c3569e3e80b5c3f1ac58e0c9430bd9ef0ecccfc5362894177738a3a14e86bca3" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group13/GalliumChain.groovy" +hash = "f3886a7cbebc81f2fbdfc3fa936421e43a91a9828a19f314d9f842b68bfbeaf2" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group13/IndiumChain.groovy" +hash = "ec60675a526278ef683a25738cb594367c2f78f20e35882c0291fb1947c486f4" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group13/ThalliumChain.groovy" +hash = "8560126f986f0dc75544b882653510b686b234d6d3954ab42a20b3311e435366" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group14/GermaniumChain.groovy" +hash = "34ece37abb8aa8873a708f8a97602481aa7c4ca2d06b532ec968f644d4328232" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group14/LeadChain.groovy" +hash = "69843eeeec75147a28cb7ec86271689540c767812a78181e8fd8333ef57fa40d" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group14/SiliconChain.groovy" +hash = "e9cb5cd9c4ea63bac0b6326f2b24e22cb04747eadb69d71c8ba673a2d674f925" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group14/TinChain.groovy" +hash = "9e55a0d890d281a210d630cc302ce9e8a2b5eab2f56874d3c7176a5913a78d61" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group15/AntimonyChain.groovy" +hash = "e14f4716338ae319eb8da0401e7c87ec03501e39b13e576ee8f0b6f79f6b07b9" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group15/ArsenicChain.groovy" +hash = "0eacb7c0fb12d97c436bd49aab6b4957db6a86eee48119829f8ed1292e799b0b" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group15/BismuthChain.groovy" +hash = "d9f442945004254ec89c911e07a60bbc6090ff9c129913c78405bcbc496b1819" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group15/PhosphorusChain.groovy" +hash = "8aaf5e072c32fd8a63fbe4d8e69828dc6538a02b1a4445685a812e8fe26ad1de" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group16/OxygenChain.groovy" +hash = "0e3b164c253a83fbf4537b7fdaa49e459dc37f24ec12eb0c55dcc0a83d16138b" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group16/SeleniumChain.groovy" +hash = "25c6836f909faf5fce8a16ed7bd24b1bd3eab2eb68713cfad3d23a22bdd4630f" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group16/SulfurChain.groovy" +hash = "c02e040191479e742388cf97d1742f897af481d877e7b06d1486a1fbffc9b863" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group16/TelluriumChain.groovy" +hash = "ab5810ed72d8b7ae693c41abe2eb8a7a48261f964893fdff2fc8a7b245e59229" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group17/FluorineChain.groovy" +hash = "7832130c0aa3e130769738e5b8879f97ec3dc26e2756cebde5780bd07945cdb3" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/p_block/group18/AirDistillation.groovy" +hash = "0dedd2b88700a7efa9d0b095656afa2623a20b5742bbc6232c870c9603cd3e71" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/CaesiumChain.groovy" +hash = "5a4441ce72827d9fdb109ddee7aa723bb834d5252503be86f3e1f6328048e55c" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/DeuteriumChain.groovy" +hash = "971c39bdfa6d30d0cdafadea6b3c786811d617d873ea3ceaf79ce71bf941b7ea" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/HydrogenChain.groovy" +hash = "c0868618133723594eeb6b0b19d18f497042dbfe00918e5845f62d838bf2c965" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/LithiumChain.groovy" +hash = "c09a8800d0a62a7dd1453703970a4dfbd0f74e3af83321a52f948dcc5cff7f59" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/PotassiumChain.groovy" +hash = "556d9704345e8eeb2e657a0ae41acf616d9b553dafe8c5e026fd2a6a93ad4f0b" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/RubidiumChain.groovy" +hash = "713bd39e3cb7153e5cc17f28d4f7ceb931d2e07213f6d60afb6af00a162278c5" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group1/SodiumChain.groovy" +hash = "35c559641fd0a42037087c2e14c5d0d0ee420e695685e68bb8f8d95a0deadc52" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group2/BariumChain.groovy" +hash = "8dd22c97d041ae8c041b2305608b5fe22fddbd29e423e440062e45cc412171cb" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group2/BerylliumChain.groovy" +hash = "31197cb5b7083e3a7834a27e56f0a80f4671fd0b7480e836408bce7631a5ecfe" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group2/CalciumChain.groovy" +hash = "0b1a18bf4d8d5dd49fb779cb7ecb1453bc05e95319ebabc60675f5cd38b0d0e2" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group2/MagnesiumChain.groovy" +hash = "783218ddba0f292e2fca5fa2920f754dd65cdb79c537206e4b0902bb94636fd0" + +[[files]] +file = "groovy/postInit/chemistry/inorganic_chemistry/elements/s_block/group2/StrontiumChain.groovy" +hash = "7748c7f9faa62fe87f9564e80ff40c4383fd7b6ec43deccf5e7ed46c76e1b459" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/AlcoholChain.groovy" +hash = "46fadff853bb7d704059f6bb553fdd83b216c0020f8302842a287f4fa216022a" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/CarboxylicAcidChain.groovy" +hash = "0fb3f95612927d5664a764529664285f51874a612286bf9ebaed0d454ac26786" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/CoalPyrolysisChain.groovy" +hash = "3c994dc4015b5fde2c657d907345c91e8e6e49b55d032d4a582de92bc39899ea" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/ExplosivesChain.groovy" +hash = "e35da3180ad45dc88b8254f43edb03516c9704899371c58e34286c5ba68ad0ee" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/Extractants.groovy" +hash = "1f83ed17626b7279cc2f97e19da1427b43e9accd966da5a34898ec42c5591392" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/GrapheneChain.groovy" +hash = "201adb6fde89b7b6ac00c4e64ed5e0041d2de1a9b1bbbdc89ec97fb30cd8ae57" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/PhthalateDerivatives.groovy" +hash = "cab51e24752fdefb6322cbec0d136cfffa35c9372d6251dad74015ac0b2adc60" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/Solvents.groovy" +hash = "3a45b8129ec0a5d1e541e5dcad352d96e8b093cf033620c1f5a8499e1bee4a12" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/Surfactants.groovy" +hash = "d6b3812030652030fae7a7255cd7ff751bab45ef98cf3b07972c8ed4b7f7b40d" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/WoodPyrolysisChain.groovy" +hash = "d5968eb2ae9ebaa2b2c61d097fa8bf970d3cd413758d1a4c6f4844afc94fb39e" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/Fuels.groovy" +hash = "ff39a2c4cb528a25111fafdac2e3001a9b620cdd51564c7132179129d4b97874" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/Lubricants.groovy" +hash = "2a0b1cb97aad40cbbe8a844db046f4e8582d5b72628f0024094842f25df1a3e3" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/NaturalGas.groovy" +hash = "4c56efb38090e391bad031d436a79e1c4c53ebcf412d2b28312f159fa119a925" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/Petrochemicals.groovy" +hash = "39cc77317ca7e7a276374970d2a9deb3c62a437fcf79c86c427aefb9cb8c2527" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/AtmosphericDistillation.groovy" +hash = "cfd4450bccadd1fe6a5dda4ff1c4a15c78c0d3e5e2c3dedbc4f9f9d5ec32fcb8" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/FluidCatalyticCracking.groovy" +hash = "760c273ba08925a80235a788dccb159631e447721886caae87f8e055cf499e46" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/GasolineComponents.groovy" +hash = "ef672d5e129171e2ab3c53dec5ee45e4d3c654b7dc2d75208c718654122339e6" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/Hydrocracking.groovy" +hash = "bfb54662c5dbe1b97269884e0cbb1db6aa7c565edac31fbf4488d312f1166913" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/Hydrotreating.groovy" +hash = "bc73b50f42b595167d8ab90a7c9f8899b9ab9150decc96a9d369bcc823c638ab" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/LighterEnds.groovy" +hash = "bbc2de3ed8dd54860015aab0ac6bcace1bc51074e68bae66c730b910f6c245ce" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/Preprocessing.groovy" +hash = "fb5e301af2ea7b3f6d3a15bc394925e9469613f911abb688d335f6e9c9ca6971" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/ResidueProcessing.groovy" +hash = "e943a0bf7c2d6eefefc0f7521ef79755eb0772a8bcb98cf920a48f90ec322257" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/SteamCracking.groovy" +hash = "322e1da38bcd960233a07cea4ec81ba39103b86c388ef5f67b73f4e7470b8343" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/petrochemistry/oil_refining/ThermalCracking.groovy" +hash = "ae47264b31c9a4e6f2d5ed1bdcf5a0ce2ed21b29416caf6cafaf2e2a56b3a073" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/AramidChain.groovy" +hash = "a4f5af0562b4e2aa15950ce9e46263812805f8dddc10cc175b597af00714ea8e" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/EpoxyChain.groovy" +hash = "d2f9d7f13cb1527c411739c651bb69210cc6e15b247705fd99b2188be31e7655" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/NylonChain.groovy" +hash = "f223ffa489ec9ceed67d4b60d8eec5ce4d3441c692b1d479a4befbb3db727c4f" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolybenzimidazoleChain.groovy" +hash = "0a36708dcb55ca99701f18d9f1cf826d1f6a49ff01be6b5cf4f9354157c9b0d6" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolycarbonateChain.groovy" +hash = "378a72b7dd002b5caf52a08aaead272179fd919cda9cfc01bbfa77c06b8c28f4" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolydimethylsiloxaneChain.groovy" +hash = "2e089ccf90834e3874c27db1150aa9f954d02f9284ad688db4266ce99b59b7ef" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolyesterChain.groovy" +hash = "486e2416fdbb242e6e5ea7ef11f42d5397bc382f875a06a8344943d20dac8f2b" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolymethacrylateChain.groovy" +hash = "88b9b5a405ff44fe26e1fff3d2a37f76cbdeac2bd4dd54875f3d228915cca73c" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolyolefinChain.groovy" +hash = "42860feae635bb1f68609fc1cc76fe2af24a98d07d403a8feae9fd393a6674dc" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolystyreneChain.groovy" +hash = "04bcb5ddb1c57bbba16ba1bd4e56b7b64e1e4c68e2ad7cf120b2273506365f13" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolytetrafluoroethyleneChain.groovy" +hash = "04ac0117159d44a5262711a0aa50eb01021d5985af9d8bdd8cc5928db5f01001" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolyurethaneChain.groovy" +hash = "f22adf12d29b5dc2b3dadd31e4f5a9cc6b120dc56ffbe0065a79e77926036ddc" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/PolyvinylChain.groovy" +hash = "7e186a7c9c1729f9c9c3b84e272ed482277743d7c211d4c7bee10b2840b09021" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/RayonChain.groovy" +hash = "4e4cba77e087a55b9d48b0e408cbd952a047745c0b3016ca710aee2a1ef17ff4" + +[[files]] +file = "groovy/postInit/chemistry/organic_chemistry/polymers/RubberChain.groovy" +hash = "84870a85e4d47a0d157502754d8ad0ae71bfb1c404bd575b2c7894379b361825" + +[[files]] +file = "groovy/postInit/components/Batteries.groovy" +hash = "bbdfb0ca21f9a7c3821dd8cc21e16ed762813da32bb39548285ffb5776686950" + +[[files]] +file = "groovy/postInit/components/ElectronicCircuits.groovy" +hash = "b4532e6976b70129f2e7f4a89a58484d0ecf84e381d2ffbceda7682a5c061104" + +[[files]] +file = "groovy/postInit/components/Emitters.groovy" +hash = "f828a7d69223e31a2450fda591557cef960aa314c0c6c2512687489001a389ae" + +[[files]] +file = "groovy/postInit/components/EtchablesChain.groovy" +hash = "a580b9ccbdca973446e9a9a9e32257e6634907c944d3a55fa799495df6bafa26" + +[[files]] +file = "groovy/postInit/components/FieldGenerators.groovy" +hash = "62c33778b1d63786f4d69c2d5c93ad3886c8aa00a9e708303a8479767d7d234b" + +[[files]] +file = "groovy/postInit/components/IntegratedCircuits.groovy" +hash = "4ccd757da38d1d6d245934689ed6104ebfcdbb381c7fefc04183f6fc2d5e438c" + +[[files]] +file = "groovy/postInit/components/MagneticIronRodChain.groovy" +hash = "fb71d06ffa40816c30164fdc279dd1c0efc888077cdc64fa481e0eec120da080" + +[[files]] +file = "groovy/postInit/components/OpAmpCircuits.groovy" +hash = "a392eb6ec2cda957aae820bdee93520f25d543df503a93323be00d76ab8a6622" + +[[files]] +file = "groovy/postInit/components/Photomasks.groovy" +hash = "d3ba47c0492770c70e80be858f540bf737e3f65eff68552a586b3da4a3c5fcda" + +[[files]] +file = "groovy/postInit/components/SMDComponents.groovy" +hash = "ad9cf21ebaff07cd40cf6ce2c6ed6917a99a6c20e784c3147b0e75498c70569b" + +[[files]] +file = "groovy/postInit/components/Sensors.groovy" +hash = "7ae56ba7c1bca144e4800e171016f71a5e6dd69aab5b20d4530222dc06958dac" + +[[files]] +file = "groovy/postInit/components/Superconductors.groovy" +hash = "6a56e4fdbf785f1dcc6e6019dd435f1d60a29460eaa1b01c602d31331f2d67a6" + +[[files]] +file = "groovy/postInit/components/VacuumComponents.groovy" +hash = "1e396417ca3748edbb675d3ce695c76f3624f1a17d34aa6c2195626ad3b50a1a" + +[[files]] +file = "groovy/postInit/gameplay/Drone.groovy" +hash = "0ee258ce719c43bca1fdc264be5db6607437d48be6c32731df2749a01ae59c53" + +[[files]] +file = "groovy/postInit/gameplay/FiniteWater.groovy" +hash = "a4cd378e1d7f078851fc0ab4869ae33701795a488bcd668ab63ab20bca80e31c" + +[[files]] +file = "groovy/postInit/gameplay/Invasions.groovy" +hash = "81914bd8b4aeb8a46248659a096f20f5024a13a364863bb1dd35752de7a9dcfd" + +[[files]] +file = "groovy/postInit/gameplay/LargeFluidPump.groovy" +hash = "b59978b4bbf0e3478cbc26d1350ea3f796af9dea0f531ae9a06208b3c8b9bdc7" + +[[files]] +file = "groovy/postInit/gameplay/LootTweaks.groovy" +hash = "01bc434a5c81806ee084d4931ac22634b839b78d4f5136029c731d800f834e32" + +[[files]] +file = "groovy/postInit/gameplay/Ores.groovy" +hash = "4fd313173174daf1010b54758dfd8d8628fef8a1e9ee8b98401aa5bc09a30bc3" + +[[files]] +file = "groovy/postInit/gameplay/Smelting.groovy" +hash = "eda71eb9a572beb7cf1335ae1e97b09190df270fccd16f87e169f88841a5c6b2" + +[[files]] +file = "groovy/postInit/gameplay/StartingAge.groovy" +hash = "ad2b7f8a1e25386d089b46ffe1828be22bf51f4a1956b4660d936e9281a02e39" + +[[files]] +file = "groovy/postInit/gameplay/Vanilla.groovy" +hash = "eb99ca65648b7d576b2d36eadb0c1f55c4a50aa234035e0407b8a92729f14fc2" + +[[files]] +file = "groovy/postInit/metallurgy/GalvanizedSteel.groovy" +hash = "d7db58b5cc3cca27ff3cc4640855a8c153e27274bcd66df209483b4297914969" + +[[files]] +file = "groovy/postInit/metallurgy/OreSorting.groovy" +hash = "1643f868c0de64f5e72ee807bf1c79c4eb9d73edfd87786e24abb443447494c3" + +[[files]] +file = "groovy/postInit/metallurgy/Quenching.groovy" +hash = "3f28cbac626ad183c2e63771258a5308f4888551520f479c5d0b9a407e6aac8d" + +[[files]] +file = "groovy/postInit/metallurgy/Solders.groovy" +hash = "216e5af289b957687eecf26ab610b1896fd2880c4df7d83736827e20244d0936" + +[[files]] +file = "groovy/postInit/metallurgy/StainlessSteelChain.groovy" +hash = "c52c2bef60c7db81f59765f7022761cde4bfd148a2ee5769fbf1e6be10e8abcb" + +[[files]] +file = "groovy/postInit/metallurgy/Superalloys.groovy" +hash = "5655832f5219733598d0d4a13cc3b78229a828cd8b7a6340ac74ce177b965892" + +[[files]] +file = "groovy/postInit/misc/BrickChain.groovy" +hash = "0a6b0b5ec1a9273526a73d6637580e752c3f4da892225b889b2fdb491961fab7" + +[[files]] +file = "groovy/postInit/misc/CementChain.groovy" +hash = "1e419c319040935f6240a9f90a7737f7503efdc8d937fd20e157150fe4768e5b" + +[[files]] +file = "groovy/postInit/misc/PollutionChain.groovy" +hash = "805c177ed5ecb15dca998b3a502690998a688244bae7a0c8705976c3053b28c9" + +[[files]] +file = "groovy/postInit/mod/AppliedEnergistics.groovy" +hash = "c21dd63b98bafef5844cb825e4284d467afdb381b2088223c7d7d0c2b93b9a1d" + +[[files]] +file = "groovy/postInit/mod/ArchitectureCraft.groovy" +hash = "d45fae9e57e69ab4478e7fbf0b55e6965f11c7f5511d84d89f217ea29421c466" + +[[files]] +file = "groovy/postInit/mod/ArmourersWorkshop.groovy" +hash = "e643c0807dd1af53ce31d0ed139789896921dac02f109b6fcd3cec629cb464b1" + +[[files]] +file = "groovy/postInit/mod/BDSandM.groovy" +hash = "284ecf43f483a694a759c02c6ab31ae5a0f333bf445d47348ae1fb4d33ee4ece" + +[[files]] +file = "groovy/postInit/mod/BiomesOPlenty.groovy" +hash = "fe945d654fd0b6c1c4bbfd65efb32add260c8b79bab3a3f2750d7086039940c2" + +[[files]] +file = "groovy/postInit/mod/BuilderWands.groovy" +hash = "699cdccc3fbbdd1754644f7cb17bf7472248502bb6c2b261b2e7271653e9d6d8" + +[[files]] +file = "groovy/postInit/mod/BuildingGadgets.groovy" +hash = "9c6aaed5a4b305ae59f88cb75fe88dbc3eccd43c71da82286a608804bdb16256" + +[[files]] +file = "groovy/postInit/mod/Catwalks.groovy" +hash = "7e932cc84de0d4bdac1a850d7958d39e0bdba5c9d0c88b38639e9976f8e28d60" + +[[files]] +file = "groovy/postInit/mod/ChestTranporters.groovy" +hash = "0a9a9aab1c85dc0b99b18401a6c6c7844f53a12d9c8bf24d5fcff875ceb088ff" + +[[files]] +file = "groovy/postInit/mod/Chisel.groovy" +hash = "2d9795aa70b84f3c2cdd1a282a9e4e54a371e17cbbed54f600106b2c5beda8f1" + +[[files]] +file = "groovy/postInit/mod/Computronics.groovy" +hash = "4fdfd3dcdd23b6b629ed1735feb3dc2ff131b49062cc425c5b650cd71dadc62d" + +[[files]] +file = "groovy/postInit/mod/CraftingCalculator.groovy" +hash = "a3c49b3a38929d6d0673918cf5eaaad212bf8c2d3b7441fb393e54a3d279ade5" + +[[files]] +file = "groovy/postInit/mod/Cyberware.groovy" +hash = "4572566084f345184d8f3a6eef1f4870db7cea32d091e2dcb0d9013879e31a5f" + +[[files]] +file = "groovy/postInit/mod/DecorationBlocks.groovy" +hash = "d284eb9886500d13fdc409b0278d3087c22515e4d293c51c59eea4db1d987129" + +[[files]] +file = "groovy/postInit/mod/Elevators.groovy" +hash = "c0c28aae80db0020e12208af4c6e3f1b7b6ad29d8ca83c3c2f78e011cd746d88" + +[[files]] +file = "groovy/postInit/mod/EngineersDecor.groovy" +hash = "c2e6ebb8856a0875552b1a8a2ccd3a7ec75b9daeda8013c4d60b73b7e832bd9d" + +[[files]] +file = "groovy/postInit/mod/GasPunk.groovy" +hash = "6deda79d3b808266396ba2a8ea1292e334a6fb6e1003d769856a949d549afe26" + +[[files]] +file = "groovy/postInit/mod/GeneticsReborn.groovy" +hash = "8a2d9980bcb0456266868698dabef8e2093d4e832b97b4eb4cd4a46a487baa22" + +[[files]] +file = "groovy/postInit/mod/GregTech.groovy" +hash = "6490118b47daa2d77e72b98da153721d70cc9f9d51456478d687e2d1862369c1" + +[[files]] +file = "groovy/postInit/mod/GregTechFoodOption.groovy" +hash = "0cdc8531a59c30d869fec8015eeb4c3807ef0fed0f2b4ff195a23d7118f66a63" + +[[files]] +file = "groovy/postInit/mod/ICBM.groovy" +hash = "a57fd7826d7a5f1a625abb9ffdcec23cbf02b68d3b6c435de12c5e4425fe0b57" + +[[files]] +file = "groovy/postInit/mod/ImmersiveRailroading.groovy" +hash = "414371688d8ebd0d686a441c638651cfda3b906313b40f0c7c8bb50a73b17e63" + +[[files]] +file = "groovy/postInit/mod/IndustrialRenewal.groovy" +hash = "281148a76dc32b70ef17b44cc590a1a73f884309a4319e643ff1b1b648a907a5" + +[[files]] +file = "groovy/postInit/mod/LittleTiles.groovy" +hash = "86af80fed924952332fa541bb6c98e8109e61c631e70dd4aecc8cd36fb1be6df" + +[[files]] +file = "groovy/postInit/mod/MachineRecipes.groovy" +hash = "3c6473ae8f9ece1ea561bb8f03e37ff054da7b5ef9786190124fef6e777a2f34" + +[[files]] +file = "groovy/postInit/mod/MiningDrill.groovy" +hash = "7c495e7adfa285294a19b13ef1714c3a85f1eec910a32d258f20ede5f804bd5c" + +[[files]] +file = "groovy/postInit/mod/MiscRecipes.groovy" +hash = "b83f8180062dfc699435ea70d08c4475ec17da267df7e667f05576954af87b66" + +[[files]] +file = "groovy/postInit/mod/Molds.groovy" +hash = "a3ba6efe01df5cd28d1f149d0cab8d86b65068c29baa9a680e99bc8aefb03baa" + +[[files]] +file = "groovy/postInit/mod/MultiStorage.groovy" +hash = "0ae6bad0251a6df71817adc5d853651d412e8b4cbe7d7403fda1f4e4d987d12b" + +[[files]] +file = "groovy/postInit/mod/OpenComputers.groovy" +hash = "532be13859090b0827c6ded65fedb0509aae379ce13f562dde9e9d30a036bc94" + +[[files]] +file = "groovy/postInit/mod/OpenGlasses.groovy" +hash = "ef4f90eac4e01383dc21fc0a741640a35a08937a82332a3d84712b936b5dc5bb" + +[[files]] +file = "groovy/postInit/mod/OpenModularPassiveDefense.groovy" +hash = "e99c8f00a06d829fe0b450497758334e989d34cb28c87b58bd67492cdd22a03b" + +[[files]] +file = "groovy/postInit/mod/OpenModularTurrets.groovy" +hash = "2dee7c35496c1f15a7676213b9c93087a70887d000ea389e6455c9db30c2c752" + +[[files]] +file = "groovy/postInit/mod/OpenSecurity.groovy" +hash = "dc289533161a12085e9fc7d5546a798fbc1b3a9b389f31d04d3d28929a080bdc" + +[[files]] +file = "groovy/postInit/mod/Overloaded.groovy" +hash = "2ddc07611a63ab6c1ad45274aaebc6080214110d21e65e5d978f9aca1fbc7458" + +[[files]] +file = "groovy/postInit/mod/PackagedAuto.groovy" +hash = "7f9274c4147479bc94c9e65bd5c94aee46e9dc7fc3f4996add2ad3eba87d67b0" + +[[files]] +file = "groovy/postInit/mod/Pyrotech.groovy" +hash = "3bf216ba9336e87bafd05ece3b6df197152446cab1fd4fa3b6763c58626b16b5" + +[[files]] +file = "groovy/postInit/mod/Quark.groovy" +hash = "ddaee260311f85dcdf398385342a31ccb6d80b233f900f8ca9570dbae3e95372" + +[[files]] +file = "groovy/postInit/mod/RFTools.groovy" +hash = "be96c7032d0e16590d7fa6cb71ea7aef4d9f3176e74f377252a29c45021b1017" + +[[files]] +file = "groovy/postInit/mod/RSGauges.groovy" +hash = "ee777cc2b55be3d8f4555958777483f2238c749c9c705e3e58b9f13ad5ed8869" + +[[files]] +file = "groovy/postInit/mod/Radiation.groovy" +hash = "70b083c7698d1cc4d35edd1a039024eaf79cc44b8e0ce69ded733404e6a4990e" + +[[files]] +file = "groovy/postInit/mod/RedstoneControl.groovy" +hash = "5b76a5f19daaa83d6232ec74d727deddd724bcf2c2e5d9d9f80cb51be903d50d" + +[[files]] +file = "groovy/postInit/mod/StorageDrawers.groovy" +hash = "b1f83c2b7685b917c9309120c368bd4ba83679263a402a6e651f7f29b628ae55" + +[[files]] +file = "groovy/postInit/mod/SusyCore.groovy" +hash = "896a6b3cfbbe15025183da175ca3dac6b414010d95d83d0c93182cab162ff77b" + +[[files]] +file = "groovy/postInit/mod/TechGuns.groovy" +hash = "76cef0214074c736d624b43368e10075fdb26edae87bf449cd8ea8a53fe65f4f" + +[[files]] +file = "groovy/postInit/mod/TorchMaster.groovy" +hash = "96a9b222b068e979519a35f71262d34b631b216f4f355c1c2e2dd1fc3736a13d" + +[[files]] +file = "groovy/postInit/mod/TravelersBackpack.groovy" +hash = "0a78a79967e0c0bd0098ec795afc7a88f01d2d7d49de7edc108c70c82417def5" + +[[files]] +file = "groovy/postInit/mod/VanillaRecipes.groovy" +hash = "52cf69fc1f17794dc5846c9aed766d477715d36303ad524e1b67ab70661d59b9" + +[[files]] +file = "groovy/postInit/mod/WeepingAngels.groovy" +hash = "87a708b7cbbb3206fe9e7360d780a0456f431fc3305d67d01c9314c9b6279538" + +[[files]] +file = "groovy/postInit/mod/XNet.groovy" +hash = "ccf4083e76ab8cbc9c469f290cbbd3fd1e58f6feb0fa6be24953cac172d71352" + +[[files]] +file = "groovy/postInit/mod/XTones.groovy" +hash = "bac74fb89dfab110c86b5dd802b377dd2652e9a5bc2b8ad81c929d9e350e7754" + +[[files]] +file = "groovy/preInit/MaterialChanges.groovy" +hash = "0fdc926962b12dcf55dfb6c0780a64254a85814e13b1960443ad98ba5434199f" + +[[files]] +file = "groovy/preInit/RegisterElements.groovy" +hash = "849a606f6683371643d56fe9686d451d5739963c821bb69ca8a21245608ada7c" + +[[files]] +file = "groovy/preInit/RegisterIsotopes.groovy" +hash = "c92d4d4e6459b821bd86dc2bd7e745224ca85ab1b07f1f3a8a53c71a23f09f22" + +[[files]] +file = "groovy/preInit/RegisterMetaItems.groovy" +hash = "febff4d8d831c3cc11363db4df013cbb5ea2b9a4b1cc8c1bb605d460bcb32a55" + +[[files]] +file = "groovy/prePostInit/ModifyRecipeMaps.groovy" +hash = "5a7a7dabb52453142ebd920ba1f07a79b08a7be8f7835ae23f9237c5bf647f60" + +[[files]] +file = "groovy/prePostInit/Thermodynamics.groovy" +hash = "45026fec526f8f8db49adf28d8d3b9c3df9597ac931ef67648f8ae90ddbca508" + +[[files]] +file = "groovy/prePostInit/oreDict.groovy" +hash = "a1fc8cfb8c974e073a31850d9dd9e055f44d56c4c160619598859b7cbedd4726" + +[[files]] +file = "groovy/runConfig.json" +hash = "2e99918b1692a256e24eddfda1621e8f89be8dcd1bec80f399314ae2dd7eb62e" + +[[files]] +file = "imgui.ini" +hash = "e65905cd4516988845c4ead53d2d4309b783b05374ff007151683ba3d40d1be4" + +[[files]] +file = "journeymap/server/5.7/journeymap.server.default.config" +hash = "0fad0b6004620d373ffc19ac99e8159ace5515c91431385e43223c3e2df91e43" + +[[files]] +file = "mods/ae2-extended-life.pw.toml" +hash = "b0db116adb0cfd8b765ca88d24db5adfa562259252a34d5446fb63b11c52ea17" +metafile = true + +[[files]] +file = "mods/ae2-fluid-crafting-rework.pw.toml" +hash = "321b793ef48a9f6d54cb6ca6ecafda3c4616e76ea77901f52365c1c7bd8a1e84" +metafile = true + +[[files]] +file = "mods/ae2-network-visualiser.pw.toml" +hash = "7271780f60487d7e9b68cf6542ce17ff9f4f4819781edcd4879c6287de4ecac9" +metafile = true + +[[files]] +file = "mods/akashic-tome.pw.toml" +hash = "965be564aa6d4f69905817140576e58a42a69b2e6ffc881c800b8d8f790c77bb" +metafile = true + +[[files]] +file = "mods/alet.pw.toml" +hash = "80be5803c83a562f74e6eaa211ccf87b3ade363d3a0415cac4df0b25e036c5f3" +metafile = true + +[[files]] +file = "mods/alfheim-lighting-engine.pw.toml" +hash = "38b628f90818b2e90a98f718b8841f02ae98516a56f821321857187a602e311f" +metafile = true + +[[files]] +file = "mods/applecore.pw.toml" +hash = "840faece1c6e2411435603e97b90e6e7d2e939cd1f0faecd251c6a95d06b7ea4" +metafile = true + +[[files]] +file = "mods/appleskin.pw.toml" +hash = "ffbb4bb97f53e5d6f005887b6297acf4274bed2e8e88625fc2d1e61a416afb26" +metafile = true + +[[files]] +file = "mods/architecturecraft-tridev.pw.toml" +hash = "502096634acc795253f3ea0752ed01db33b512bc2eb8b252092ba7f345de2a27" +metafile = true + +[[files]] +file = "mods/assetmover.pw.toml" +hash = "524023c2f9e70e261fe357d03c56936e0207b723cda6191ff2e1a7b53e1836fe" +metafile = true + +[[files]] +file = "mods/athenaeum.pw.toml" +hash = "30120c9b5188449824a201cc681bfb8de70346b8cb1a189e1c717e44c80dd024" +metafile = true + +[[files]] +file = "mods/autoreglib.pw.toml" +hash = "45b89fead492935701ce8092eb3920bce39d824629bd87458eae218aba41d258" +metafile = true + +[[files]] +file = "mods/barrels-drums-storage-more.pw.toml" +hash = "0125f216d544c5c1a50158e154bacec24669acdf31c4b14cd9907ea78b6d933f" +metafile = true + +[[files]] +file = "mods/better-advancements.pw.toml" +hash = "7a812e6a1d2e45df6d44834a1fbb5358e7222fed21739601abef5d6bbe00cd97" +metafile = true + +[[files]] +file = "mods/better-builders-wands.pw.toml" +hash = "f7c821287bcb460b7cd51438d4f08c818beb1070d687a0460ce5c5279941bad2" +metafile = true + +[[files]] +file = "mods/better-loading-screen.pw.toml" +hash = "c845fd7adae913d0526ca02bac3ec53e3c2cbc9088ed649a1a72fca9c3907306" +metafile = true + +[[files]] +file = "mods/better-placement.pw.toml" +hash = "a1cf61bc3d35c181831648528a42e17b89f921332789768220312611e0384ff4" +metafile = true + +[[files]] +file = "mods/better-questing-unofficial.pw.toml" +hash = "f81e857cad7b79ea80f49dae7e15efd56bfab3f247441ac12ce349d167a344e0" +metafile = true + +[[files]] +file = "mods/biomes-o-plenty.pw.toml" +hash = "a6f2a5c57e847e8a587ca95caf23fff6d91aff86828d764496143a35a30773ed" +metafile = true + +[[files]] +file = "mods/biometweakercore.pw.toml" +hash = "563bda337585d0ccbaa0429a0da48df4fae7ef9eeaf11b8d6ca3f55e558a156e" +metafile = true + +[[files]] +file = "mods/bqutweaker.pw.toml" +hash = "1932caeff10d12ca7adc6eec8559ac6ca8f9089becadcf8170f641baaa030c05" +metafile = true + +[[files]] +file = "mods/brandons-core.pw.toml" +hash = "e6b6f908221c3ff5f821e0f648a05f037ca100a242fb3d0122db9209e2531be2" +metafile = true + +[[files]] +file = "mods/bubbles-a-baubles-fork.pw.toml" +hash = "51df92937d340019d09edadda6cec4d5aed9d15f437485eb84f3316735d37755" +metafile = true + +[[files]] +file = "mods/building-gadgets.pw.toml" +hash = "c8ee6b8c56dc5011af73660d1063d881376b6d66b7b3686c6ab73edb6f598c14" +metafile = true + +[[files]] +file = "mods/catwalks-4.pw.toml" +hash = "77a4e4f27f2d3b955227ae656bad978eaa26e73799bf9411f448542cdba16def" +metafile = true + +[[files]] +file = "mods/cave-generator.pw.toml" +hash = "28dbf07b89b6ea6a0619b19877139587a0fa7f27a0bbe548bd8a5c50b3d87515" +metafile = true + +[[files]] +file = "mods/cd4017be-library.pw.toml" +hash = "d989c6febaa5a838bc9e489dc46ac7cd303c37d5aae78c8bde4e8ca0c15797ff" +metafile = true + +[[files]] +file = "mods/chameleon.pw.toml" +hash = "305815006195c0647af38ea5d8c03cd6c652c77bf975e3e967b754bc3b9ac569" +metafile = true + +[[files]] +file = "mods/chest-transporter.pw.toml" +hash = "96c8e9dedce3abe3214a9aa6fd70649775f6453778fdd9468ef079f675976c73" +metafile = true + +[[files]] +file = "mods/chisel.pw.toml" +hash = "5a5219bd45d091fa505a4c98e9282fa721f5228af3a91fe56939c6f347abc285" +metafile = true + +[[files]] +file = "mods/climate-control-geographicraft.pw.toml" +hash = "135f0f8478fe6e1a822028cba294160c2a8965b29467b899cdcecf5e241102f3" +metafile = true + +[[files]] +file = "mods/codechicken-lib-1-8.pw.toml" +hash = "49d0ddb311fa9fe9b193996de176a92e0ab2b26b4030344ae80cff4584fdadc4" +metafile = true + +[[files]] +file = "mods/commons0815.pw.toml" +hash = "aba619ad14a84abdcb9993a7aca90ee7d052f45b2f2825e89e3da0b90c001d7e" +metafile = true + +[[files]] +file = "mods/configanytime.pw.toml" +hash = "defd8d7b171bb90e9ae3cc60f8c5e863346f74f7c43d90fd2a1519cc9b0e7f5f" +metafile = true + +[[files]] +file = "mods/controlling.pw.toml" +hash = "ac423dbdf07ee4c91d05fdebfd3e0849ae9602925a39cac3dac0a35fd742c290" +metafile = true + +[[files]] +file = "mods/cosmetic-armor-reworked.pw.toml" +hash = "7e83c30351673c4e992a3894c34b49c9cd9ef585ddf6ff21d5f10c05255b7638" +metafile = true + +[[files]] +file = "mods/crafting-tweaks-unofficial.pw.toml" +hash = "e5fcda70b8ea1265a35520c4838fc975c5f8926d440c98e4237989f1aea36588" +metafile = true + +[[files]] +file = "mods/craftpresence.pw.toml" +hash = "226104b65760cc716d9fa104b63a668c2312a770f5820a4ecefacba5dd0b1359" +metafile = true + +[[files]] +file = "mods/creativecore.pw.toml" +hash = "f03aa10a2d6435326875419c039558ac254a4e1a9c9c069a09ab33e0a1742351" +metafile = true + +[[files]] +file = "mods/ctm.pw.toml" +hash = "430820ab4fc97024a7c5c188555c57e6fa22f33fe3d5f98d2a75254a0bd07633" +metafile = true + +[[files]] +file = "mods/custom-backgrounds.pw.toml" +hash = "27c57f2951e1779e3fa21d26208f0cbf75da0cdfea00a61b9fe5210fc5019b55" +metafile = true + +[[files]] +file = "mods/custom-main-menu.pw.toml" +hash = "a09edf92bd331270af9f88a11df2b12b7d2f1397c5a8e91d8438404df46e8d04" +metafile = true + +[[files]] +file = "mods/default-options.pw.toml" +hash = "5144fa02693d183e30f35cf4fe84c62ec366a65ce26724b277eb07c9c940b371" +metafile = true + +[[files]] +file = "mods/default-world-generator-port.pw.toml" +hash = "6f6027918bcecb2e34dbaf3c221997a2b465fc6bac9ae59eeaca646e09017ea6" +metafile = true + +[[files]] +file = "mods/dropt.pw.toml" +hash = "0d88899bf3170d49b241f3623d8cd9e02f01abe83756e7100f66846478611de9" +metafile = true + +[[files]] +file = "mods/dynamic-darkness.pw.toml" +hash = "d8b8ce06a68e37306a98e4856641bbde63e11316b56819dcb2601ebf176261e1" +metafile = true + +[[files]] +file = "mods/dynamistics.pw.toml" +hash = "cc67f876f53ff1b916f9f137c546910539686d43f1f9a2592587d79036d32577" +metafile = true + +[[files]] +file = "mods/engineers-decor.pw.toml" +hash = "e269b797f696ea4a422384260a9ace0318e921b2ab3755310e7e60414ac7cf18" +metafile = true + +[[files]] +file = "mods/extreme-sound-muffler-legacy.pw.toml" +hash = "9edc27b0f1ae4be19522f9c5006f6ad86dc9fc0fca9001dfd20581648cbd8dbe" +metafile = true + +[[files]] +file = "mods/fence-overhaul.pw.toml" +hash = "534d5c25b19143a5eed0a37a77b676605ed8375c62132ac515544f0b030300c1" +metafile = true + +[[files]] +file = "mods/findmyitemsandfluids.pw.toml" +hash = "c6abcd785928a38c03c1f6f497dfb49ac2780dd29846c632f7791ab6aa60ad3d" +metafile = true + +[[files]] +file = "mods/flare.pw.toml" +hash = "24fa50f6958381fcf97d902da91dcfec37b9cca60b6eb08f796f68e442227466" +metafile = true + +[[files]] +file = "mods/fluidlogged-api.pw.toml" +hash = "dd1a7e9b2e6da52376ef64a54d346bca37f594fee902218f8d835a8c47d2e175" +metafile = true + +[[files]] +file = "mods/forgelin-continuous.pw.toml" +hash = "11afab294854c8105436b37a6c666998eca0a56d24231fbc2cb06f61402a8186" +metafile = true + +[[files]] +file = "mods/ftb-backups-forge.pw.toml" +hash = "6aab174b12e2335e589aae9136ef5aecdfd1805b5930830d9ce378ae41abd9e3" +metafile = true + +[[files]] +file = "mods/ftb-library-legacy-forge.pw.toml" +hash = "1d53ed109e79b01c25b437db44da5976f22ca866e3d0dc286fadb96511e1a123" +metafile = true + +[[files]] +file = "mods/ftb-utilities-forge.pw.toml" +hash = "b3bf53323fcae0f8647ce23c60fffc003abcd315ece3772822f3130d7d5cd52f" +metafile = true + +[[files]] +file = "mods/gaspunk-inhaler.pw.toml" +hash = "0b6adf586d5744fa09a5b8c48e961b8d3e2b6ff89b946fb7eaf834c1abfaa0dd" +metafile = true + +[[files]] +file = "mods/gaspunk.pw.toml" +hash = "5e57bf8b06ed3500216ec3df7728d8b258fd03cb7e8483dd29cc1724f7a431c0" +metafile = true + +[[files]] +file = "mods/geckolib.pw.toml" +hash = "4e87ea91ac584b6c91dbac23bd05db9be1a848e47dda3524224bb189f4fe5b10" +metafile = true + +[[files]] +file = "mods/genetics-reborn.pw.toml" +hash = "ea5fb608e14fadf0e0c60d2d9940938568c415d0062d8974ed62ab64c45dd815" +metafile = true + +[[files]] +file = "mods/graduated-cylinders.pw.toml" +hash = "968e5378f4914911751ba717d3d1c951d65830579dc6c81fb2538d96434e1585" +metafile = true + +[[files]] +file = "mods/gravestone-mod.pw.toml" +hash = "157f6e6aa64ae6cf9da95be6b45dc54bf35c4e89e1c9f78866b1dc1821063b47" +metafile = true + +[[files]] +file = "mods/gravity-gun.pw.toml" +hash = "a25c4212034f33af7d6c03f09b64ea9b8756156e57e769a893b1acae207c0246" +metafile = true + +[[files]] +file = "mods/gregic-probe-ceu.pw.toml" +hash = "ad22a8c93f7abe1ba26529e5d76c9dc7eaa5213abd3e321e5ebdf91bd5bc1e90" +metafile = true + +[[files]] +file = "mods/gregicality-multiblocks.pw.toml" +hash = "367a687077a1f51527d1af105e2d67e1cd2ff56ec90f3aeb963cc0537a97dd53" +metafile = true + +[[files]] +file = "mods/gregtech-ce-unofficial.pw.toml" +hash = "c02a97d59ab1cc726e173bac0c456da17938724fcd124d26329302d8fc2b9b5d" +metafile = true + +[[files]] +file = "mods/gregtech-food-option.pw.toml" +hash = "70822efab84c2c71a445b1cb56bb847ab657cc84a968a14b0a5992cd28ecc76c" +metafile = true + +[[files]] +file = "mods/groovyscript.pw.toml" +hash = "345cd3b65ed52d646336ad3c8d720d3cf444a9d33bf306a037e8494114c94fa4" +metafile = true + +[[files]] +file = "mods/had-enough-items.pw.toml" +hash = "0fd23ea4700abb69c68b7aab359cba398c199ab16a5f90bf4ec90d170654721a" +metafile = true + +[[files]] +file = "mods/handles.pw.toml" +hash = "3ba6421817270dc4b2369fc1a8354d566f3a37ed6229d50010b836172d0621c7" +metafile = true + +[[files]] +file = "mods/hunger-in-peace.pw.toml" +hash = "1d74b23e5db6e2feaf7618cc23c6b69300547520c8be01adaa267b06435d9c73" +metafile = true + +[[files]] +file = "mods/icbm.pw.toml" +hash = "43758d9fe2e6cffe6ac8822142086b5cf959825bf97e4ed2c725e2a54f60fb70" +metafile = true + +[[files]] +file = "mods/ichunutil.pw.toml" +hash = "e84b408fe657d70ce1292d146ebfa510843327453d245d5694de3a434ad482bd" +metafile = true + +[[files]] +file = "mods/immersive-railroading.pw.toml" +hash = "70b855508fde6408d710ebe3a697f614f8c7d201d1b04761046925fe9b9736ff" +metafile = true + +[[files]] +file = "mods/in-control.pw.toml" +hash = "92527273fa468970a2f1ab95c1df58a13881b8345f6537ea65c60d8ff812592f" +metafile = true + +[[files]] +file = "mods/industrial-renewal.pw.toml" +hash = "41bc6b21cfe69d583ee595d9691ac082bf5a8a950777199df2df537e268b33de" +metafile = true + +[[files]] +file = "mods/ingame-info-xml-serene-seasons.pw.toml" +hash = "393e54e99cef148a03ee9f4ab01cce77200ed2d4aa6e932e9dcde0d94ef02416" +metafile = true + +[[files]] +file = "mods/ingame-info-xml.pw.toml" +hash = "44f8c8ec8537d281d633d900302e4757a52d003ed42c0874e115479ce88978ee" +metafile = true + +[[files]] +file = "mods/inventory-bogosorter.pw.toml" +hash = "80518543eb4397bef9e312fa388e6ada52b25f31e3db157640afc0c48f759096" +metafile = true + +[[files]] +file = "mods/itemzoom.pw.toml" +hash = "dd837a22df3ea453629c63743442c8d75e7fd8f1bbace8f2b764c27391cb83fc" +metafile = true + +[[files]] +file = "mods/ivtoolkit.pw.toml" +hash = "1ce21898ee51d69f97aa0456f339965c7c6763b34853a25de72b30a1e23f42da" +metafile = true + +[[files]] +file = "mods/jei-integration.pw.toml" +hash = "c22915e1e0104cc0b2298fa3b1edb6b6c512a3e464bdc96c3053192550c00612" +metafile = true + +[[files]] +file = "mods/jei-utilities.pw.toml" +hash = "ea6217ebaeb18bc22aa64f59530e8c9b73cb180e92785fdef2ce28b1418fa17a" +metafile = true + +[[files]] +file = "mods/journeymap.pw.toml" +hash = "fdc7c16deef289a8b6089d5eab3c6957f64650d2792d5e2398b8e4cf239cfbd4" +metafile = true + +[[files]] +file = "mods/just-enough-calculation.pw.toml" +hash = "9659d8f844faa0c1c92e914d7969b6ac1ecf2b6a8155834f8bfebc4193c30d45" +metafile = true + +[[files]] +file = "mods/just-enough-energistics-jee.pw.toml" +hash = "268c3eecd93e89e0afb4dbc4a5100042903f8efdff7c75b32ecceed7845d7151" +metafile = true + +[[files]] +file = "mods/just-enough-resources-jer.pw.toml" +hash = "80d3649857b9a454a12348abdb6fcc45a1d09d4ed7ce40d8034db113e91d7020" +metafile = true + +[[files]] +file = "mods/laggoggles.pw.toml" +hash = "2aec74c6dd668ddaca814969e6280f58c3b751ba75379d508a32c0b3f29dbf40" +metafile = true + +[[files]] +file = "mods/lazy-ae2.pw.toml" +hash = "9be747f0d18ed0676d229d70a36d4d44dec9e17adc94a1ed877c958ee4ce6c81" +metafile = true + +[[files]] +file = "mods/libnine.pw.toml" +hash = "64d6e39b5d51503a28f35961c1b507f19a74149342dcbb05521a9433d24596b8" +metafile = true + +[[files]] +file = "mods/littletiles-3d-importer-exporter.pw.toml" +hash = "34f632222b00a88d9ea76f053fa61996469e541a7d2e24dcdd0aa15b1d2c875b" +metafile = true + +[[files]] +file = "mods/littletiles.pw.toml" +hash = "307efe62b434f30f3d71f905620940656cf609da92fc76a594ae14eed965ad63" +metafile = true + +[[files]] +file = "mods/logfilters.pw.toml" +hash = "f8a28b003f79a8618267da7cc0940f0e7bb538f092ae6bdda2c354aa426f9d09" +metafile = true + +[[files]] +file = "mods/lolasm.pw.toml" +hash = "d2c61d32b03991d8aa5538fa36e99e84b4932bfacd25df098e74af26af949e41" +metafile = true + +[[files]] +file = "mods/lunatriuscore.pw.toml" +hash = "059eed4d55fa0728def70fc36e958b7d0f66bf6f6a4d856dbe6530cd30cac8ed" +metafile = true + +[[files]] +file = "mods/mcjtylib-refilmed.pw.toml" +hash = "e156d64fe4e8c8c7ce4d63916cc72ab6ed513611c451da398a2d794097ca93ea" +metafile = true + +[[files]] +file = "mods/mixin-booter.pw.toml" +hash = "f50f6d7f8fb9a8cbeaa61b2ef04d0028d0999af789ae6946d769b66a0464bc2b" +metafile = true + +[[files]] +file = "mods/mod-name-tooltip.pw.toml" +hash = "33797f106d7f44073865b9c54e8f62c50162e9415bc66b4dd9305d947527f39e" +metafile = true + +[[files]] +file = "mods/modularui.pw.toml" +hash = "394979d466449434539b556b7a958220510e2b14060b8f338a947eca0c926f7b" +metafile = true + +[[files]] +file = "mods/more-overlays.pw.toml" +hash = "99d1fe22e1ddc58a0a43f64a18a4e06298ef76c9f7608f57a7f0cee0d64fecaa" +metafile = true + +[[files]] +file = "mods/mouse-tweaks.pw.toml" +hash = "30746e92b44351d3365fa5aa6e43b623476c91116fb8b9f88b7233339d3c9f43" +metafile = true + +[[files]] +file = "mods/multistorage.pw.toml" +hash = "a98c572071cf97b6744a82b8b02f0c32d8299c40da28a6ec8693be0bd9156ece" +metafile = true + +[[files]] +file = "mods/nae2.pw.toml" +hash = "108eab3cfbc1a3e6c73bcc27927979a84c58fd435ee929ab53bbc9926e6b5246" +metafile = true + +[[files]] +file = "mods/natures-compass.pw.toml" +hash = "59c691bccb11a19c67a0272aae379c20d157d5240e7001b2d92d80bf555b88d0" +metafile = true + +[[files]] +file = "mods/new-tardis-mod.pw.toml" +hash = "e08823d1cf016afd5c34887773842cd6c775609fe099b1273c165eda7e363a8c" +metafile = true + +[[files]] +file = "mods/no-worldgen-5-you.pw.toml" +hash = "c592d8593cd1519173c7c9d024fa0f8ecb73c451b6c5d8f5edf50bf396d60d63" +metafile = true + +[[files]] +file = "mods/nutrition-gtceu.pw.toml" +hash = "b18d1ef7d85e9abc2b9e747ab8cb89fdd88ecac6c82c83b8c42bacef7171574b" +metafile = true + +[[files]] +file = "mods/nutrition-unofficial-extended-life.pw.toml" +hash = "b05b4b4f9c759eeba6138b3065098f82520cb927a70eec960f0883ebade70160" +metafile = true + +[[files]] +file = "mods/omlib.pw.toml" +hash = "b26dcb762a85ace42d3f3c2917d2eaf0dd759ee5e355bb986b07f723249dd4b1" +metafile = true + +[[files]] +file = "mods/ompd.pw.toml" +hash = "6bdc7c4acc2300ccf47eb35d7d5a56bac00aa775b4fa95cc2662be8662572db6" +metafile = true + +[[files]] +file = "mods/openblocks-elevator.pw.toml" +hash = "3431051cce65c011bd7cd75412ad676ada9353851d7383199276faf34b5f3d6f" +metafile = true + +[[files]] +file = "mods/opencomputers-icbm-classic-addon.pw.toml" +hash = "f221c31b8c43f363db6c8ef0126734e8c1768a121eaa2ecf5a52740602beefc2" +metafile = true + +[[files]] +file = "mods/opencomputers.pw.toml" +hash = "03fa6aa4c44799b68f9f544d2ba1de8327acef11a6a405572125e93a474b7bcd" +metafile = true + +[[files]] +file = "mods/openglasses2.pw.toml" +hash = "be80a6f0e3109bd4a647e05f1953e42ba40ecb537e709416a88d187e1bb8f54d" +metafile = true + +[[files]] +file = "mods/openmodularturrets.pw.toml" +hash = "8bfb0749eb020348649c1c7abf3e5b980ac35a52508a52fb329c19135b55b869" +metafile = true + +[[files]] +file = "mods/openscreens.pw.toml" +hash = "fe57a2a0cd08e7d76f89e14625a5696e015760e6b3986bc3b3e13d16de337f32" +metafile = true + +[[files]] +file = "mods/opensecurity.pw.toml" +hash = "9d826dc36c6715349392d6c975da22b6b1cbd82493cbb00a0926b3e67077687f" +metafile = true + +[[files]] +file = "mods/packagedauto.pw.toml" +hash = "430d338694d1a3f4e909f2e53f8988a78e9b9c7aa72755d211d8e58aa7be22df" +metafile = true + +[[files]] +file = "mods/placebo.pw.toml" +hash = "929442340bcaa421711871e3fa359e7d02ed9f4438312c803363eb1ec9460782" +metafile = true + +[[files]] +file = "mods/portal-gun.pw.toml" +hash = "0b2d90a415533b51a4ca6807ba537993dcca774a83185c6f7f998c4d5d859459" +metafile = true + +[[files]] +file = "mods/pyrotech.pw.toml" +hash = "9cb2f5b33142abe6c3eb9585b0693f828d287573353b2be7c6f1a67026462947" +metafile = true + +[[files]] +file = "mods/quark.pw.toml" +hash = "2e9648786a8cf14889eeac19283e7b534be2195d8c6f8de292d0af4071802f31" +metafile = true + +[[files]] +file = "mods/randompatches-forge.pw.toml" +hash = "93d16979ce8714c02e8e13cfb36d7f604e75ca334ec3349bf6d4e8e42f1c5563" +metafile = true + +[[files]] +file = "mods/realistic-terrain-generation-unofficial.pw.toml" +hash = "f25461df44c03c69d7d3d766ea172b81f2ca68c548eb95fc181b1c43558cb9eb" +metafile = true + +[[files]] +file = "mods/recurrent-complex.pw.toml" +hash = "91f2d59223235e8432344bc2ab7df5d4637cd6b6b22666dcc58f0a3ef7e48d5d" +metafile = true + +[[files]] +file = "mods/red-core.pw.toml" +hash = "4eff071ea2fbac18f5a6905547ad9f6abd66619c8f166d627aa9ccdca2c13c6b" +metafile = true + +[[files]] +file = "mods/redstone-control.pw.toml" +hash = "81955b3f2398b134273a40c0d0499c4c06816aa01819d5d78ca357f2c5751fe7" +metafile = true + +[[files]] +file = "mods/redstone-flux.pw.toml" +hash = "c4730aa68206dba3e9fe24d60b107d914d202ba5e3f5842f06d3fa40ec05d06c" +metafile = true + +[[files]] +file = "mods/redstone-gauges-and-switches.pw.toml" +hash = "1d7342509fa93510fda74e6d7fbe2ef1bc5c805a115149f016e11f641997c47a" +metafile = true + +[[files]] +file = "mods/refinedtools.pw.toml" +hash = "3a940be49e99a2f01b667041e9c24a7474d1335856c62d29fca46b67cb0bbbbf" +metafile = true + +[[files]] +file = "mods/resource-loader.pw.toml" +hash = "5b23fff02027846cadc887ffe26fce12a4e20bdee2cc0c06732897a44f364357" +metafile = true + +[[files]] +file = "mods/roboticparts.pw.toml" +hash = "e7f313d93cd3ef9f39cba1f81d69060993643ffedf6998757fda543fda6ebd4b" +metafile = true + +[[files]] +file = "mods/scaling-health.pw.toml" +hash = "ce611cd223f8163c68e1527d9499de1180c287c3dc9cffa7b0a549b4b4f4ddd8" +metafile = true + +[[files]] +file = "mods/scape-and-run-parasites.pw.toml" +hash = "9ce5e765ff7d3c5f0890ffc1f2f711e5b00777d844d1ea191c1fa6e044344160" +metafile = true + +[[files]] +file = "mods/serene-seasons.pw.toml" +hash = "537667da8b18765eb6b6a4041ca23651f1c7b16caf1b206992012ffdf7df2ed4" +metafile = true + +[[files]] +file = "mods/serene-tweaks.pw.toml" +hash = "91888e58a14acae52af0857c331d3eff512b37d2b457db73793dd51ba7cd1dd5" +metafile = true + +[[files]] +file = "mods/serializationisbad.pw.toml" +hash = "39856b030202484375620086fe0e3765f5251f55a5836a0ceaf3b8fe8f5fcac5" +metafile = true + +[[files]] +file = "mods/shetiphiancore.pw.toml" +hash = "ea500953c3b4b9e989f0ea5a33b0ab03e86ee9798510129ba9ea91743e31869c" +metafile = true + +[[files]] +file = "mods/silent-lib.pw.toml" +hash = "ba20eb5e1ea5e39e226a71f82801000b03271e5a7f0aff6d7747456b80c93b2d" +metafile = true + +[[files]] +file = "mods/sledgehammer.pw.toml" +hash = "1a150a9dcc2f012160f25e2fba14fdee2704a70a4b9d97dbcecaedfae68b8658" +metafile = true + +[[files]] +file = "mods/sound-physics-remixin.pw.toml" +hash = "dee57b8634eb5b944cabef1190a04cc2db982ec16c94d1000ccd097fd5e9175c" +metafile = true + +[[files]] +file = "mods/stargate-network.pw.toml" +hash = "5eb4ceb8627e9a020eaa9ad51826240f81d198b8b1c0fe1895604b5a48035a01" +metafile = true + +[[files]] +file = "mods/stellarcore.pw.toml" +hash = "67625d0f1c5bdd48272128fd08770affe815452af4eb4e2fdd70d6eecc52d85c" +metafile = true + +[[files]] +file = "mods/storage-drawers.pw.toml" +hash = "9aa575ca3ea4487c7d2c426d949f5ea5536cb9eaa1dc0670a9587873fdd97bf8" +metafile = true + +[[files]] +file = "mods/susycore.pw.toml" +hash = "a3e6b20ed996916fc0f77321ca243df0c34e2b963cdb072d3cb7a3a18580eb59" +metafile = true + +[[files]] +file = "mods/sync.pw.toml" +hash = "48b5445508e8a7b56f99cb554936b42d7037a884fd6775715e0c405ad3fbf2e2" +metafile = true + +[[files]] +file = "mods/techguns.pw.toml" +hash = "64a89765878169d6f37f8450bedd3a75539987f93a124c8ca183d0fbbda94f31" +metafile = true + +[[files]] +file = "mods/tellme.pw.toml" +hash = "4021df31f9c7d3c3af31695df69eb2d8ae18f735cd9b0fd0631662fa9e6d8877" +metafile = true + +[[files]] +file = "mods/the-beneath.pw.toml" +hash = "136c5d4d13816b788a48c7317be9f368245cf32acdf2f728875dcd30fb534c74" +metafile = true + +[[files]] +file = "mods/the-one-probe.pw.toml" +hash = "260f0330b42aa9e33b8fb8165d06f64d29540b42f121dc9746c6ebcb7ef55158" +metafile = true + +[[files]] +file = "mods/tickcentral.pw.toml" +hash = "19ef45fc00112597f2c1f9eea7b59778d953b3f8bc360fc95bb4937849df1bf1" +metafile = true + +[[files]] +file = "mods/tipthescales.pw.toml" +hash = "acbc0366bb6be6f40f17b345df3d16caf7f1fa4d469eb9f709fad140080fc234" +metafile = true + +[[files]] +file = "mods/tool-belt.pw.toml" +hash = "1a483c0d403f54b329e06061fa7b4e7cbc5b33d1506bf9c25a5681851e60d9e7" +metafile = true + +[[files]] +file = "mods/top-addons.pw.toml" +hash = "b0f7fc5d2a0177fb04294bde639aa21595933e00db66c7979f96a35824b1e7c4" +metafile = true + +[[files]] +file = "mods/top-extras.pw.toml" +hash = "e7b093a9b81ae2d487d71409bef11e7f35685762d22fc2a212b2a760a593e60d" +metafile = true + +[[files]] +file = "mods/torchmaster.pw.toml" +hash = "a3895abc87b7e4c9650ce4e7938953f22831d1f1e4e0fefc7a8c9dc65c0eb899" +metafile = true + +[[files]] +file = "mods/track-api.pw.toml" +hash = "45a91b2fd9cd1424357aab07b60395c23df4f494e943a6489ef89808845b4f27" +metafile = true + +[[files]] +file = "mods/travelers-backpack.pw.toml" +hash = "9bd71ae6ab0afca4caa69a4d24897154d1557ea45a41c3673d40f8bf545608ba" +metafile = true + +[[files]] +file = "mods/unilib.pw.toml" +hash = "d8de7698b86d3e3762d85c6f9920f1605aa3a90fdcade6957398cdb946ad6bc1" +metafile = true + +[[files]] +file = "mods/universal-mod-core.pw.toml" +hash = "aee505dc349c50028928fc4883621696a493222588da6a54092e45df24aa7921" +metafile = true + +[[files]] +file = "mods/universal-tweaks.pw.toml" +hash = "4f2be4a9451756453a8c654b5cf127dc25427ede6b5dba469c138ac6023f8cd5" +metafile = true + +[[files]] +file = "mods/vertically-stacked-dimensions.pw.toml" +hash = "6fce53e37a158ca3455b07c000fba72c51ea36ae3c5db8cc5e8698c8ae436fb5" +metafile = true + +[[files]] +file = "mods/vintagefix.pw.toml" +hash = "d4b265db96d54164964d11bddc7a1abc78777e56850b1d94683febb7d8009cf4" +metafile = true + +[[files]] +file = "mods/visualores.pw.toml" +hash = "b2908e4506d34fbe6b10d217fd7f2e55fec8b3c753a91bc8cdadd5c93b7be4ac" +metafile = true + +[[files]] +file = "mods/weeping-angels-mod.pw.toml" +hash = "492f583158b7295088a6656dec5b8ab32573bc6a9a634712f9fde7c2f52e5b60" +metafile = true + +[[files]] +file = "mods/world-class-trustworthy-floppas.pw.toml" +hash = "6d4b2cc5c4f70b81a80875d1e3bab631c127e191e01fbcbcde5c4e597ee654d5" +metafile = true + +[[files]] +file = "mods/worldedit.pw.toml" +hash = "d10c418f02190951aa9909a46005af48ab9aa214ed356337c432fd6f3cd3b1ab" +metafile = true + +[[files]] +file = "mods/xp-orb-clump.pw.toml" +hash = "27e7275d32631d562e9afddb20329f493258a3b4223665fea7b24deee31fafa9" +metafile = true + +[[files]] +file = "mods/xtones.pw.toml" +hash = "6c0516b9ed7436ab1b5a3c79709bb0d508e8586abdc0ef3fbfffb33601b20a96" +metafile = true + +[[files]] +file = "mods/yarcf.pw.toml" +hash = "729d0fb37a03b6244aad48f06c0048c7f4bc569592bc0bde256908e06a52a737" +metafile = true + +[[files]] +file = "mods/ynet-an-xnet-fork.pw.toml" +hash = "42d15c95ca45494c5bd7262c42e92e724f19729e63e27f8a5d7a10721c5a1e59" +metafile = true + +[[files]] +file = "mods/yungs-better-mineshafts-forge.pw.toml" +hash = "c9bc93209b1b68be06d722a27f49021ef593936d29e2f0f953eaf2d15d3c31cf" +metafile = true + +[[files]] +file = "resourcepacks/black-mesa-transit-system.pw.toml" +hash = "eb4fd464daa95ea5b810dd477e830a815b02b394e20f35189119fd6c88cf9148" +metafile = true + +[[files]] +file = "resourcepacks/shadertech.pw.toml" +hash = "2e01619443c033d6e8fc82f8f1fc428ba69ae4d4a3df80f667909ca6d725ba96" +metafile = true + +[[files]] +file = "resources/biomesoplenty/textures/blocks/mycelial_netherrack_side.png" +hash = "e0f1d53d5e1bfec1878ed4da0e9331e0d78443ad13e3f90a48f8d5f8956500d2" + +[[files]] +file = "resources/biomesoplenty/textures/blocks/overgrown_netherrack_side.png" +hash = "10e049cbb30d151d1b7c0b6568dc9183384556a45829f81d1809ce75e7523c47" + +[[files]] +file = "resources/chisel/models/items/chisel_diamond.json" +hash = "ea67c7539246ac879400b51460075a3d372a6fa2d3a6b0614a81de7662ae293a" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-bloodgravel.png" +hash = "957f5ad6d679dbe1f2eca04b941084d6511a33648d3eb49691ab2df0a11d9f3c" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-bloodrock.png" +hash = "9199dc2356fa84ba8855fa8631cd09794175fdeffc28984bdb60cdb01a51c192" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-bloodrockgrey.png" +hash = "8aba7c58d17be1a3111d5f169c76b4daa6e46e891456e063003fc08eaedfb38d" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-brinstar.png" +hash = "f4013313b0efe184a1e3655ca73f924b2ef7c8b66aef7c32e8743f9a731b73e3" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-brinstarshale.png" +hash = "02bc133daa2697bec14f5d65cb4dc48b0e7c4ef539d17cf45250d7c5e70fefe7" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-classic.png" +hash = "5ae57b8d4e1e3e356a80323e4088b098759a5bee0c61db218e4c2a8ba24f6c5c" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-classicspatter.png" +hash = "c46160bcc42e100c4d5b6d12a2c50ae0a15989915a1383a6e0b47abcda953863" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-guts.png" +hash = "c6bf0cbd510501f19d17b5b62071ff1af39858b6709e89825606b1e5bf82efda" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-gutsdark.png" +hash = "17136333c6c67a3870a13012b5279bcf975fcddaa6bc46cada3ac0cf4553d0b1" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-meat.png" +hash = "073733808f94a3560b6dadcfc132f5fbc620d434a3a7a9e00d9678cdab4cbe68" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-meatred.png" +hash = "c571ea21cf7500673bff4307f33bc83301b33544ab47d0ca2f8e553674535abc" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-meatrock.png" +hash = "8f211852de88882aa74dc28fd5f111411f9f6fc2f52474a8296d58efb4d6187d" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-red.png" +hash = "8189494a016544032820d58eb8867da04b1d5aa25b0dbae77a9282f2854517f9" + +[[files]] +file = "resources/chisel/textures/blocks/netherrack/a1-netherrack-wells.png" +hash = "c7c926251d44cd9619c34733fec88e3f5bc26f1f4e36e05afa11f355d81c3f40" + +[[files]] +file = "resources/chisel/textures/items/chisel_diamond.png" +hash = "0ff9320888bb2ef9bdc12239b86a3d4dd9e81068fb8226d11f94aa46e5d2cc12" + +[[files]] +file = "resources/contenttweaker/lang/en_us.lang" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "resources/customloadingscreen/config/supersymmetry/custom.json" +hash = "0b75ac36053728291f0702c41731b57ba942c5c52f2aebd8679ffa60f36b8120" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/banner.json" +hash = "182e28e18fc2cd73bef01b5e6cb4fb8732d4f37ddc2cc4fdf4ac759db5a2a5c7" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/banner.png" +hash = "6b76fe1d187a53ebc726b586d08216b69aad1a2e87b96ea7e3bf50794b7a7a43" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/bg.json" +hash = "5d344a38e07a9c4f9a902f3e38818721981d360b977964a8a730ca73b912a90d" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/bg.png" +hash = "19978feef7fe477db3610fd53774a60bf1316d413d4006926176123c9f304671" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/loading_bar_white.json" +hash = "6f8423656fec39ad671f18660a3b291a7aa7bc09bd2fe7ed1ba07dfdd9d597b2" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/memory_text_left.json" +hash = "bec333afb3bf4f265c2c55af06c77c327410c02017d58b11cb90575d3a1b5ce5" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/memory_text_right.json" +hash = "db74b09af6ea36e86590902cc249f89bc9136e4cc5608803f61c6c9048929baf" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/percentage_text.json" +hash = "8693f3cc5d18d23b5fc3b2eba93ec7856b710c34b8e5c86c05c90004e54963a7" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/progress_bar.png" +hash = "cb1f7b7cb4e525dc4a0281055e1fb8beec0e10c6a6b5cff05969d92aa0d0ec4a" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/progress_base.json" +hash = "b636a715057f0e006e8f594348e70d92293c56ae11407a7e3105a76aadaabf8e" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/progress_round.png" +hash = "2420344a01d9e15054bd8287cb88c6c9723619e59689522a0092c281ed13fd79" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/progress_text.json" +hash = "003cedeea16ef5542a784d3dbe096dcad69da66e3dbf669e0ecb0de11f93c214" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/progress_text_sub.json" +hash = "200809465105dff4509b88ed5e08395cccad4ac5e3158c992689e5c6aacd4899" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/ram_bar.json" +hash = "24f845e8656a8ceac6b06c5894361fa916932450239da7b74af87f1bbfcbb694" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/ram_bar.png" +hash = "1b03ddecc8e46f62d48adfb141292c0a659570251de17d5b4308de3260bf3597" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/time_passed_text.json" +hash = "6822bf647602157b8f71b810421f24f5f3b98fc286e9c9d4530cc9fbfceca5b6" + +[[files]] +file = "resources/customloadingscreen/image/supersymmetry/tips.json" +hash = "30ba15d8a952f5355df531774744f5c32e8fc37dfa3b4b6394e9e212513d3b21" + +[[files]] +file = "resources/gregtech/blankitem.png" +hash = "eec43e4f7655f3704678ba579cde8a3ec4144e5cefe8911b46b1187eac2e01dd" + +[[files]] +file = "resources/gregtech/blankmodel.txt" +hash = "23bdd6d157a5bbbffb8d1d5b149bf346f79f82104ea6d29690c709c477627d0a" + +[[files]] +file = "resources/gregtech/itemCreator.sh" +hash = "474dada8e62a5dee6807e2e7192293146b1b24387d149c14564f8321ad798e1c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/alternator.rotor.json" +hash = "b804643f96798e2421fe3c8075aa5480b51b55fa4a64416456663bb46a61f5ac" + +[[files]] +file = "resources/gregtech/models/item/metaitems/alternator.stator.json" +hash = "1bf29293e9028f48181515bd259cedc079ede17f7925cba161bf18ee04bb3820" + +[[files]] +file = "resources/gregtech/models/item/metaitems/aluminium_electrolytic_capacitor.json" +hash = "47249a7576327c2fe7ee9cc44023fc2edf4fec745d1d62b5f972906d5cd600f7" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode.lead.json" +hash = "2a5fd153b874dab61256342fc04c2c92d3b18365547ad942dcca9e0afb7e816d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode_slime.copper.json" +hash = "23f3979d4e589a8da0c2e8a32bc88ad106f66536c21f2eed213bcdbe9fee4c05" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode_slime.decopperized.json" +hash = "4057462bd10af0ac89338bed494716611b8887ab56e0259d855190e1e4e79290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode_slime.gold.json" +hash = "ace5680c168b985be4e1e19d3f39b66af16248aca7b2c47db13d0e598be16864" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode_slime.lead.json" +hash = "77f33d1a9d324693e95f1cbece4a26da4f3f51bf551e16630480a92c629879b1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anode_slime.silver.json" +hash = "5216761e34692b35951bfbbb1dd660770fb44470892956f525d432f26e17711b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/anodized_tantalum_chip.json" +hash = "d7745eba3fa805ecdeeaea406627ddd743b28d58012b6a3e81dae8c1e3981d06" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblyenrichednaquadahtriniumeuropiumduranide.json" +hash = "00fada58a016580bd45f6f27bf6b31c26a5513ea32c90736f6c1a388a887ac28" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblyindiumtinbariumtitaniumcuprate.json" +hash = "99dfe4e3e97f22fffb1cdd4738ea076190a9370de86c419aac6785ea87af7d71" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblymanganesephosphide.json" +hash = "6006476742f0bfb0592a11bd4236d1aa325cd5bfe9fb66f706ad8d19dc1dca69" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblyrutheniumtriniumamericiumneutronate.json" +hash = "59707921a3bad6d00481fb68766ff8b03dd0ae85ddf7dc726a99cad6b0513e7f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblyuraniumrhodiumdinaquadide.json" +hash = "97ebc2b5ff3aeacb614c84fc6439a268f47cbc316fecf503e288a52100e47d51" + +[[files]] +file = "resources/gregtech/models/item/metaitems/assemblyuraniumtriplatinum.json" +hash = "227719446cad1f0d0895f690b51f8772fe2ad1b182874c03bde1a5a62f5be1af" + +[[files]] +file = "resources/gregtech/models/item/metaitems/baseenrichednaquadahtriniumeuropiumduranide.json" +hash = "0da45f187984b355665a6986567c16d9258f22b977f3b39cf4043da15aa59a63" + +[[files]] +file = "resources/gregtech/models/item/metaitems/baseindiumtinbariumtitaniumcuprate.json" +hash = "69f26b1d8a687d433b9885c118ae0250ffba2f0a8994c6677488b42af7044b33" + +[[files]] +file = "resources/gregtech/models/item/metaitems/basemagnesiumdiboride.json" +hash = "9dfe04906a2cc3fec451ab38c882d358e6c56fe00cc5bb6e4b8043fa975f6bbc" + +[[files]] +file = "resources/gregtech/models/item/metaitems/basemanganesephosphide.json" +hash = "91f32b6c95bc7eb666d032a97f80411624cda4f00fdfb33f6f83601de3385fc3" + +[[files]] +file = "resources/gregtech/models/item/metaitems/basemercurybariumcalciumcuprate.json" +hash = "b429476e770492ce6a650adbf844fcf224099f760f3528bf5e9601a2c59cfbee" + +[[files]] +file = "resources/gregtech/models/item/metaitems/baserutheniumtriniumamericiumneutronate.json" +hash = "9aa70e73283087386bb46cdc4587a9183cb817c7d16daa3293d265f5e0bb5d04" + +[[files]] +file = "resources/gregtech/models/item/metaitems/basesamariumironarsenicoxide.json" +hash = "ef6b55db53e93d1a200428c4a90a48757d89ba62a6524c54db41b05044f8cf98" + +[[files]] +file = "resources/gregtech/models/item/metaitems/baseuraniumrhodiumdinaquadide.json" +hash = "d4cd83b5c96a2dd156299d7ac04ac626dc1eda92193362ef2ab2e2ffd5d29208" + +[[files]] +file = "resources/gregtech/models/item/metaitems/baseuraniumtriplatinum.json" +hash = "0b77d1dc1e347f3267b7c6aba1b19d701b4f54b89b089a4bb60963deb1152da2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/1.json" +hash = "2f4d539bb78429439b8c563a1d985e476ea38009ee8aa3fbc4d74ba7b9431115" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/2.json" +hash = "0abfb87af19bd3ca0715b988e5f3c9577b64fbcf3ae30df169f3613856a7fbbd" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/3.json" +hash = "0ef29071c16fc9a2fa0b7c5551e3cec0312f0836ee486e29a25c496a1e149bd4" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/4.json" +hash = "caf3142694882a28deac0598807feeaa80d2a6233c9e92e94dd3207a57add5df" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/5.json" +hash = "960c6f7d54ebc3bf3e75716f909a95da00929198d49a5002dac6e0be92ce717b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/6.json" +hash = "a22e488781d7afc2fd6966f465b23ad1c05e38127d743df8fa4365cdb7017c12" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/7.json" +hash = "f7a56aa6f757fef96180a0033bbd7747d9c4ab99b157b3243b55f57e26e3509e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/battery.lead_acid/8.json" +hash = "7ee078e2a169684640f7eb4f3c4b165ac277afcc18c57c0786b402b10045634b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/beads.ag_fifty_w_x_eight.json" +hash = "31c39ca0c8662d595b1763ee1759218e5e34a3b28196180d50987e9459e06dba" + +[[files]] +file = "resources/gregtech/models/item/metaitems/beads.amberlyst_ch.json" +hash = "546619f280aa1933c934c3601ea491c138b2df161123ed3f01e319cf76e7834b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/beads.loaded_rhenium_ion_exchange.json" +hash = "8e04f286331f45752c3d0a234b1912b0acaf48905874d5018f6a9c984b627125" + +[[files]] +file = "resources/gregtech/models/item/metaitems/beads.rhenium_ion_exchange.json" +hash = "499344963d1d54e4d997405c35c5ccf025cdeff16c30c3be6f8177208fa4ddfa" + +[[files]] +file = "resources/gregtech/models/item/metaitems/bitumen.json" +hash = "e68fc7c79cab28c9b40ec465f2cb6360fd752fac95ac11ffe02ff6a727e5b4a1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.alumina.json" +hash = "b37088be9885b78c5637a712b77bf88b0922fcdbf2bab101163d1d7ad7c0fce4" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.beryllium_oxide.json" +hash = "62a122d15e60a153f3da32cbeb296b211d5440afee0a452d2248d276c0d93721" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.emerald.json" +hash = "13695be6c8ac9701eabadb059553936143f1c79f816e889c8ce5de29717ed88a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.gallium_arsenide.json" +hash = "9f1efc1d0d3920e121e94550b0c94aa743b9ed1de88320d5a51cb756108bd7cd" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.lithium_niobate.json" +hash = "125f876af5ea88fca3e13405ddc8b487d63fa653b557cfaab96898dd9d8e7680" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.ruby.json" +hash = "9754350fec61626efb1f6388e4c1ac30d0f944f52ed953fad51e92c70636657d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.sapphire.json" +hash = "9e43b5374d6956188b66bec23bf43cac310d4a9005bba6808b81d5eb970b8072" + +[[files]] +file = "resources/gregtech/models/item/metaitems/boule.silicon_germanium.json" +hash = "4edc4473081d79de5af2c9a22b1c9dd95ef851fed0782601a9c384e8ae9f18b8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/bound_leather.json" +hash = "7dd70936c3fdb261d702726545f9dfaf71636740f8458453bfa50b9952947ea2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cannedmagnesiumdiboride.json" +hash = "0673bfbbd0f2505087d27209b0ab017822c4afe826bd757677d4576cd1213508" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cannedmercurybariumcalciumcuprate.json" +hash = "54b586a7242427a3f10cc70116cb903116a077da7adc37e93be1c1b1deb24948" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cannedsamariumironarsenicoxide.json" +hash = "864d876257c7538515fcb12bbeb67d392c60eedc4c9421957bab82ac4ecfd80c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/carbon_arc_lamp.json" +hash = "2f22be79eec8673851beb29a7f20521a1e67ca0db6a5e186713a45124f9d6df5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cathode.lead.json" +hash = "51ad191d738942f2b352a13e2b22d843977afac46225eb5c583df682e5db3622" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cellulose_acetate_mesh.json" +hash = "56c9cd60f01876e5c97e66d05d319c7074f670f359aab9eab562fa985014c484" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cement.clinker.json" +hash = "2d050838d2fb68b2cf27cdbe0f44210ca89b6e9998b001b1cb721b94d02bc0fb" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cement.dust.json" +hash = "f98f99ed072b4a254631e00183f42c9504b400d20c6c03b565c4f03b0f2bd49e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/chip.insulated_silicon.json" +hash = "aae28592b62042cd64e21501857fc9d334123665a0cc57ecd3ed4c29d97bbf05" + +[[files]] +file = "resources/gregtech/models/item/metaitems/chip.insulated_silicon_germanium.json" +hash = "5b576a78364f4a60abf0e0f1165dc0f280a7578f41cf24a4ef02588b146e27ac" + +[[files]] +file = "resources/gregtech/models/item/metaitems/chip.n_doped_silicon.json" +hash = "5a9a8cadbac6cafb9fdb62f6752c287098768db483320c7abfb0869250d86c68" + +[[files]] +file = "resources/gregtech/models/item/metaitems/chip.silicon_dioxide.json" +hash = "f926b08817af9da9005def839aeea054697593128abee33ec7e9408ef11862e8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/chunk.magnetite.json" +hash = "6c898643711813437461b1e4e9e24d8551c121ae2068f5bea30e0415095f6ece" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.cosmic_assembly.json" +hash = "8e354ea718cd79fa54ec92d9667d0110de33a2ee7a16aceb2aba563a8ced7e19" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.cosmic_computer.json" +hash = "22b1f9b2e38449074e0884f045dd456710006539f4904edcf7e59a84fba03d4c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.cosmic_mainframe.json" +hash = "ed9db21353938703d5b156ded6be06721cf6b2a6116b14156738b39579f9b2a2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.cosmic_processor.json" +hash = "c6a138570344f0f861d0ae9f7e2a5dd44e29c5691c8f98914ad3b3635b0f28f9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.gooware_assembly.json" +hash = "aecc8c3ebc040ddd0841f33ad4dbb2adeaf19822dcfbc99f7f749ff7fec88786" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.gooware_computer.json" +hash = "0e47ff69cfe31f893dbdcdf6730fff00563bc49dc54a388bd9c7f1233f7952f5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.gooware_mainframe.json" +hash = "65a511bdbac8764aaf856b22e135a3bab04d113c191f2d382fbf863da490c185" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.gooware_processor.json" +hash = "3061192f81391c568d864f1a75723777ba3de2d105f5eeaed600b0dc4035c736" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.optical_assembly.json" +hash = "624be8916ccfdb6e81691c256fa1d830f556075b88b2537ad9f980bd7ccc1bc8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.optical_computer.json" +hash = "e980a9b0351f5656ec74a095dbc2843e846703c64b479330aa086e00b7c3fe2a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.optical_mainframe.json" +hash = "68da0feb3a537ae53fb74a6fdb1174a6d36a080ea6087170bb7faa35de370499" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.optical_processor.json" +hash = "554460c4b21bc7fae8ebde2cef1f3267c30607c164d3fea3f95e947ff8c4721a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.spintronic_assembly.json" +hash = "db5cdef34fdee1b979b29ccbe848d323cbffbde932c60be53202ea4d1623c618" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.spintronic_computer.json" +hash = "b2fe4cbe03ba94083ef8bb32d2798228b20ed21da0cb2423864e17fd3151ec12" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.spintronic_mainframe.json" +hash = "d475b5bb439b3a9ade5a51937cabda425461be2964eab81ff4edc48a14ee5953" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.spintronic_processor.json" +hash = "8b4f5041f710715a06d48c7daf11e0102393132d28fc605c88613a1aed3c9f3c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.supracausal_assembly.json" +hash = "fd370651b8d726940857e91080e84da39fbef1372cfba11e43182666991f7b01" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.supracausal_computer.json" +hash = "1ef8296e3590d6b31894ebd83e5035c68a160b0c881bf5d8db5fab20b9b131e1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.supracausal_mainframe.json" +hash = "17c8235cf9fa9ecf19c9fa904f562bc63f0841e16de1dbb6630cb8e27dce4b4d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.supracausal_processor.json" +hash = "0cab3cd1e0ba0d0814d150d0b770d0c7b573d5e1bbf58bda328f36dc309492bf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.ev.json" +hash = "10432c3fe3c7349fda26e8082d94f18a7cb324535c53ea207f1a6609b9dae30d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.hv.json" +hash = "62e8722f1add34fd74adcd9336c39a346607d5b31a1661151efc616631192b5d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.iv.json" +hash = "17a42ef0a0a20498b856682875d6ab10f10de00d13aea2c835d5c2b089f5f74d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.luv.json" +hash = "8dde0171c8716f3e0bc33f8aa508b2c8d16d27e87b7ce0d5f052f726c3a471e2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.lv.json" +hash = "cfcc32b8ef9b92a18c135b4434ed959428106f6f7b0234f1801b8b731ea1467f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.max.json" +hash = "f878d8a4b052eadb261cb6e79b4cd2189253a54b3a0a67ef1aace87e944d524f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.mv.json" +hash = "cfed0614986100fa42d499ceef69092a745003d1bb8c6bd49697b6351e2a990f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.opv.json" +hash = "f1489e5cb25c673821b01d5fc3b3f22cb6fbdbfe8f28493870ff30106b4e9fbe" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.uev.json" +hash = "5fb0e2003e7a2d6e10dbffe41e9ebc977c2518d5dea041426eda3c8dc2403a22" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.uhv.json" +hash = "f09e0fd2aaf6f22a869c9f58f6060c41b52efd1304a42440d22701e85d75b98c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.uiv.json" +hash = "20900a7713092455365952394608ecdcad8b8c4a7d5bcfe158ff4b70505048d0" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.ulv.json" +hash = "0f10b11e65082c7be846b4d8e864ce4e6014d61e81409cfcab1e69912d363d0b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.uv.json" +hash = "6eb94cca4fb9007ae2d234a0192c6c019ba2712657159e48c39c643b97011506" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.uxv.json" +hash = "7ef07fd6732987c5d75a2baf2a54cb55f3dfe815b62b072b9cfd2585293c6e36" + +[[files]] +file = "resources/gregtech/models/item/metaitems/circuit.suprachronal.zpm.json" +hash = "9ac2b11bbc8a666152a0b1292492133934df81994943b2f2bfb25394eafdc6be" + +[[files]] +file = "resources/gregtech/models/item/metaitems/copra.json" +hash = "bd8b29d9fd15affe0c6632bc79d7e5c50400312f78d3023768a8185e93676507" + +[[files]] +file = "resources/gregtech/models/item/metaitems/cracking_catalyst.json" +hash = "2c72302ecf5856631f720d2013b9515ad93bd6b68c62f750b04ba0966ccdfe24" + +[[files]] +file = "resources/gregtech/models/item/metaitems/crucible.boron.nitride.json" +hash = "86a81eae9447af102a8d2718b97c24e627ee75b030aaf91241e573741c08c5bb" + +[[files]] +file = "resources/gregtech/models/item/metaitems/crucible.graphite.json" +hash = "ecdf6d448d57c2342e9f0122f61049a431b4a5acab337e899090e7afc4b424ac" + +[[files]] +file = "resources/gregtech/models/item/metaitems/crucible.quartz.json" +hash = "fbb0d5dbc56ea8bc3a98a480642e43dacb3f16d54cc98cefd2fc68aceb29d64d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/1.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/2.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/3.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/4.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/5.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/6.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/7.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/drone.lv/8.json" +hash = "554021a49811f54b0fa1c6aadbb84af5f8fdf5389532e18e95bba4394af22290" + +[[files]] +file = "resources/gregtech/models/item/metaitems/electrolyte_paper.json" +hash = "f3fcced2c7c0a5da701c06e698cb38445790c39c4090c51da3f2c21313a5895f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/epoxy_lamina.json" +hash = "df102997257b98b01edc09d1587d291b4027642155e9e4cef3674f4864537514" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.cpu.json" +hash = "aa0d1baa3ffb2ae87badc5619327ba8afe3c70280a7b6d131a0ee0f189bcad64" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.ic.json" +hash = "bebf178a557b13e7973f930b5d32d9b4176f5f414fcf4e0b023b27fc60086071" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.lpic.json" +hash = "bae7ddbd992b7dd300b05080646f353203950a080c83af39944b46797fb5b674" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.polysilicon.json" +hash = "c09e9e97da3d82bedaa797588bd1ce5803043537f0baf00f6fc131d63835b9e8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.ram.json" +hash = "77fb7cf4ecca4be23f7a7351b10b9408d28020d7b27bff56f66e837bc38cb196" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.silicon_dioxide.json" +hash = "98fbc5bad86a6396fbf70c6172c231f686542f224b8ccbd2e4bf6cdde0fa1b0a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.silicon_nitride.json" +hash = "361598533d0ae881845aba465066e0d411909bfb2d0192ca53ffee9e7c8a8e9b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/etched.ulpic.json" +hash = "a16752f13dd48014434a424cae015dd32db538d1562afbef8378779646007502" + +[[files]] +file = "resources/gregtech/models/item/metaitems/ferroelectric_ceramic_foil.json" +hash = "89b325aa624db67536fc7b5405bec3a6e501d8cf18941253d6198ae741d5644d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/fluorescent_light.json" +hash = "fae82b31bfcba5de09a992dfab3cfb047356239fcfc80250510670bc8911f0fd" + +[[files]] +file = "resources/gregtech/models/item/metaitems/fuse.hv.json" +hash = "6008d836d27d6d0659b1419a17bcc18cd6f54f9f4da138d9557f49c0f4e312df" + +[[files]] +file = "resources/gregtech/models/item/metaitems/fused_quartz.json" +hash = "4776edd967d1f50804ad3f1c3b1faf18e4831cb6cc70956fcd5c5084b0149034" + +[[files]] +file = "resources/gregtech/models/item/metaitems/glass_fibers.json" +hash = "0cc25c1979a7046c1cf1e80e8f8779b08b0938b5522f6b23f5d0a7aa2090699b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/graphite_electrode.json" +hash = "2f18ecedbd5ac2303a95583727ef37f938a664c0e0ee4eb1a94395b3d18a1fb2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/gun.barrel.steel.json" +hash = "ef18df75e1927048e6c433537bb970b9b347fab6a93ca0b2bd475c523520d8f2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/halogen_light.json" +hash = "fb81586718abaa3206c05891fa4848a6b81e0eaab2bbbdee02e96dce0a377142" + +[[files]] +file = "resources/gregtech/models/item/metaitems/heat_sink.json" +hash = "d4b4f107acb1c3caaddba2f8c823d4a5df56dafc4e702db7d500d09f2a9a0cea" + +[[files]] +file = "resources/gregtech/models/item/metaitems/hepa_filter.json" +hash = "d07b7c8eaac466c0edfe3728fb319f5244463a3e6722f0371a3d90bcf7292ea2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/hot.cement.clinker.json" +hash = "17b17c59e2d4230b999dd9a00c1f38081421ea82d9aabd14132dca8edcf56f20" + +[[files]] +file = "resources/gregtech/models/item/metaitems/hot_iron_rod.json" +hash = "2b7b9038158807157b82638196bb0ab22bf96ca72b579de5017ad566686e5faf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/hydrocracking_catalyst.json" +hash = "9962162eebddee5f2e97002e225d196f338b024a6844b7b227c4b4481025c499" + +[[files]] +file = "resources/gregtech/models/item/metaitems/incandescent_light.json" +hash = "7acfdb3db86f11d1d48d04b7f94e35f1a147a7e3d24fc88453c83a08dc5e182a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/laminated.board.phenolic.json" +hash = "7c08e17480a02133811ffa11a682108d17af4c83f3c5c66562f4353af11eb1b9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/leached_red_mud_slag.json" +hash = "d699b5074f5ceaf0e76eb8cef62bfc8f35d4b1807a1a3d256e53f1d3829170b1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/led_light.json" +hash = "f4cee01ad2fe5717ecb5a6ee66e867ad43bfd2d446dc8d71d987771075a33485" + +[[files]] +file = "resources/gregtech/models/item/metaitems/limestone.dust.json" +hash = "5f034e070f684ae98905bfd888919a2be61a32e9abb8fa35165ab760ed659ef8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/malted_grain.json" +hash = "0a982ce96713381b4cf60c1fe85944819cb2f8700b1ca2fbc6b334d9cef90fd3" + +[[files]] +file = "resources/gregtech/models/item/metaitems/manganized_tantalum_chip.json" +hash = "616ef10fd9c5a396506e55fe7ec4e366fdcb0f138df880bebbe374a8f1bbddb8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.advanced.json" +hash = "bd6d6384140a6d02d69f2f5b6cff5549b200e804be86197cdff36357227750df" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.blank.json" +hash = "08b08f5866d4764ae5d80d067fa6163bd228008c74e0332767c606917e17ae01" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.cpu.json" +hash = "784c964dcebaba2d375501409a0ac1841351ed26cfcddbf3bb2c9bcf6eb273e1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.ic.json" +hash = "c46971dfb26328308d2f4a7b5dba567b1d73b3735cbbdb23ec8625d6c9200365" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.lpic.json" +hash = "c4f7cea070e69435fd86eca89a3a9249d6f15a19e0548db31f0ccdd7d7423ef9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.nand.json" +hash = "501b88a469644ea0f1000d930fa4f81af86ed1a670aa80dc5f45014531ab2074" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.nor.json" +hash = "f7e936a25e5d41da7ef83342d1a803bd6d1a4f1a03f18ec4bc32ad23ac333d14" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.pcb.json" +hash = "539154de3ecd7fece748cb016f8c7aba6810a4b5c9424f34648cbeac09fbb5f3" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.ram.json" +hash = "1a36adef59ea047aff0835c9daff78e904fab268fef44e7d4dc3bce5938a7a91" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mask.ulpic.json" +hash = "94e6afcab6d5088f917e90ea4d24ada6f56165fd4eb5d00696d07edcfa17dd00" + +[[files]] +file = "resources/gregtech/models/item/metaitems/metallized_plastic_film.json" +hash = "927980b97835f72598c7c393dbcc81ed03fc9a1c0e97eb853e936af38036d203" + +[[files]] +file = "resources/gregtech/models/item/metaitems/metallized_plastic_square.json" +hash = "e0e631df03125b15142ead406296d0fd306a60d720174246c4a882f3d9880fae" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mineral_wool.json" +hash = "be8b245f13790e0eb5f2eff18c8859147ae9db434b87cef91197e40c5281fdbc" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mudbrick_mix.json" +hash = "b6d216da85040ba229a2674bfa48f802ce036ae75d01881ef735d6723ae386e3" + +[[files]] +file = "resources/gregtech/models/item/metaitems/mylar.json" +hash = "7db612735487c64f7e8a6145790843178985e8c7a29e86ffe8b22fc6492d042f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/native_copper.json" +hash = "69205736dce06a8b8e760801b04eb5feb3d012a23be1f266d555cfa9a21d48b0" + +[[files]] +file = "resources/gregtech/models/item/metaitems/op_amp.json" +hash = "0d40f3eaaefda3a9e4cb549329e00c79c1afcd3f06d1f977185909850d5673b9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/paraffin_wax.json" +hash = "cfc0314dfb5e71fdcab05ce27191f6afb61ab9028ed38af28a9c1eb0ac2a912a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/pattern.memory.json" +hash = "06d1491c19a6f13aed6b29541c0a3e029976e752c1ca35a4ab5d0b06f7fd380d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/pattern.processor.json" +hash = "548aeff07e2c9b20acb83696358164e6c6ad7a1b075c2402e4ec18b0c4234498" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.board.coated.json" +hash = "1046350f00f3d176c7e933e1170474539d39ef81b3042020e8d74e8e5d4ace0f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.board.phenolic.json" +hash = "46900502cda9656dc60bfa62cf64c716db2d8947215bf894e84eae0f3c0c30dd" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.board.plastic.json" +hash = "61b4a025eaeb7093aaa87273293fd4213df49b9496c0a77e74910903f0ab4ba9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.cpu.json" +hash = "a47f3ddd6d07f6aee418363192efebb1fa36960bb9ec3efcda86618e480ccf1a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.ic.json" +hash = "cb6dcc9484dfaac358bf615a23a8a46c31c5e51e2f8497eaa67f644da89987df" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.lpic.json" +hash = "837f0c7b31cbbdc66cebbb00df4c64d5e570da90e85c26a4b2f2316d73c1b20e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.nand.json" +hash = "2e6bf0bf96419dfc8f0c532a7d2d095c67f6c91f1b1ee1d0d84b9b0628f69e4f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.nor.json" +hash = "bfdb7abd1464e5dbf59cdc1ffa1d9ade1f717ea105fe417f02d5131f4091bd1a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.polysilicon.json" +hash = "01cf803e64fbf6b6267267dd110eada94e33f4410ab88c68526985f37980d874" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.ram.json" +hash = "193c56eb4d1850282f268a66c240741e6d7b78507252a363f7b5b28ed8d75686" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.silicon_dioxide.json" +hash = "c5585f3311ff20f5a0cd17658ebf6e25f5c1e804f34fb14aa5e68e97f185437f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.silicon_nitride.json" +hash = "63609ca92739b39baa1ea5746efe7da9f1140e0d044e16eb8c5b144a4bcda807" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned.ulpic.json" +hash = "c4dbcf16de4fab9912c2d8967c526b1c112c81142eda217cf2b3811b89b215bc" + +[[files]] +file = "resources/gregtech/models/item/metaitems/patterned_thick_film_substrate_wafer.json" +hash = "1e36f68ca3ff7d5eb29aaf6d8a13c3c88d9add492ad24d5f00d9e44a14559d09" + +[[files]] +file = "resources/gregtech/models/item/metaitems/pipelike_2x2.json" +hash = "e4a4fa568c3f6a67ab4941edd048c04a3ac21fa3038c3e870e43b1768716ed70" + +[[files]] +file = "resources/gregtech/models/item/metaitems/pipelike_4x4.json" +hash = "d10fb13c3dfbf089d169429e502cea0cdfe13bc549461e8221a56a0a7abcd3a7" + +[[files]] +file = "resources/gregtech/models/item/metaitems/pitch_binder.json" +hash = "6b71d0a7b5d66a328d1ee4286bccc609670bb4db5e49858d66260cbee2e7b22b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/plate.pattern.memory.json" +hash = "dd62d2a90280c34bc5593db3e71ab09886f3a7c52f411ce6a3c4a4bd37fddcc3" + +[[files]] +file = "resources/gregtech/models/item/metaitems/plate.pattern.processor.json" +hash = "014c9234e0eb7f67ddc2e4256ed410e80653fa988bae1ed770666e62f6abbcbf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/protector_chip.json" +hash = "7e2b212b48d65aea6340dc4e74c782a1f027c66b201d1b4b0350bfae76d14965" + +[[files]] +file = "resources/gregtech/models/item/metaitems/raw_capacitor_roll.json" +hash = "b6b458d450ad651efcc19d9f914cf7932a0246ccd5ad21af0bc93b56dcb42cec" + +[[files]] +file = "resources/gregtech/models/item/metaitems/raw_ceramic_capacitor.json" +hash = "46c53a459cb60bb46bbdf6ab631bfe650997e7eb08b8d2ca46afb06c3183bcbc" + +[[files]] +file = "resources/gregtech/models/item/metaitems/raw_diamond.json" +hash = "e40140f0a4011c88ce2a336e5b1345a3830fba9bff3b39319292ffd6bf4aaa5b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/raw_electrode.json" +hash = "3babe57ff21e0fb4d2ad47ead44f4bb8194dca97d59cdb957a0c06fab6704beb" + +[[files]] +file = "resources/gregtech/models/item/metaitems/raw_smd_capacitor.json" +hash = "0ba52d0cccb62473dbf10c9b2098c5acbbfb064877f3fbc53f2c1ffab4761af5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/red_mud_slag.json" +hash = "50ae77f8355705d10d4733bf7e4c3452f9591f9282252cd4d09f0a2e4fcdb813" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.alluvial.json" +hash = "529ac0c2b2344c5989d2b9fc06eb0e2bb1b6571c6e56f772158a82744641750c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.hydrothermal.json" +hash = "51fe8b1ca24d09876b04c77dcf411153c6db19b88fd1af14623d98bde174f68b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.magmatic_hydrothermal.json" +hash = "db915212204c0e02ee76201d831c7ba519d4a578bbcc3d3accd20f0d29401b5f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.metamorphic.json" +hash = "4bf37751783065d0a41227cc1afcc4d10544114d1874c2e2a23f6db0bc0b2e94" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.orthomagmatic.json" +hash = "5838c859fd02311f77310a0c62f11d45707619e8db46020a420a5697c0eeca26" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rock.sedimentary.json" +hash = "4b2bf02fc1387ed1bff3fd8c2a94c995ac246245f2e07369ae207d142215217f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rubylith.json" +hash = "a9b6495471951791968c262c829cf2104cb0fde6a6763f380f28c4d63dc94049" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rubylith_film.json" +hash = "31dd05ddbcd774f30ae385dbe761f7310b7c447f40116b6208a5c7e9fe876763" + +[[files]] +file = "resources/gregtech/models/item/metaitems/rydberg_atom_array.json" +hash = "6a624a27344bc540c6dbfdfc8fbc05c6ffeec0af2a38c9973d0f4dabf700cca5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sand.dust.json" +hash = "d0863a4f4db7059be147619df3a296a1149e3d4716f42419f5bdee7176c7afbf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.alumina.json" +hash = "20016b7ebcfd103a98e8dc406a4ad4f326f20a6e3d9a5430a816dfd9a871552c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.beryllium_oxide.json" +hash = "a25edcb18b66a9e38aca05ae507711d3ad53a74fb235c7bb0b1331d67e483060" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.emerald.json" +hash = "06ef1ab4dc3b6c99afc463ad33948a6e6af78bb4358c4a27df03b2d599a01178" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.gallium_arsenide.json" +hash = "720537d86aec286b16a5ff4673165f8cfa0e94ffa97c070c41dede88936da40d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.lithium_niobate.json" +hash = "d5dd35cf00d251a4267c8dc801f61bf844b139d0fea95fe9028cf8f3499e3169" + +[[files]] +file = "resources/gregtech/models/item/metaitems/seed_crystal.silicon.json" +hash = "1087ea3f640ca9649f959e4fc8678da0097a426260fd8cd0bd5a5a0b526760fb" + +[[files]] +file = "resources/gregtech/models/item/metaitems/shape.mold.crucible.json" +hash = "59e336af7092904086539ad8c86a02d8761ca0bad4e2f4c4a6566cc2ada94aaf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/shape.mold.long_rod.json" +hash = "a27a1ab8d43a9540cb2753b223d45f08cae63547df3b7c337d91e234ff85731a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/shape.mold.ring.json" +hash = "78ca42c3f2c8792838140089bf711053c46c69f0d40dd411c9133a195af97357" + +[[files]] +file = "resources/gregtech/models/item/metaitems/shape.mold.rod.json" +hash = "747e0df3a09be356e5f5339921bca3418465f60ad86916a253ec6b83d5be0457" + +[[files]] +file = "resources/gregtech/models/item/metaitems/slaked_lime.json" +hash = "2b24e2f53be88b83724fea8d6812727fbc9edcc08fa2b830bfc8b251403baa2a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/spent_cracking_catalyst.json" +hash = "47df4e213b71cb9b73335667a96867d8022bf2d6fde46215f438f5141532e711" + +[[files]] +file = "resources/gregtech/models/item/metaitems/spinneret.json" +hash = "7e542bb9795dd634f55375368796849fd5240a9803ce54ea5c7707b6e1effba2" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.cadmium.json" +hash = "1c44156623aefddc225ff89e9608f96005c42a3110657da677d19735fd3a1354" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.hafnium.crude.json" +hash = "86d373fdf489f1da29dbf21fe6bcaeadf6ea6e6e0e8e6e8f62d9d142bd1857a7" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.hafnium.json" +hash = "25968c460ba7580ae262ba1711288c9f5e9ead0b803414abff0c44df0f6ff249" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.indium.json" +hash = "7eaa8f0b373b437248e7c8f5be6bbe8ecaa815a319119319baffa00c65aef3bf" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.platinum.json" +hash = "0c08dac32d17834f570dc1a17649f085a3371067befd5a3339ea9ff90a7ff1f4" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.titanium.crude.json" +hash = "6b6c0dec4cc4ad44afdd2b212f4b9a501aa6be6eafca81a71b3ca23cc63737c8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.titanium.json" +hash = "b764b6a73929a12ee98e30827e69073d6ad13c1e7f876a7b291cf9ca9b9f492a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.zirconium.crude.json" +hash = "498f2d5b1584c965b410de891768975af30026fd976d8c3a99996315f3f7076a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sponge.zirconium.json" +hash = "e0bff46070372fe408ef4bf7234faddb90a59bf7c8e6570825205e4fbc494018" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stacked_ceramic_capacitor.json" +hash = "96c7b5265830a035bf4721a46511db75c3ad8ba56a33fe2068599fabcf229c12" + +[[files]] +file = "resources/gregtech/models/item/metaitems/steam.motor.json" +hash = "36ecf687b713ee68ff5dbd18a5b8caa43972d08bfa06bd599baba30ea249f0dd" + +[[files]] +file = "resources/gregtech/models/item/metaitems/steam.piston.json" +hash = "b8923e03736fc152b158e3fdf22aee5e908e0156cebc68789b2531b077e35d09" + +[[files]] +file = "resources/gregtech/models/item/metaitems/steam.pump.json" +hash = "b8be38947d444ce5cfc0aa96ae2383afe80e5b93a8c6f24d8cb353ea557c8a82" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stem.cotton.json" +hash = "38641494c6478cf8e8086558ee7362e034c186e2576b9cbf9a5ad7046021b866" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.cpu.json" +hash = "225cc0b8b4b71b31cd06fb6dcb1f9505d59abbbb50eba2ea01f00294697a029e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.ic.json" +hash = "429728f24c911d2beadebf47e1f8d3711cafc66ab8494138ff7886c2aba4121e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.lpic.json" +hash = "d4d69ba9fea8b086cd076944a3067f10599e81982dcb5e842afe8cb0dd98f2eb" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.pcb.json" +hash = "48d04d90bc8c557dc8154b906a3510740267de534142952b60e2760064a7cfbc" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.ram.json" +hash = "39e2457768f7eb7c5d4e7b9bee614dc440eab356de4edf75fee9d0c9fda4a0c4" + +[[files]] +file = "resources/gregtech/models/item/metaitems/stencil.ulpic.json" +hash = "0f36395792e4c615b7e2f6e56c2e1a74e8ee34df81aa9bff7e28b82fa3b36a52" + +[[files]] +file = "resources/gregtech/models/item/metaitems/storage.segment.json" +hash = "802704ceab78e78dd8476fe0b53e7c53494184d0cd99c40232ba32865c6f4b02" + +[[files]] +file = "resources/gregtech/models/item/metaitems/straw.json" +hash = "712099b231940bf114e541975a5cb4031c2be8cd1a615a8183141d666ea47499" + +[[files]] +file = "resources/gregtech/models/item/metaitems/sugar_cane_dust.json" +hash = "22d75e5ae191a62e3a1fdfa3a2753edb97093e679db5f3d7eb2d7abedaedfea1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tantalum_chip.json" +hash = "04bc64f86f47408c1c887fb19897ae59e9b72bc29bf0ce7b54b6590293769a63" + +[[files]] +file = "resources/gregtech/models/item/metaitems/thick_film_resistor_wafer.json" +hash = "bc4dcf00b7e43acab8c8f7dc420f0fd3b1affd4afc41ecfffc91b11ad888a4ae" + +[[files]] +file = "resources/gregtech/models/item/metaitems/thick_film_substrate_wafer.json" +hash = "8951c2b1a836eeaf2ef38dc6cf1e033b0c7d0c80b0b342cc4845493b7d2b42ab" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tubemagnesiumdiboride.json" +hash = "aa153f37d0543df39fbefd1c72420bfaa22f5e417a8a1a20157a90c781c7f221" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tubemercurybariumcalciumcuprate.json" +hash = "8deea7c10ac5c9c074e6356300e0a2b1244466dacbdf5f49f090dae98f244eca" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tubesamariumironarsenicoxide.json" +hash = "ce7e6a8953383975025f7936de0258a369841ed18a86f69fecd8b82e7874f0d0" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tunnelbore.axle.json" +hash = "90268370c1fa5dd016d916ada7f0d27495c024006eb5b837092a7243214164b9" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tunnelbore.drillhead.json" +hash = "2bfa3206145c73f7c4bb067f1623cfa879c3b4cb359af78a649dc0ae55b8f850" + +[[files]] +file = "resources/gregtech/models/item/metaitems/tunnelbore.engine.json" +hash = "a6709878a3ce191c37809abdff5f112ec947b380774b45f90ee7d1fc2bd4516d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/turbojet.small.json" +hash = "7d0ea39f4b376225d5eaff25a14a420f605d335af4c4cdf7d50bca42db13a671" + +[[files]] +file = "resources/gregtech/models/item/metaitems/unrefined_boule.gallium_arsenide.json" +hash = "df50a752486f3e48a2005b06645ad0cd5c0698b4f05fd61d79c3ec6ecd94e492" + +[[files]] +file = "resources/gregtech/models/item/metaitems/unrefined_boule.silicon.json" +hash = "0e20b2ab8a93f1920a3759f0f43c00c25235481b158f7338f845323081149ff1" + +[[files]] +file = "resources/gregtech/models/item/metaitems/vacuum_tube_components.json" +hash = "ae36830f4ae5c82c1ddff923539ff74b64b34d5cd67fe108966c826a1fc24b02" + +[[files]] +file = "resources/gregtech/models/item/metaitems/voltage_regulator.hv.json" +hash = "a168110603cd83f2fd0c7f1e79004d2bcba3b02f763e5cac3b2952fcf0aa4f7c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/voltage_regulator.hv.unsealed.json" +hash = "4c827f90c48ad79b904c88d417f2619e4dc5d640a2dbd1e2c480c62695c3f5d8" + +[[files]] +file = "resources/gregtech/models/item/metaitems/voltage_regulator.mv.json" +hash = "911d199a58a925bef236c7d3d9b34fa3b540889c9877398f941a7853d59b186b" + +[[files]] +file = "resources/gregtech/models/item/metaitems/voltaic_pile.json" +hash = "3026356b25ab4230ec4d8636fc87af6985ba9e5182e06eac0fa1decba7a0dcf6" + +[[files]] +file = "resources/gregtech/models/item/metaitems/vt_slag.json" +hash = "fe6dcf4eb8c13cca75f2f672ddba0799b3bfe6fea108906942d7b8744a3c5d22" + +[[files]] +file = "resources/gregtech/models/item/metaitems/vti_rich_pig_iron.json" +hash = "fb0fa9bcc81ac2dc1c42465a213d0e247d93e9f03bd3f46148f1588f0b8603d5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.alumina.json" +hash = "2428c1567aa99a8b3176fb5e31ff3548e545a85e8ed79c9fee77191db8961f62" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.beryllium_oxide.json" +hash = "e2ddd5a556f796dd2443d264674e3b0439f183bf6d2f5e72f2efd0f023460d0c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.doped.polysilicon.json" +hash = "dd25721c3dcf60ff766f93993c32716b2f26d59b90201f14da795559cb264a39" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.doped.silicon.json" +hash = "4dbcb99c02d445e5024ad58e79cc9ae705e793b617739f5ec662c2e2fe5d15f7" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.doped.silicon_dioxide.json" +hash = "a11c03791a69323c4f47fe5354f471ae4df0c9f2de86aebe745df5d88aa00726" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.gallium_arsenide.json" +hash = "7186953d18cc2766d25b3dbe1b9eeeb21b676aa7331cbd2d2ff0c181d6ea00c6" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.insulated_silicon.json" +hash = "b30fa04753193433a33fd87a4dd364c4cf025faaf82a19903e540e7f6d7d964f" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.insulated_silicon_germanium.json" +hash = "8b98118df37e9cf450eca71501cf1878f2b9968af2601cd7fa449d54aa4a64c0" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.n_doped.silicon.json" +hash = "4929819a228c5c2bad7621e925538ff261f7b40324e363386dcfc7102842efec" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.nickel.json" +hash = "7aa2039b1172c115360ecbccb546b2c864a420d499a14383e5892c43f58c0474" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.pattern.memory.json" +hash = "ccb4e973dfaa51c055e42ca44e3ab8fc68ef117f4c9350b2c96a7eb199b2def4" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.pattern.processor.json" +hash = "a8c6a3c668c301540812190c58d3ed39b294ed060e920f20b4bf3d587cee2882" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.polysilicon.json" +hash = "8c80a9c19f23cb93933911a32228d647d42021e8d04bed4fe381a72fb5a10a9a" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.raw.silicon.json" +hash = "c55422269a992f0f9abc52223873bd8c1e9f3f381a959dfd5482ae787a72a826" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.silicon_dioxide.json" +hash = "8ef0b18e8d74b7afdcff773e39cb76fa71b9ca2dbc63bb24a2fa2fa26d9a4b0c" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.silicon_germanium.json" +hash = "1c6204afa408f25e70d4a04e9e87cd1f04f9d6542beff76fb7febef3432523be" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.silicon_nitride.json" +hash = "718c886e0766c6f58027849ec1404615817bbf060dadb574278145addfd14b0e" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wafer.treated.silicon.json" +hash = "65f09b940210cc3ce69fb8af26520542282866fc6754a7a8f4aa0f6f412bba60" + +[[files]] +file = "resources/gregtech/models/item/metaitems/washed_rotten_flesh.json" +hash = "105e0b5db4be5b5b2bcfd3f98483bc4d7d89c9f0375cdfca445e19c687898d64" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wing.small.json" +hash = "574a60ee48f4db663c309a893af1f9ed610bb8c2e99d6a61e8565dfab201a2d5" + +[[files]] +file = "resources/gregtech/models/item/metaitems/wing_panel.fiber_reinforced_epoxy.json" +hash = "1ebeab8c729c4da56e51cacd7ebfbf92f970e3aa5588c561d0c5042bcff25b69" + +[[files]] +file = "resources/gregtech/models/item/metaitems/zener_diode.json" +hash = "f5420da4bbe691ba7b9a684699726e82d84d154066b620a66f029a35aaef2214" + +[[files]] +file = "resources/gregtech/models/item/metaitems/zeolite_membrane.json" +hash = "aefc762a6a6616dde27e6a00e0214b65cfd3ce33f9562a693af288f3319ed90d" + +[[files]] +file = "resources/gregtech/models/item/metaitems/zeolite_membrane_support.json" +hash = "af7084a270530310c517271a451ebcf4ee59c121344c9532d68bf9b83fdb758e" + +[[files]] +file = "resources/gregtech/package-lock.json" +hash = "c24e72766d5c9fd090358209aa7523a2ce315ea382801577b55a8714a0206b0b" + +[[files]] +file = "resources/gregtech/textures/blocks/fluids/fluid.chilled_lava.png" +hash = "0e73d73b2a4df71223e5d957bceba709722f58966fda69d947e10d7c1197a087" + +[[files]] +file = "resources/gregtech/textures/blocks/fluids/fluid.chilled_lava.png.mcmeta" +hash = "6a19bef21d66aac8fdcd8032751057733e321446b304d38f5ee8ba35efe99a1d" + +[[files]] +file = "resources/gregtech/textures/gui/progress_bar/progress_bar_fluid_de_compressor.png" +hash = "0ef69416bcb0324cfbc24a0e97aa6c0e4c939c17d6eca29c5a5731a92f65b798" + +[[files]] +file = "resources/gregtech/textures/gui/progress_bar/progress_bar_weapons_factory.png" +hash = "f24fdb09162c53082a9712be84fe16d925bd9efc32985479381909f378443f8b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/alternator.rotor.png" +hash = "14b32dadc4466baeb924a559507931a0209d8f01fdc6f88c22be7e453cea4c96" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/alternator.stator.png" +hash = "86281ff2c02be8f9a2b37beddfd84acdf9adc1496eb1c2f2441635ef02b837b3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/aluminium_electrolytic_capacitor.png" +hash = "32deb554e52838bb4f8f4c4455eeb7c0b15fe6af85d29ff302036432ab016f33" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode.lead.png" +hash = "49f211efb5bea6e4f06cb5893d4b850573806869a76eb2cfa30bae04e26853d3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode_slime.copper.png" +hash = "4c7cf3df757a81da523d3cc4b80f54cd07756cf4f8ab7445746ac8a5abd2ddb4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode_slime.decopperized.png" +hash = "7a9b933b4746f4db63e4060c78f44f9fa89ef3b06836209544bd6cde550a7e41" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode_slime.gold.png" +hash = "46c186606e713ea3ed479418c45b2dd15efbdac31e2029c83d28642a578cb5a1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode_slime.lead.png" +hash = "313078fe06bdddf67e445f1cb55a1cb8a52e97a27aea1b3ece0431b3fe3253cc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anode_slime.silver.png" +hash = "c9f60f0f3781dade566bbe18cc0cd98bac643e6dad89beef359159a767562091" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/anodized_tantalum_chip.png" +hash = "f1127aa4bbcde72b676c201f8869bac2ac1da997287eced9e674c77ea4a2b880" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblyenrichednaquadahtriniumeuropiumduranide.png" +hash = "22aea5b88169ad0a8ed8f5b9ef2b834f6ccb5c1fa20c6b48a65b2abbff54838d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblyindiumtinbariumtitaniumcuprate.png" +hash = "495485af07a62294e462f365916e04040a56ffd17bf1394b3252acce83828384" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblymanganesephosphide.png" +hash = "b4a0441bb4a76e328624967ab1afc1ba6ab77f1033e33ce76ab84d919273f701" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblyrutheniumtriniumamericiumneutronate.png" +hash = "5997899fb55bfffb6ae34714e0b8ac9c433751b5720501fb0ffc429d525712e2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblyuraniumrhodiumdinaquadide.png" +hash = "5964b763679dcbb39cf82bce4e4c6d69d3bb4e509dc9dbe29e36761636df6b64" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/assemblyuraniumtriplatinum.png" +hash = "690bad4e901fb07d5ecce2ddd05f04228ecd019f24ff49b7cfcc48cfbe7587f6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/baseenrichednaquadahtriniumeuropiumduranide.png" +hash = "356045c55d7c4bb71cede50b4ccdb403c43c8990c590dab0259dfd70009212eb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/baseindiumtinbariumtitaniumcuprate.png" +hash = "25de58b555f3c33957143f6267a5dc22bdfb693a962e43cdace132ffcb82c7a3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/basemagnesiumdiboride.png" +hash = "1d5fe98a75b4a35c78f240bd979955d6bbae0b616ab2e1a5cec8f83a3af1d136" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/basemanganesephosphide.png" +hash = "15e0cbae5fc98dfe53bb182c2a02b42722aab2a0325514b5a8aa73bad43bfd0e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/basemercurybariumcalciumcuprate.png" +hash = "f26090227a3be7427e40b1f52816d0e6955ea4bfd4d0c36dfcaf76e93a24bcfe" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/baserutheniumtriniumamericiumneutronate.png" +hash = "003c7eb372455ebab23840b9f08887a30e39208496830abb105fc4950d8ec828" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/basesamariumironarsenicoxide.png" +hash = "13e089361224d564ef03761d2f77f9a25e323b049a6371a127462c5811b5968e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/baseuraniumrhodiumdinaquadide.png" +hash = "6edf5b7fc8dd5fc7341e28170b773f708f348a307c259f3c24486aa7d0575d94" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/baseuraniumtriplatinum.png" +hash = "f874ad7b09268bb5fb43c99b96af181d69eadec83e72dd1b002632aa7a92c325" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/1.png" +hash = "8dde12914ee01eba2da9ed2227862fc6e5f96c1d846834096de526223dd4070f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/2.png" +hash = "f1f5ccb464c8ee0051e669d3dd9e01ed73551314dafeec483cc1de28c92dd453" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/3.png" +hash = "a893d4bebdc8863f122317325f704dfc4eae97f9836a80ff093da6f1a6790bb0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/4.png" +hash = "0433caacde9dbca6048d48355f76a8bdcaa2c84dbd5cd16acf02659d1ca4872d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/5.png" +hash = "8829cde1cd1cc042999254cc85b11aea3bbef4ca8b33977008e4c6466e6524ea" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/6.png" +hash = "2b0fbe6d4f7d6dc65df5242e224fb6a41091a968b99eb0b719d6be4a2ea12a7c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/7.png" +hash = "cfef3508aa7ed4a83b0cfdf77bbc238d047fab194ff9132cd138de27bb223fd4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.ev.vanadium/8.png" +hash = "814a1be354e3f14338a79507dd911a207d989039cd914bba2fe10feef061258a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hull.ev.png" +hash = "f00e7e3223547d38d2e0cd017b3736d26954cf5d8da817da7b9653108296031b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hull.iv.png" +hash = "d19d2a6c75c692625f630c0d419807cd0a81feb1567c91959cfb4dcd56eadb44" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hull.luv.png" +hash = "0c6c89a0508ce00f81e867f06d61a9c00de7734d0ce7b5321d6cd8b3075de525" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/1.png" +hash = "f87e4385ee605be0a4dc5c16e19a6fff33fe62965511216d537ab128eb78918f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/2.png" +hash = "52502d0b8459ab0937184d98615196fa37ec86e88c2f491a20f3ae962dc131a8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/3.png" +hash = "6ce4b12a2972083c513de62b91de25418fb16a1b33cc974eb28adc75027d8602" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/4.png" +hash = "2169704c32b1c35947097da63ea0355dbd9b8e7754d396a72d350699af63acbb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/5.png" +hash = "a1acde627029fa7e7a63c0af41c9f32aa382e6b801448c18ac97547e7020ee87" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/6.png" +hash = "2338587161c8e62967f60dd2ea6e4a2f107f9af1cf09b06d14d39ab4c393102e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/7.png" +hash = "0cfbd34bb26e8c565c59131df9e3b0d641a1a230dcb5e00dce706c2382dfdfc4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.hv.lead_acid/8.png" +hash = "83536fd018bd58ffc9e4c2777988005326f02085f20050128b13b641c6618cbb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/1.png" +hash = "69e7af2edf62d20f557c5f61c7c7f64d075a846f712dbd85b23a4ab50f68d20c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/2.png" +hash = "ebb07881a9076ee68a6225e152fdcb58beedc0b20973a66e1376d6326ced17a2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/3.png" +hash = "17c6462339639cdf3e2dfd4f026ce492ffc755f597e31cd922c5bb18438c3eff" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/4.png" +hash = "1b40de5c385d1f1ba5618bb65b30b713a1b5771e4796df4793707977d3d80335" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/5.png" +hash = "bbef7a2b1ea569df7e558b37e50a1402f9983c57f6822485a759426ad7dfb827" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/6.png" +hash = "0d2a880109aa87dcab3403d955bec58f6b105b990fa8956225b0864a771f881d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/7.png" +hash = "93bd1a3241a6550dfdfe59d5e27e8ce029ca81f95f14b2ae1c6da52e3f3d5264" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.iv.vanadium/8.png" +hash = "5630ab0885fa6b9617e96dbad199f804fff1edcf2a0b04ff00dfa149b21cae93" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/1.png" +hash = "074b2ce302690ffb6bd5f402f4db647ac0e8a40d82b79d49a38a236d6265ebf2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/2.png" +hash = "52d68dc82b5c7be043aa835ed37d493b5195cdcc4f27ccc3511e456074bb2948" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/3.png" +hash = "6e08cc56a5075f1696ee1e4418368de0ad881b953f196df171a429666740caeb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/4.png" +hash = "6864e0875aa4f61aa5016bdefa6e9452179d05239bc1740d2ea3ea2b166f9ae1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/5.png" +hash = "4e48bea5d7edfa13aa252282e31a4c22354576fc8b36fd6f5a8da07db70c4eda" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/6.png" +hash = "3892b2dfb8576256c2c5780019e29f4a543c5bf1ce011a1747e71be263291ac5" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/7.png" +hash = "1dbadecd24836f013da191ab0b9d0566d3c735682f9822825077d7e53dccb4c0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.lead_acid/8.png" +hash = "6f339c86864deace434833fb5568926e2b82c3772ce928e4969fde2b3b183de0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/1.png" +hash = "2bcac83483dd5996b86e08cf0b94096ae03b1ef79a6681599e78da7d88821398" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/2.png" +hash = "e231a505867b77c764ad37f814cb1846ed09b564a20e5681311fed7215159ae0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/3.png" +hash = "3a5489701c703b56bba975e7c361e71032338f2e2fb400654a9cf6ad0f6321ef" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/4.png" +hash = "72b055727c070f63243177fff1d9b384aa82ec05867cec92142f4af8bcbe2b7c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/5.png" +hash = "a517ad41beb19552b49f91d097ba47c24cb9034558b9f24c5ee71140cc1d57fd" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/6.png" +hash = "584b6a43ed63f730b1ed54d01148a41834e1f3a340b50da200d1022bb53d1f74" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/7.png" +hash = "1b6e51d8e6a48e356f1f70bb02c1b6b385225b588236b06847fa70eb6a2f2382" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.luv.vanadium/8.png" +hash = "b3e802697cfba8910b001a199849d8c071e1f452d2c5ba618c8f3c86ae037422" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/1.png" +hash = "1aa095b28eddcda4ed479f1d936bf7d3c85141423ff6483fa5dee4dcaaea7b54" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/2.png" +hash = "cb8e8f8694f596e01a4279ce999c0163344f081626dc90b365f77311281523ab" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/3.png" +hash = "71e27f3e54608400af39655819b4079b07a0b21efd46be5a699d0d5f9ef52574" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/4.png" +hash = "bb0b02309cb0f8340affc96a9039ba524d7a09c08d356690d7eb1b56b607268a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/5.png" +hash = "aeb6d5ac8f58e0e556544de0884522f16868206a7184b8dcd0019c107a3b8b88" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/6.png" +hash = "2327b280f635337256e832ca7f54eb6aca0fffc0dc0f8239525c3eb26035153f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/7.png" +hash = "90e65ca1e44392b901883fc50e2da044caf586b274c609648cae67b844a29ee6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.mv.lead_acid/8.png" +hash = "dcbb5121a491d6e950d8615bf888d014fd0175b998bdf7b7ce9062bef9bfe1c2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/1.png" +hash = "ca833adc7287b92c6fdd4df86578ea13f4525fdbe6bcf3c20985661e357eac3e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/2.png" +hash = "90421d9cb8341b472ef3dde3622aebb7035b56692e58b3647405bf935cbb21ee" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/3.png" +hash = "3faaea09f0c71d00f05b094b3d964fc21e49fd759e86ecbe44d30a09c34d2bdc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/4.png" +hash = "24935051fcb376396a94b5a93322216f2f8db3e5e55a759a77b4737dfa8169ed" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/5.png" +hash = "557be18838ac5e106f2a995ba22d30065dd2a42be25f3503251fc9c7a6c0e6d7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/6.png" +hash = "0ec4d11713e8bc59b919ba5fb0fc9a42d8009f756aab58bbad32ff71805a50de" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/7.png" +hash = "ced7823efd0d113e27a76f0a928976e4d6fd0443f570f3d6274d47bec6361283" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.cadmium/8.png" +hash = "63d2d8b77d6282acf1c21cb9032e2d45aa0425f4473e80461b1732729808b000" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/1.png" +hash = "6bf5a91dfb2c2ac9654d149ca32891cc0ae3cd85f0976bfbd3fa6b903e48772a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/2.png" +hash = "6fa593d94c3d0bd0b00ef8a79bac5deb0366d918a9018482dd1645ca4811cb04" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/3.png" +hash = "cd41ab525a66043275c59fc2074141e07e95d77b1769ce2bb207eeffe6ffcb7c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/4.png" +hash = "359838a68ed18931e807665038999dab5ee3852e189fd78aa92ffa556d733068" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/5.png" +hash = "99111527daefef3a11e7e940d0c36034cfa7686a760b99ac73b04ee46fbbba55" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/6.png" +hash = "0225c6b53910b65d3bd9782ceea45c5e011daf40f1c1882752e5f89fecd12e36" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/7.png" +hash = "3c961f4d88cac60c303685db24ba9a6ddc76a22688de767b279f5d931af6871e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.lithium/8.png" +hash = "1c407d732f619dde8b927d51c7e7e9af47f1f7be9187d2c89e6e52036e9da848" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/1.png" +hash = "b2951532e164f4fffd3ec78e055a587aceb40a80845a28ba5568dfc1d263c954" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/2.png" +hash = "bde3763a97168048d452d0f1249046d3db1af378c3ea879491e9618f700d3e2d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/3.png" +hash = "93df643b784eb3087e81de344f7b6fbb47ea2a98b01a370010cf3aca0ec03ae9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/4.png" +hash = "bb5fb1d7d7a0e6469f00e21d599f6b9b4636adde525475734d8c09d387bd63ff" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/5.png" +hash = "2a10aa29afd6e594f452f194b78061ee263dfbcf6c2e03b9d71bae89707f1097" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/6.png" +hash = "bcd025bde4415a817f073f7e7aa6225b3534b87845097ca02520dc62927c9202" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/7.png" +hash = "c633a81501a247e2add91446c93be9af525b7a13e15e1d10dd2c29584705554f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.hv.sodium/8.png" +hash = "1e0df51214561a375b9e314dcc3ac61d5e9241d6e527fa9c6ef958c859435827" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/1.png" +hash = "4e1b177afe3ac90b76d5496d0e33575a4bbf58d70467b953d885c1c81eec140f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/2.png" +hash = "e194cc52c08e702b73faf91a1a7ad6864166e15338be4fdddcc5be71f06c27b7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/3.png" +hash = "75112d1d7d5f7df953166c8821a2c0e0d255310b6f39768c7b906ac427d88307" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/4.png" +hash = "8320c08b0d328992fe4f246212278498076f0df3f085fa674c77b08392aaefed" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/5.png" +hash = "28be7af752521e6f9a96fe6e9ff248a14a62355e63b0880facf73b9fdcb22014" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/6.png" +hash = "f120ee19c89dbdb8d71748b9af72d85e5bb797e922bf24010d5f5e071cd9d70b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/7.png" +hash = "6579dcb0678c076b4fb8b160f8867804ceed02a05293980d3efa149a434e9f4e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.cadmium/8.png" +hash = "69a682389a48a1a7363756f6493bf516a45b8af0fc07f7bc5325899860660651" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/1.png" +hash = "320499d9cb0ce862f0d3af5b6bfdb322060895d25cffaabccd5b484bdee35953" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/2.png" +hash = "f4b7db5151266bb3ca31d94faecc86e4c1819e3e9ad6991b034656df6d9e8f59" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/3.png" +hash = "85a6fc410c6dc9534dcb64f46da65458e9ea260ff8353ee34befb48871fc964e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/4.png" +hash = "2cde1054e27d470e3e9161b5581d6121af31eaee58a4ba3de6bce7cd20f27ce2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/5.png" +hash = "1e1a05fcbcf23b5c797a8b5964e6cf0e74af691b693b267a49c3e4d064617d6b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/6.png" +hash = "16b10157d49d35a17c992f42224ca24c508959d91176f174d74a3035ae60daa1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/7.png" +hash = "abb18080a1e4d0fc61e7fcb7de83b6cbe41f69f6410ce989bde97b3cb80f7309" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.lithium/8.png" +hash = "dfce6c4ba25627dc4f4002076c62568afe6447da4936b9b80f2e37c94c6d913a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/1.png" +hash = "dc1e7fad3c27ac6856dc10020ecd5adf721224f8c16348328ca50c35a8d096d9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/2.png" +hash = "6beabbd70213de992078021bad8e35d6486d931a9e7ce8d52d8759c35d059cfe" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/3.png" +hash = "5c0608a17a91e9daaf48a63f534c1a7eb3ceaaefa2e175e347fd33b1445d24b3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/4.png" +hash = "d3f4ce85de4b8c784064d12976b7923d33debf229b803b161b21a627a913f883" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/5.png" +hash = "5a36c87aaf757e1b7b7d55868da1adb428fa101004ef75260a0f4c4fec1c147f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/6.png" +hash = "1d22044eb9103176a9d67948a301983b95305a0e283e5859e5429ad0c5610b11" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/7.png" +hash = "ea9c40c6f753faba4f5aff3045c55851defcf8c891d6581f122f627e942c730d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.lv.sodium/8.png" +hash = "b982c04fbaa18bc44038ed45ad2cc5fbdb00633510ea36ee7d4965a4fa5013f6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/1.png" +hash = "c1c9ab3699982bf5c06d32e28c0adde6cf8f4777aea40452b3b5b749da6ecd4d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/2.png" +hash = "2e61039d7e689855b1280224dc03eb544b84f5e50d390e1cc03f0785416c356e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/3.png" +hash = "f3b742bf6608cb32361748cbacc3205e516efb0f8eefd57fce27e4bb4e97ec37" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/4.png" +hash = "41668d2a22f8e5b1c17367bfb3afff57b8f5a5e62373ac6227cf1c197a48e782" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/5.png" +hash = "fab7b7ebcd126cf3d9494b74f91fa7f276786163fae62598b061374b1b184c02" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/6.png" +hash = "20634bd9672ff8d7e4edf74a559ec6fb109f0445fb899cdfb894bd510739b6c9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/7.png" +hash = "6f8a7d5f45bf1afb602831c27acdeb88604de3afbb0c6acfaf1e4ac3e2678e27" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.cadmium/8.png" +hash = "6b1e4845b0289a8bd087eccd6c2d18f928fe096a002ef1422b95d6bc7e044d42" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/1.png" +hash = "4a8f926ec3fd873c9e0d9cf67127c87dbec91a22f2a4c0441108d0c830abda81" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/2.png" +hash = "88d46f6a979e3d97748281746863b78c3f56ec25ee1cab7382d4b3bf87dbfd05" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/3.png" +hash = "21dd73107ddad8f441db24ea2e0b7348851d83f0306a7764c6003c479fa5cc42" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/4.png" +hash = "c4a71381a9d0c124f5fc209e806f63279dcacc60cf2243308f8c75042904432d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/5.png" +hash = "eaa82cf3855d593481f4f212adda79e51429d0931188c6d442cf36ba75311182" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/6.png" +hash = "ad0cf00c9c072addf0a3cf935b7040aae8d81d163344063962ce19f535eeded3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/7.png" +hash = "568f16916199b53954dd4f18d1119d1c362adc3c628538823dc5df8686bb9688" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.lithium/8.png" +hash = "6059de1c299844d897f15c82c9318bbdff9620b521820e2f0427e9bdfaad991d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/1.png" +hash = "28cea184e4b39a2eecaefccaefb437a183c056511138bce845c71b0d4646fd0d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/2.png" +hash = "2745a0fd67f7ad484ad751a1d734cdc9fa68c89b078d41180bbaa6f054c4c75d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/3.png" +hash = "2b626cc9f783eccf227b6cd38ead24e507e5d83db61de08e13232ce89c935b42" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/4.png" +hash = "c65aa70b88c4df152b3fa54ce798b1bc800f39fc83bd8ec6ea974a43bf09ffcf" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/5.png" +hash = "91eb82f8e1ddde98d9db181ed02d0c32ab52d9ce1b00f67ea0476255408395f6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/6.png" +hash = "f1b5c20f34a5d6d3789fe199fdf416a5c572cb237246a4b7067b80fc32d2061d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/7.png" +hash = "4f54905e6cbd70e9987a75c3c66567539eb9c24addcc662b0d2d01b0921230ed" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/battery.re.mv.sodium/8.png" +hash = "42180e46a1ebb0c44d9d4e9be28b80ec6fa3d4c567743927b23ba0b8d7830413" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/beads.ag_fifty_w_x_eight.png" +hash = "a3b3e52f073420f174e8ed37daf43baead096ab7c387f960727c60c7f65da917" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/beads.amberlyst_ch.png" +hash = "cbcf9b5bf75a4111c223bc7c8db9a6376341845d926bb3bfa45c5dac9bbbc3fb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/beads.loaded_rhenium_ion_exchange.png" +hash = "24dc8e5b5ab34e2a54cdc000ff94178bf7fc347c3a9b7178850710b0c69c2973" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/beads.rhenium_ion_exchange.png" +hash = "992add01d9eb24c626d9c1d6e7efe41f5fd24d1e4f302aaa2131c0ad221b6c11" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/bitumen.png" +hash = "20dda33ba62e349d2d9475baf1a70165cba4400895c2c21cae5f2202c0ab2f8c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.alumina.png" +hash = "7d812053f0424e98f473a296ba03f1df12af69624ca98e0767687f84abb4b0df" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.beryllium_oxide.png" +hash = "b23d9056945a99bb54a83d72d4f9eb5949a4a478a5c727d8bb2853c386eb3022" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.emerald.png" +hash = "3723d1f9b449097cdeebcca853db8fd2cf9e38d771d7038fac98f8149fa5770f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.gallium_arsenide.png" +hash = "3b1ddf2944e8017fb766debe3e6b3a55f8d7252702237d1d308f271c5e5ee0aa" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.lithium_niobate.png" +hash = "6292401ea35663726947a4119472f9e03f6f126f6df566d21466b4fcefa9881d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.ruby.png" +hash = "976ab4a58aff9bf3b242e0876027b88e036c6f08243d919edf07fff0757b2fc9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.sapphire.png" +hash = "e28ed70a11bc912feb1b095f81246d03f46003aed9b8e314c004034c9cecbdea" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/boule.silicon_germanium.png" +hash = "f1e1152dd7af302d7c22a27ae101906fad135cf0adef4cd9a476466b0f6a5f52" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/bound_leather.png" +hash = "3862aaba26af97d1162b68fb06d95fd79c103ea73bb3fc0f932b3cd4b9d769f0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cannedmagnesiumdiboride.png" +hash = "e5ba94123cc55773879b5051760c2338792726e092b6168877eccbba463b4bbb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cannedmercurybariumcalciumcuprate.png" +hash = "1c53fcfdcd12b64633cc46dd2df58f20e290adc909a9013505d16478ea8087b8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cannedsamariumironarsenicoxide.png" +hash = "3d73ce227af52e15bedc4b65bf7fa2c8116afa5b1033ee631a14299c69ee7837" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/carbon_arc_lamp.png" +hash = "2fafe6a74caae29069738687895fbd2e65b5e2b65c20758a94fa939297ef8707" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cathode.lead.png" +hash = "c5a9091d501590da602fb816f369d102bc059a8be4cbaf1450efb62cad31ea12" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cellulose_acetate_mesh.png" +hash = "0a57df2c9419fadf00a61ca0ebf40685d618bbe864416bb92b2cc626e8601054" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cement.clinker.png" +hash = "0be2a28766e272e6c9be10f45baca44147b13b5345a6ea98d22d16326011ffdb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cement.dust.png" +hash = "467e4bb2a794c9fb856a1c7d8e8c27497329fad6fe8cb1a808838df86c1811a5" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/chip.insulated_silicon.png" +hash = "72c1a8b965d38485bd077e043655df4e510dd844f1ae81f7d94247a22f18d6f1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/chip.insulated_silicon_germanium.png" +hash = "1b31ae6632cfd9a31a92d8d2c39738b69f0dc00e8c54dbd8d4e0bcd6f5701d66" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/chip.n_doped_silicon.png" +hash = "9f0a865d0d3491dd26b8f67f22fc189904550c53881c8d012176c84c72d99892" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/chip.silicon_dioxide.png" +hash = "7b5ce656de3b21b069c89e708fe9c2ffc5d93790bdf21c07f37cb2ea3fa19221" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/chunk.magnetite.png" +hash = "8658d1dbc8a955329528a5cb1892e6187fc1ad0cb44cf26ab58857c86f011232" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.cosmic_assembly.png" +hash = "a631dd76c7d75ed7057c36c6bc2fecc9ebe8e68f285db05da991aee76f94c788" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.cosmic_computer.png" +hash = "0cec6e22bc4034abd39b8e45d746321f3a4575567692d56905647bc1faa39513" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.cosmic_mainframe.png" +hash = "2945cf06a4e1b9b3b506fbca1f59c9cd57c8ca3557d5da520bca0eb034e0574d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.cosmic_processor.png" +hash = "11cc88f53e0350624aa85a9e2e82e340e791e1b685b48835d695b477ab89c00f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.gooware_assembly.png" +hash = "ca2ba7346e208cd5c693e1e8c67e742687f36cb37960dc3495d917eb6df6294a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.gooware_computer.png" +hash = "f9af54cd7a63e0fffdf21e505792beef2e03284c6bf558aa47eee4d07dd57b9d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.gooware_mainframe.png" +hash = "455ab566ea2f42dbdbc26ed5d333d788c2ca4ac216cf56c94823008ff31c3280" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.gooware_processor.png" +hash = "ae8d5afe0807f3733374ba1cb351201ab46d3953a32238c68c781c5e61fc6725" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.optical_assembly.png" +hash = "edb7dfd34db4f363fc31aad329587f84417a1f857e0a4e446130adaa654ed525" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.optical_computer.png" +hash = "f50f68b194351465395126a17a8237a702a4b05736bbc4ac3e8e59b96797c9d8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.optical_mainframe.png" +hash = "dd54151d08386d30dabc6523a2abe22b1534206de881e8742129cd68782aee5c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.optical_processor.png" +hash = "1648c19b3ce501250a2a4e56e6629df43e92510e36bc7d1e14481f0181448648" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.spintronic_assembly.png" +hash = "9cbe4660610bac8c4429ae9d9c10962410ab14fa8baf164d568a9f5b79ac3b89" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.spintronic_computer.png" +hash = "b6554cfe2c7f3f1be0121e2ed3eae8c63910c9b071d5f72a47af6556428f56a4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.spintronic_mainframe.png" +hash = "ff7e1e456ef828693224a4c8e6d0cbc91dfee84eab0cf5f7c2248e5d35d2f46a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.spintronic_processor.png" +hash = "88e8d4cda9c666b84cbf04749e8cb938c0b8f2fa64aa16ccc78b91ecf815e6ba" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_assembly.png" +hash = "381959b263bc3460fda3c4cfad7b037f50169402caa7aff674acbd78c40dd102" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_assembly.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_computer.png" +hash = "051117c0eb508eb28218cb4106f3ef58724ff71102ff60353c744906a45e028f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_computer.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_mainframe.png" +hash = "b8ab9f1e065444cdc8b8dda167d6d89d575f96d11bb790d9293d373521a48999" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_mainframe.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_processor.png" +hash = "5ed4c848cfc6eb776b9b8a83591a40903a4a8af1ae36730474685f66a6822eaa" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.supracausal_processor.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.ev.png" +hash = "d9ef691e3297edee1f7bfe5ba5149b69f90d4a31fb86d016456c6054a03583de" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.hv.png" +hash = "23e3ef45149f453c24224baae1a66b7ac5dd64a10c2a68fe919df999c1b34bd7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.iv.png" +hash = "8aaedd18bcfd074a5fdd8595420a775bba845b7a274234e57b8e2dab6760367a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.luv.png" +hash = "4b8c885a3844999742bce434de28dd34454ed943ea204b017898d848d9e1455f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.lv.png" +hash = "3054d94e48033ca382ea83ce65e38b29b8b7ffdc6b69c67eefec4e1c51a95291" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.max.png" +hash = "e3ce7a2e67b88bc6c7dcc46241eb6d47838278ac3f0d5bd46db7ef6aca10055b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.max.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.mv.png" +hash = "0b667b416185a2b43686e1522c9c268d937339f35600045b96963d221390fd31" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.opv.png" +hash = "f9af90aa3976e5a379a732c2dda1a436741e842727cc35f0e28a871aad2e33af" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.opv.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uev.png" +hash = "852c0520282e5d5b64c05b1c24321fbd58758c9101722d3b4376d3910e18c12c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uhv.png" +hash = "45309a48368f2b8148c5940ef665b5473750d5cd76b02570c07b115bd5b45817" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uiv.png" +hash = "2863905f5a1f7ecac12051aaca156c3f033eef02f01a11ee289ceb62386e649e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uiv.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.ulv.png" +hash = "2d4ba6831f583fae991c83f71cd5ea4ee15c3cedabdf58edbf42cd1bd4d0a543" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uv.png" +hash = "092c7410a67438a150d463e9dfd523cb28f63806ebe6569f0f152005b4bfdde9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uxv.png" +hash = "0082522081095178aabd836fc4b6cce15b8f5d5685e81c42c4806fe01e5d1e14" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.uxv.png.mcmeta" +hash = "c9a6dfd7e9fdcca5a1c254f0caab3d127f0fdf42e35a886c08c673c55d0a8d46" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/circuit.suprachronal.zpm.png" +hash = "d8b577919fe2cb5442dda3ee07e1642eb6a25a64e1a5e56757686d73a9fab204" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/copra.png" +hash = "bfd97e5b208270ccff9b9fdf9b84a97f96f56997205142d9121905d02d5565ce" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/cracking_catalyst.png" +hash = "5be3701d277c50dc2a4fe7167a5971dbc346a13224125446b283a1386d9b62e3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/crucible.boron.nitride.png" +hash = "afcc431b59d38fa3cbda7c8a77dc386de10ff9b58fd2cb8a046500fce55ce0d5" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/crucible.graphite.png" +hash = "26bed113d6570ac6b171aec9b2abbd4e64132b8669fd8e694a39786a9db34406" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/crucible.quartz.png" +hash = "aec4a06309206d1e36b22e237804534cad9f07e83d50598af715f715e592a531" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/drone.lv.png" +hash = "85d8a6b8eaff92d2505134bb3e9f0de30a4fff6f696cd087a4c2c29df1f22486" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/electrolyte_paper.png" +hash = "966f825e155823bc9de1d8cf2722d90e80f26c240e7bfb300f980e500dd416d2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/epoxy_lamina.png" +hash = "3d55608e5a14585088e156f75402960331b8b124c3050bef88fb2ca1a176297b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.cpu.png" +hash = "2c0da6a4e803a14c925e2cf6d6a0f5d67b73eba9cc5db044a76b8b1a061b18dc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.ic.png" +hash = "ef10fa65f431a39f80cf49d4b7d7ab16f7714eaa3558fa4566ab9aa4a1d4e561" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.lpic.png" +hash = "c3dc9b2156d65007a30baffb84fe49852e172b0449c66888ddc8ac456ecef74d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.polysilicon.png" +hash = "f8eb994cacfc92a2ae9edac16de773bf5adcae81438e92dd35b433d62d54ba82" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.ram.png" +hash = "6e73eeb793545f242898f5db75a6ec43ac765b5bb2078034105beaba6e131639" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.silicon_dioxide.png" +hash = "d859674688afdecabf8daac4742674cad0f6ddad625df58feb9bc989d717f05f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.silicon_nitride.png" +hash = "a7615a3ad8a8511f5736021593f04f57d3890fd980d2e43d9da9ae5790e03d43" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/etched.ulpic.png" +hash = "cb5366396e2479e150a99002886f90b04353e5b3a3785770847e19532669c9a2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/ferroelectric_ceramic_foil.png" +hash = "86842481080a9400e1034fe8c4d0074d84a2a797c047a861ee63e0e726e28e07" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/fluorescent_light.png" +hash = "f2f837b0960b8289170d41914078c0f35e89224cb5f2631793e0aa9a879689e3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/fuse.hv.png" +hash = "c6e7a4db9341c936858fd9fd22cd7b5755fe9d16606015d4d6649f58e1ee5133" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/fused_quartz.png" +hash = "bc941a6ec5863589acb2976685075ee7acd0ca34c50f99e9b9ba371bf9e99337" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/glass_fibers.png" +hash = "183d3b20164c03fe23d075ee1b9c8b1daa2b0387929d4f9fc678a303117face8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/graphite_electrode.png" +hash = "13579d5d5da186030508965f415db493a137bc467b4eae45646a116e718d2a1a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/gun.barrel.steel.png" +hash = "ba701acaaf5ce0de8338aa9e228eab31f69db3c82bb775e6b9af7e38fc427729" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/halogen_light.png" +hash = "a68b989fc896e6a824b4904cd493ba3a6bffb9288ffcc9800d7059931411c67b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/heat_sink.png" +hash = "9f6fc74eb5f30401aa4c8695d829bf03d675243a57fdc9eccd0d42537160a873" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/hepa_filter.png" +hash = "73482b20f46b6fe65db8248a0cf953a4a62fbe313e24bd737c682654a665ed8f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/hot.cement.clinker.png" +hash = "6e1162fc475e1db0f3b4d35f9211d1d22afcc3b38b2b3476ca8961f654a29d35" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/hot_iron_rod.png" +hash = "b1731d6e43fa06be097cc4efadbfd0e39b7a9b32f0374a063cd038084fff8d65" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/hydrocracking_catalyst.png" +hash = "53d53f70c5ec97ac56b333a5aa45be511a89fe7c7f488ce3f1e1025fe61cf129" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/incandescent_light.png" +hash = "8ca03ef71b3aa5d65a40314caec915e5c43f76de2bbc15d8a9885f5fbef303df" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/laminated.board.phenolic.png" +hash = "093ab188227ae45d3fcf8b87222bc7fd18eded3f7fdf7d4ae96176f093df78bd" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/leached_red_mud_slag.png" +hash = "4d8f61c4ef4c418a17d4ba5870eca6ba62b31cf9a32acc99a95748ffce504bce" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/led_light.png" +hash = "9bf4f8078f4da45b925fa7e9eb871979e84f2f067574c78ecbf7f463142bf408" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/limestone.dust.png" +hash = "953a1675805e754fd254de1815f688920449359773b7e450634a71feb095d2bd" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/malted_grain.png" +hash = "737ca82879b38f81bb517d16f6b580a2dcb32af8bf4faf7bd55d628462e0056c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/manganized_tantalum_chip.png" +hash = "46cae1545e5f0c09fc1f49f390a3265aff250de1d825087a4e6ba551a27bbeec" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.advanced.png" +hash = "e174adef395d1737bfb19a465c2025d75654c56d0376e545997b3fd7196cc2a0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.blank.png" +hash = "bc941a6ec5863589acb2976685075ee7acd0ca34c50f99e9b9ba371bf9e99337" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.cpu.png" +hash = "4dc6c5f8bfe88a30583c4dad2e1de123638537eb66ac1cbefa02a7f64c8837c2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.ic.png" +hash = "3ca15c27826fb34d38485405901488601de4309ab8dc74c8d10a26ecef072650" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.lpic.png" +hash = "f03273595455a70d2f8560e78381fc1e168fc852b9bb1982e5e8d86709de6c66" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.nand.png" +hash = "012164df4970a83d235c2b846e0fa7955abc607546b5671196f509bea1a379bc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.nor.png" +hash = "57c4ec297182e3b215fb8a78a6b30efff146593589b4a10f97dcdc7ca03c375f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.pcb.png" +hash = "77e964fb169a48b6ed815ee5055ce3ca6ae6be0afe5603b0b866883c2aa95100" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.ram.png" +hash = "0d82eb598e0e9c4e5e060365b720a34cde55722ea17e20e0d7a7de50b18957e0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mask.ulpic.png" +hash = "8ae57ac38c64e6aedef8d38fbd901eaa23c248fad2c608d132d788bcde6d4fd7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/metallized_plastic_film.png" +hash = "43816fb87b41168e55d5f3de64aab2bad79cf857b224f014a8b58db10eac99ea" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/metallized_plastic_square.png" +hash = "36e8c672b7a8927f4ea79ccb33bfa1489235ec8fe7c7c8467229684ef0fcbbb8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mineral_wool.png" +hash = "e0c5b37916a1c34f2e0abedc0e817773c5186c43a8b015fa1f278ac5cb17def8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mudbrick_mix.png" +hash = "b69cf2f4bbdb1f20d13025559d3176545bcdfe38441df0b5295dd6b4eb3ca991" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/mylar.png" +hash = "1d8ed7aef853bbc090cb686cea5c51fc924816c560f2417c514dfa5df2b630c7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/native_copper.png" +hash = "8a1e16cc18e2668b32b270d84903763d3f6181f899d62284aef37ba081ba7ad9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/op_amp.png" +hash = "073cb6beab4742c3b83633fe2d87810ffe1c27ff4dabf30dbb5e6cf10767b14c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/paraffin_wax.png" +hash = "5af7fd7be586f915fd10475bb39f573be10d00e2b72df1f723de8c966d8009c6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/pattern.memory.png" +hash = "ff8ab14da6f8967951325fc9a3ff505b4c283a9ed264cebdf829001cc9d1f897" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/pattern.memory.png.mcmeta" +hash = "fc304a5ea308edfcd6a6eba7823dadc20f1a2110171716cd4daa44b2570d8e65" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/pattern.processor.png" +hash = "77467725ee753a397a638e9d1d881560251f79d859be71f135dbd2d1f14e4eb6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/pattern.processor.png.mcmeta" +hash = "fc304a5ea308edfcd6a6eba7823dadc20f1a2110171716cd4daa44b2570d8e65" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.board.coated.png" +hash = "6f9506385dc5797b31db1809c84c4d7f93650e77bec451fbbbc857cf4e779af8" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.board.phenolic.png" +hash = "f232163aebfbdeea5b282faafa47e17b32ec2763a94f64c28daf38d4828eac65" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.board.plastic.png" +hash = "efc16e11f30073faa5fd565286a25a5b20d4029ac98b17c7c1bd35e9b0a41f6a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.cpu.png" +hash = "ea1e700609474bcb94d102716b86e283ac92d348f65e3ce7893d0396c417e640" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.ic.png" +hash = "dbe4fb242099eba83ae429462b18b6583a7a81bfdb1b65c9263b8807be36da3c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.lpic.png" +hash = "ac82cb221c87fa039e9cb119796d3cc92368b5b193b4644a43cb66f6b37c0ce3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.nand.png" +hash = "b9fd42f1f260981a3d20755303fc12809708c929453398e9efb8925c770266cb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.nor.png" +hash = "760331d46ce5567c0866ea814b2150008fd1f2457e9e6c358c588221022a58e6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.polysilicon.png" +hash = "10d8f60aa8bb02204340bd729c030c512a5c530539317438194d096ce56c2a18" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.ram.png" +hash = "0bd09cc425a15d21bf41d7c1218b74f2610e88bedd60353945a5856d84cd1a11" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.silicon_dioxide.png" +hash = "d756e2449f42c6808a75bd5a10ec4812231f973aba5ae1f1a7bf5f51e2b3393d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.silicon_nitride.png" +hash = "cdfc608b8b49902bc7886b2ec54fc60e40026b040c009b90af1b7456630ba9fa" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned.ulpic.png" +hash = "6b17db7d610f0fbae04f09796b3fc71baf7b0ced7d9929bcc348e489c74a7eaa" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/patterned_thick_film_substrate_wafer.png" +hash = "a64dc4db3509ebc1eb152d53eca1076cf34f4f03214161d069d11a357a7938a1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/pitch_binder.png" +hash = "927014836e3231a855227bc682f6ca79b1c8812428b820c7e3d4da699723da5b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/plate.pattern.memory.png" +hash = "8ad816a29355c9ee167e2cda52bbb4db4c6c14b42f3b043d6836bdca6496fb0e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/plate.pattern.processor.png" +hash = "23c6d0add9cf1c93ba3ae7b5aaa056cb1037e69f7720275308d541908b593cf6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/protector_chip.png" +hash = "9d6ee66772219205e641433d597439b7796f468107d2f5869397f7cefe2b2513" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/raw_capacitor_roll.png" +hash = "133cb2860781c9360db22b9d183d8fb6319bc91ba6b546acf9d7952f6e379520" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/raw_ceramic_capacitor.png" +hash = "de0c132ba540910d4be66f920f2058fbb26cb2f92226f8ac4c92aa182fec2969" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/raw_diamond.png" +hash = "174d5def4cacbdf256266e8ffbef009e6ff961e33b14b00c71875fffa04f5553" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/raw_electrode.png" +hash = "1403989ea10a2d154009d74ebd0cd9cedec304916c883db22a51fb781cc513dd" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/raw_smd_capacitor.png" +hash = "b4787ccfc1f64165902ec9a9187049b1d1280c49003f68be695266417ca86f09" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/red_mud_slag.png" +hash = "1bb8a069f336152c8d569ad0e97fe4740c84b05b5755b0c05f80d175030db136" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.alluvial.png" +hash = "1002a3160ce6cfc03e74088802139dc80173bc76b3ecd4a2952bfc193519e76b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.blank.png" +hash = "a614dd2ae115d2470837e05ada94c243a6141eed0197adcc82732b66fb8180f5" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.hydrothermal.png" +hash = "9fd9c142fa928bc2182325250cdf2a0cf024bc960864a3817f35bfdcb5a546f7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.magmatic_hydrothermal.png" +hash = "9486169d68b040c46bcb2e3438a3fc5b0cb592fec11446950bc9d2467ded52c9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.metamorphic.png" +hash = "f99cc83403b4b1a278642898579ab5b27b74b9f2ab88d5bff0e17277eef24c2c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.orthomagmatic.png" +hash = "30749c71ee610f53672426f9429aaefb71d67c2afcc2fe2834665403b023deeb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rock.sedimentary.png" +hash = "67734df2f39d6cd149dabdc522a646aa5f837eded36381f1610512d036b356bc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rubylith.png" +hash = "bc0d01dc9661737d16879d14bf1f6f198347f3681db2ae28355812058cff49bd" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rubylith_film.png" +hash = "9926fec70affa026db3ba852fa08a2bdfefab9f2a21bbd15359d30e0540a0f8b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rydberg_atom_array.png" +hash = "452d29496e0ede182b3ee06fd13b1fc94e0531b84db5f9beadb39b5b87d1c70d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/rydberg_atom_array.png.mcmeta" +hash = "3c29912ce13abcb8ecf4b0d5b4112896036531b58d3ab3f68b869d23ca5b41e4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sand.dust.png" +hash = "56b008fda11b97d55bd4387ef48e40c4d76e5a7f51c0af62d0ec778f98957043" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.alumina.png" +hash = "4036d0e95ad4cd50dbbf881788111c788321a4475360ef19ae67cdd525e9fc52" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.beryllium_oxide.png" +hash = "90b395d6dabbb433d20ee008d1d5ef5153e6609ecbcc0a9f20949f51176a0ec9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.emerald.png" +hash = "dc8c21f14e5661334f84c15ec7b59dd328e82963d08f7b3e08069b4041862d6a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.gallium_arsenide.png" +hash = "3190321df1c5bd490b0cde68b6d5467eafcdb82f4e270ebd29f997321b56b307" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.lithium_niobate.png" +hash = "f55b7fabc6a7ffe106c18379bb708fb980ab3ef147abc90bca7597bfb5978203" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/seed_crystal.silicon.png" +hash = "50b7d9b6af8a3d62ee90333339ada5540bd33df9f22e3116d7972f7d842c88ac" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/shape.mold.crucible.png" +hash = "36f3b0c56a0817b23b2648029248062c1f9ea0c44deddec2c4a699477ca89b50" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/shape.mold.long_rod.png" +hash = "6d67fdbe7040243b867122db93076d120d1ca1c3f2260fbb29f13f7c660e0d7a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/shape.mold.ring.png" +hash = "fcb4236bd06db01c49b3ccd59d5d70b8d5a768a59f9f1719ebe0b3396d357f64" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/shape.mold.rod.png" +hash = "8c96dac8a5aa2431bc369815c2608ab85669bfbd14459b0f63c24274ca4e593f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/slaked_lime.png" +hash = "a3943f25a2c4972d12aa37437250786e61fbfb551d2250a24bacc9964bab739d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/spent_cracking_catalyst.png" +hash = "8ba9249728f1c79697c088e927b4e8fc6979ce542a5ecbb6a4e894d1af114b0b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/spinneret.png" +hash = "a9c14acb5d5ef4638314f544a714a620b374d54a4297c1c944b58002f85a7151" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.cadmium.png" +hash = "dd89775d463c78ef77af8dd6fddb2566695aee6b0bc8104cb5706535eded984c" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.hafnium.crude.png" +hash = "50b1b83eda97d9fda18bc117dd1d3b69e1487129f63799a48407b2eff0883b85" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.hafnium.png" +hash = "fe5fc2d8046832feac12b3df543092f7f5415fd48be31795f4856c721904d523" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.indium.png" +hash = "e67102441e17aef48a1782273b9ae783be9304e8114c3a3d6b4beeb3b8623df7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.platinum.png" +hash = "ae603536a788ed53b0f13ee18846697364a6fbb5b995b3d743db404ab30182e1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.titanium.crude.png" +hash = "812f50d768b42cd813373759207d8387eaab4857d6388d727694c3b930acb56d" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.titanium.png" +hash = "cee24e6c5edd25d1c8722555e4f56a69dac148143df22ce6ba4ca647091393c9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.zirconium.crude.png" +hash = "9cc1e6a069bf009eb18acdf4b6874299c269d318d311e05a0a614d531eae5cc2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sponge.zirconium.png" +hash = "a5353e017b56057cde25dbe1d4c6f762410a40cdb411b600271552f41c828bcf" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stacked_ceramic_capacitor.png" +hash = "4eec84327dca8a5a335d2c2e9c34288f22c52da9152aa81c44730d45f703ba81" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/steam.motor.png" +hash = "d16dfe320527e276d60e8365ad290b00201378ace229733e2884fca08f408588" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/steam.piston.png" +hash = "4fb5832de621cae92a142048f8500f772e93828b0bd62097b0ebb96ed86c1158" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/steam.pump.png" +hash = "a8fd224a26871af654d99e1c141221178232329842e60695aaf77e3eff097ad3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stem.cotton.png" +hash = "c20e4dc064d0252462d70a82a6dd3dead85a76547029cdf352cc44fbd6fea157" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.cpu.png" +hash = "939ca97d6c715b58e93c6a677bb4b1b74f73e5e68364370a31019e59e05c6887" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.ic.png" +hash = "e9a48fa71dfdd4ccbb33d4151f7952fe2a9997516ebfd53cc0015bbd909074bf" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.lpic.png" +hash = "a2a57c71ef465fd628bcab4d0c9bd4d1718bdbf5eb8d84108885a06080725c3a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.pcb.png" +hash = "9592d91e60a003338f93c7a367ae2e84cd092d3c83812a87ae87ab8fc19726bc" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.png" +hash = "b85815f9b1556be78391053b430db33f96fb1428d29ff907e28766c14322cde0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.ram.png" +hash = "86517041817a870ef97f9de29511ec7911565bb4e4a46fba27038758d2b4f9ab" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/stencil.ulpic.png" +hash = "90ae9010ee055ee369e824d81b4b90035daf88f673da4b81f4f207364b9131a4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/storage.segment.png" +hash = "75d9c065a33aae8b8c723beaed2666b9da6d7b37a17f39a513b6c064248e81e6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/sugar_cane_dust.png" +hash = "c78c006a493aacb750ac0d79ab6ab349882a8ed30244585ccbd20f2753391b0e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tantalum_chip.png" +hash = "7395caa6a12035fd6341dc6813d28534d6bfae46e1dbb213525ea90860435f30" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/thick_film_resistor_wafer.png" +hash = "fbb75977bc9bef8b6b03421c0592ad61546b5af4593b94f27405a177045e7db5" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/thick_film_substrate_wafer.png" +hash = "e10b41673c2c0f1555e820f640ff0c8d346618163c6a7a464ac5eb8f251e6977" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tubemagnesiumdiboride.png" +hash = "57142ae1a89db0082ea388a827f1576d8e06dc02ca39ed9c66949a468ecc73ad" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tubemercurybariumcalciumcuprate.png" +hash = "846a935543c04bd506eb21bf7bc67f74346bc8bf3e9c8f71b73be3b1cbf2e4c4" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tubesamariumironarsenicoxide.png" +hash = "bdc0a5c68725568b3b54b3054774e86567bbc75595c4dd1ad49d9a6c8aa69745" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tunnelbore.axle.png" +hash = "6bd2b61a483f7882d20b8780f04419d5d9fe13717757e21728027a83e2c6074f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tunnelbore.drillhead.png" +hash = "ed5a90dca0ac184d811568c4d30892bf8a19c2587856ffc53a710b51f46f63fb" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/tunnelbore.engine.png" +hash = "393d02f31012666e857a9a21c8adaf33f463204624453692dad52f337e6b366f" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/turbojet.small.png" +hash = "a7c36e47a44f83cd5aa70e65de4f298adb7fd9ba5bf966a64092083548ba1f97" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/unrefined_boule.gallium_arsenide.png" +hash = "70a2cae217f206ee60e8a16412db0ba22381a010a3573306bed02278ff5ac7b9" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/unrefined_boule.silicon.png" +hash = "32d48613c6cb5e3f0e7b65b199fffa7b2a2bf3ef8553a51dc019f4b7366612a2" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/vacuum_tube_components.png" +hash = "d6a8bffd043a03816bd5fdacc5039c718ee2bd311c2b34e23d85ae7176446441" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/voltage_regulator.hv.png" +hash = "be6dd71a3a5a33af94bf37e2416635f5f743ccefca8cc1e56feaeb6d2fb2b0f3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/voltage_regulator.hv.unsealed.png" +hash = "7d05827c1c4b047275ea53fe9377d978e029b186a703ac34d0d446660b13286e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/voltage_regulator.mv.png" +hash = "c4f90983dac57919396f2b3c73b8f813976ed631302c30cbb82109aa010723c3" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/voltaic_pile.png" +hash = "fe56972edecc0a35ea438a0da1db7dcf2e5af16ba46ee97dbde89396e7d2972e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/vt_slag.png" +hash = "aad856c96635c1a660845f4d0e0dbdfa3d8e9c0370cfd1a2d68c84ff49c6eb6e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/vti_rich_pig_iron.png" +hash = "c589afe35d771c231292fd7bbf85ade7a46f4e2f95ca0c263c6b75c26353ace6" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.alumina.png" +hash = "870395ae43cf979a1a1000324e83268daede486999eb17d4957d66c74e661234" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.beryllium_oxide.png" +hash = "72be503f4f98f159e255a6b2ba8378c0ffc277a86d54b22d314ecba5776aa1ef" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.doped.polysilicon.png" +hash = "c410b3cf59c69af437c9d47bb24b6408a2040ab48f9a8e5cca65682f5ff532f1" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.doped.silicon.png" +hash = "18ffb454a90cde45d04ecdcc76a4a67d53d4f34eafd9287e5ac73005dbd4706e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.doped.silicon_dioxide.png" +hash = "2c0f16a8444d853e737425318dd47f4f62110e03613b868868a5a28c0fdbc8ba" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.gallium_arsenide.png" +hash = "b6932afb756d5f12f895343a7fee183a84231e0dbce77c08a48a1b709efa262e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.insulated_silicon.png" +hash = "9143689da9ff954f9dda058f4ac09a8865c181c5f10d8f3ef3508dd934909c3e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.insulated_silicon_germanium.png" +hash = "aa5346b189e302f492194602037f5af0c57d259e0198b440279f07586be69443" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.n_doped.silicon.png" +hash = "b7e9e2b8fc2853589e2cb5093cbe23a8924c10aebf4076a6b55884b55a325a11" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.nickel.png" +hash = "2f8a57b1111be84b309fa9585913ad402308e2a778f3e687ad405ea11378f22a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.pattern.memory.png" +hash = "a1207ab4c8234bc31f04e5db0311fe1a91898aa89389e023cbdf25dfa9548eac" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.pattern.processor.png" +hash = "dac0726accb87c762f031522a48175739d8d9022f72fb714998c1b73333e1e2a" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.polysilicon.png" +hash = "62d4eab4090dfc9b8bf268200de79f120505a583ed4cac642708ee4fad3ec727" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.raw.silicon.png" +hash = "81f7cac08e851c6bf6e3debe645950540e59310a8c4f7092becc1a931ba10aff" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.silicon_dioxide.png" +hash = "69a5f9f3c47ca3e173721e1c4a05efb8c576fbf5807a7ea46757d6d1278e3dbe" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.silicon_germanium.png" +hash = "700d2a7f008a564878e1dd7e8f63253d2625851a3c6d155b8e8c6e6fadc2cee7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.silicon_nitride.png" +hash = "e83fe4ce61a91d04a0b741288707aaeaa3e989540a625ad91b1bd7324034b9d7" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wafer.treated.silicon.png" +hash = "83265c6eff44cb4a64d30df6cea839af275e70134630ab134731fe1d69dd654b" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/washed_rotten_flesh.png" +hash = "b2b2f3d2ce04d947cec0e6d8c3b0965cff1452c97ce9e72aa048e9ab6c4ec5e0" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wing.small.png" +hash = "ea661f299213b5c043525e6b6427becf920e7cfdc36353bcc48dc4ccd00f5805" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/wing_panel.fiber_reinforced_epoxy.png" +hash = "368ace85c74e6e227df197641287418130a1401525ece5945027a4a93ae8e356" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/zener_diode.png" +hash = "b67309c38291974ed23c9912b92594a5fe86e076e92cbc1aebf1b6aea82e1178" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/zeolite_membrane.png" +hash = "95df880d00d72e9456e91a5fc566f2d2d76508ef7cdb1661c82e2c05e30eae8e" + +[[files]] +file = "resources/gregtech/textures/items/metaitems/zeolite_membrane_support.png" +hash = "0d98eec87680f27070d3f2317ab2afe85201f45026ac7c0bf942a9add1d5c8a2" + +[[files]] +file = "resources/langfiles/lang/de_de.lang" +hash = "71300841dd66d750a7a468ed577c08d4e78e03700f34adc159d91221d5929300" + +[[files]] +file = "resources/langfiles/lang/en_pt.lang" +hash = "e88cbbdf24ecbcbf63eb608e6d049deee9ebb5eabacb680cfc3f1d7d92a80921" + +[[files]] +file = "resources/langfiles/lang/en_us.lang" +hash = "9e9b6a207b7a630b98206f9adfe320bc626d4a27df0eed7077a59d8831bd87cc" + +[[files]] +file = "resources/langfiles/lang/pl_pl.lang" +hash = "e90dc85576dad0f99662b4cc294889122866e219d4cbd517aceddc2529971f79" + +[[files]] +file = "resources/langfiles/lang/ru_RU.lang" +hash = "815c4223e64814ef2a216242d2c1bac108275d4c35f332e5def79c1e23e29d3a" + +[[files]] +file = "resources/langfiles/lang/zh_cn.lang" +hash = "a74ea4d3ec157921dbf60a4f52b7c8b66e38132631f1f5ad407326941cf34015" + +[[files]] +file = "resources/minecraft/sounds/music/menu/menu1.ogg" +hash = "e7c159057ffceb60d0e504824a9c9d7b7ae8906e12b7788cac9e5fd815d11832" + +[[files]] +file = "resources/minecraft/sounds/music/menu/menu2.ogg" +hash = "e7c159057ffceb60d0e504824a9c9d7b7ae8906e12b7788cac9e5fd815d11832" + +[[files]] +file = "resources/minecraft/sounds/music/menu/menu3.ogg" +hash = "504cb3eae366292f3536b1bcb9231f8ecfecd1a0cdde7976aaebfd4a91b38de2" + +[[files]] +file = "resources/minecraft/sounds/music/menu/menu4.ogg" +hash = "504cb3eae366292f3536b1bcb9231f8ecfecd1a0cdde7976aaebfd4a91b38de2" + +[[files]] +file = "resources/minecraft/textures/blocks/magma.png" +hash = "55630a3f4e851785b42e2f34f05a8917ecd44583da656e3959d74b1311be8b8f" + +[[files]] +file = "resources/minecraft/textures/blocks/magma.png.mcmeta" +hash = "aaf0ed9c58bc8aed21cd08c751722c0262242919da2014ec484f3ddaa96e88c5" + +[[files]] +file = "resources/minecraft/textures/blocks/netherrack.png" +hash = "0f83a7303b39f3d563d65224cd1f95d6297784c7ec1459f97e8cf50f2f4a017c" + +[[files]] +file = "resources/minecraft/textures/blocks/soul_sand.png" +hash = "8a46d19c6b4e61f66a865ee263bedd34a0063e29f57dda5569e37b3c3611a2dd" + +[[files]] +file = "resources/minecraft/textures/gui/container/villager.png" +hash = "b55aa18b03252bf27dce610d88263d4546679e3854a2e4674819daf640ef8cea" + +[[files]] +file = "resources/minecraft/textures/gui/widgets.png" +hash = "ede558fa6ca9631859445b897234ac0a00b7a42af9af7af023d3b819f8be1162" + +[[files]] +file = "resources/pack.mcmeta" +hash = "17efacfd12264d1a41376fd3a4ba8fe9ccf20e78612f187fc45ce48307063d0d" + +[[files]] +file = "resources/pyrotech/blockstates/anvil_granite.json" +hash = "a8d026b63ac942048eac7d6b01e41aba01ea2a3cbb65c1b3ce330b81be079d23" + +[[files]] +file = "resources/pyrotech/models/block/anvil.json" +hash = "2b753d2a4b8a1a773cbedf1ea27bc16ce976b1df734555643bdf939cecb0725d" + +[[files]] +file = "resources/pyrotech/textures/blocks/anvil_stone_damaged_a.png" +hash = "d1aad64fa28dd19f28db0954848f7dea0394fd94c118c99fcd15e63e7fbe59cc" + +[[files]] +file = "resources/pyrotech/textures/blocks/anvil_stone_damaged_b.png" +hash = "9519384084a6d6cbec44757f7f75a93c0a0f43a5327fd8989d2b9f20085d7944" + +[[files]] +file = "resources/pyrotech/textures/blocks/anvil_stone_damaged_c.png" +hash = "49ba0043b43893ed480d3c6b92ef5545da5f01d1db40e561013eacc1bad002ea" + +[[files]] +file = "resources/pyrotech/textures/blocks/cobblestone_andesite.png" +hash = "9c47ab2e19e419f57b6b80dc0abec194bab7ee1b4f3d21371295e1644abbcb63" + +[[files]] +file = "resources/pyrotech/textures/blocks/cobblestone_diorite.png" +hash = "c02e1af2b39cba00ac8ad858224e63446e86cd3fca434c52b7eac3f39b9185be" + +[[files]] +file = "resources/pyrotech/textures/blocks/cobblestone_granite.png" +hash = "0f49550420e9dce1c734c86b8b96503cb35857ad34abdd14cb1811c73b37b32d" + +[[files]] +file = "resources/pyrotech/textures/items/straw.png" +hash = "e55af561820509a37c7799313420e62f18bf766825dbf1804f1865dd09a75964" + +[[files]] +file = "resources/qmd/textures/particles/antialpha.png" +hash = "bc5695edc78f89641c034c62364e3c84ea097e84d320370c0d03d8a3a425610b" + +[[files]] +file = "resources/qmd/textures/particles/antibottom_quark.png" +hash = "51f7d04dcd4b59b315801ead96728ae97ecaf5e6139832aa7a7c18e7ad9194e0" + +[[files]] +file = "resources/qmd/textures/particles/anticharm_quark.png" +hash = "bc4b54047a6f97842cc442f733a170bfc44988afbc88fb2fce6359b7f09a096c" + +[[files]] +file = "resources/qmd/textures/particles/antidelta_minus.png" +hash = "9202a852cba651caa41fcf0f522bb7faa311f9be9d4e31c59bede99936ffd267" + +[[files]] +file = "resources/qmd/textures/particles/antidelta_plus_plus.png" +hash = "fe8b293207a99f4222c10c1338253a4b3fde3943c969717c12fa621efb421ebb" + +[[files]] +file = "resources/qmd/textures/particles/antidown_quark.png" +hash = "13dee12a6b91b70c55d48bd2aa98091934b8bd493def7b534b8c7e4a400ac21e" + +[[files]] +file = "resources/qmd/textures/particles/antihelion.png" +hash = "2ee11e542dccdb4098b12893f298426dac87632936582310d855d9d5a039285f" + +[[files]] +file = "resources/qmd/textures/particles/antikaon_naught.png" +hash = "c07ae4b0211ee7da7f2aef2a2112fdd935487c458e2ea8c225f378a60057dcb8" + +[[files]] +file = "resources/qmd/textures/particles/antimuon.png" +hash = "1839a80e63f4a27ce6f6807c54295461a1d25122ef12d659cd42f8a7dc2a7c8b" + +[[files]] +file = "resources/qmd/textures/particles/antineutron.png" +hash = "ca62fbc47fd873db094701fc1287c6d87a9645f7dca26e5149ea8b2668497c27" + +[[files]] +file = "resources/qmd/textures/particles/antiproton.png" +hash = "5ea732f8e1335eb2869d49b1f9ed208a90c93cb38ef03d91c4f5959210f7decd" + +[[files]] +file = "resources/qmd/textures/particles/antisigma_minus.png" +hash = "3a4239744247e5e9ca3f05e48a920372f4053d2ba1a2b3fe45ef6ebabd0d23b0" + +[[files]] +file = "resources/qmd/textures/particles/antisigma_plus.png" +hash = "1f0cd4279c6dfbda09e9a854d73d4143056f7565ba47a9006402befcb7359c00" + +[[files]] +file = "resources/qmd/textures/particles/antisigma_quark.png" +hash = "53332d3170cb0d56e75c7a8f4d1ac149b3d2400ea85caef8dd51c4244c9ec361" + +[[files]] +file = "resources/qmd/textures/particles/antistrange_quark.png" +hash = "b636301ac165d97d13a98756eb508fb0bebffe0b55f25ff75b0908014f1f45c6" + +[[files]] +file = "resources/qmd/textures/particles/antitau.png" +hash = "0197979e35da11668bb79adb7b6048b06feaffc2558f46ad3e732a62c3f1da3d" + +[[files]] +file = "resources/qmd/textures/particles/antitop_quark.png" +hash = "5a2ed026d83d885809ff26880769f4172a589a7aa018d193e2df76322f79b87c" + +[[files]] +file = "resources/qmd/textures/particles/antitriton.png" +hash = "efbba63293a116613ddd01e69fd944b84713441ffc60c4822ba99dca7df333d2" + +[[files]] +file = "resources/qmd/textures/particles/antiup_quark.png" +hash = "b80a77041235dcd00772b844b9c5fc161c6aa3bed88c23e0fb970ec97614967c" + +[[files]] +file = "resources/qmd/textures/particles/boron_ion.png" +hash = "520db2ec1b108b970fdeee474e2b7e80c58092d24ae72723ad6a0f6696bdd002" + +[[files]] +file = "resources/qmd/textures/particles/bottom_eta.png" +hash = "6fccb0051bf072d3eeaaabd5ee2580c0d7d550ddc96308b094852d2b7507b379" + +[[files]] +file = "resources/qmd/textures/particles/bottom_quark.png" +hash = "0b2184a32def7029c190ba88b492d04f64f54f0102b0ddf7ef8acdafd288764e" + +[[files]] +file = "resources/qmd/textures/particles/charm_quark.png" +hash = "c47ebae789d3e41064427cd43ea4c2dca03176f3c11eb2600a51810a43f18084" + +[[files]] +file = "resources/qmd/textures/particles/charmed_eta.png" +hash = "0b8a1d60d1380c33aeb2922ca21d18eea000f0f168cdeb2dc0b2f00f37318b4f" + +[[files]] +file = "resources/qmd/textures/particles/delta_minus.png" +hash = "8d8bc828a39fc6968753eea3c8cfc370db05d84fe95e75dc8f9260cf161945eb" + +[[files]] +file = "resources/qmd/textures/particles/delta_plus_plus.png" +hash = "d591d58d71b73e4907741549db7cf840678df1666570e079e8311c2275dd6513" + +[[files]] +file = "resources/qmd/textures/particles/down_quark.png" +hash = "c73f6becd3522c4946a59510e46ee7d934e6a9b02fa0f28293ff13c269391588" + +[[files]] +file = "resources/qmd/textures/particles/electron.png" +hash = "0835d96ccc96cb0b9a4e69e1172e0fa34694049c442bcccf0bca9d1cb498a1f1" + +[[files]] +file = "resources/qmd/textures/particles/electron_antineutrino.png" +hash = "c0cea60b629056a4cd6af41c2aa20e37577d9f84c896875b2ed397fa3e6244d1" + +[[files]] +file = "resources/qmd/textures/particles/electron_neutrino.png" +hash = "fb114bbbecb86b026f3654938c8944c7a2b0e7f43e3b6d75ae3295b9676b74b7" + +[[files]] +file = "resources/qmd/textures/particles/eta.png" +hash = "44a76cefde81bf35f13ef16668101775ca298b0e4fc83a6a02ce127cb9a60ec5" + +[[files]] +file = "resources/qmd/textures/particles/eta_prime.png" +hash = "df256b691c5b41fb40aba8b1f70870c801607d9f719d1bc1d162315f1c770674" + +[[files]] +file = "resources/qmd/textures/particles/gluon.png" +hash = "2e8d13e8a1b87160c19942cd10abf8af3c919efd816ba2c65bf4e939f4bd4894" + +[[files]] +file = "resources/qmd/textures/particles/helion.png" +hash = "38608316fe3538059e9bd771880bfa2e95c7228f866508d1180bb2ad7cc5acb0" + +[[files]] +file = "resources/qmd/textures/particles/higgs_boson.png" +hash = "bc6e2001da4369442e480b6fbfb030a0846b8b2b0300a5ed34b8b378b3a05408" + +[[files]] +file = "resources/qmd/textures/particles/kaon_minus.png" +hash = "ad10eb0eea10b0f19216ddc3c263d2258ab6b0c11edbe62e33902e839fdfb6b4" + +[[files]] +file = "resources/qmd/textures/particles/kaon_naught.png" +hash = "307d9658286ed07e20fca4dc5e45ba693a5857bf75820358ddf35b483041813c" + +[[files]] +file = "resources/qmd/textures/particles/kaon_plus.png" +hash = "d2c98bf78db9d0144b22c9ccdbb7b5a66d9630914026928a4c37f725de3df804" + +[[files]] +file = "resources/qmd/textures/particles/muon.png" +hash = "3bee8ff378a85e52d56582ff6ff68c964e234014626abed1bdf14bef35374342" + +[[files]] +file = "resources/qmd/textures/particles/muon_antineutrino.png" +hash = "52d8a75ed23b2554428902affc14896bf1f059405d688517380da0462c248a47" + +[[files]] +file = "resources/qmd/textures/particles/muon_neutrino.png" +hash = "e28ea742dbcfb09a629501add0a42bcb7506ea279a594d34b147c264c52e9a36" + +[[files]] +file = "resources/qmd/textures/particles/neutron.png" +hash = "5ace1e4c799d1d2374c300873616688f05d01464cf1d94ddc0bcc83cc4a8bd65" + +[[files]] +file = "resources/qmd/textures/particles/photon.png" +hash = "5ced6537409173e3be50ca053ecdbeda3fdcf57ebcf1f9ca1bcf72ba05d0a74a" + +[[files]] +file = "resources/qmd/textures/particles/pion_minus.png" +hash = "a83e6aeef9e6c39af4616992eb827069264763717f9ff8e9b5c5765b86413359" + +[[files]] +file = "resources/qmd/textures/particles/pion_naught.png" +hash = "ef51019bb068813721ce652915c5ea489b7bb954a87c2a6c8b70efbf1781ebbd" + +[[files]] +file = "resources/qmd/textures/particles/pion_plus.png" +hash = "3cc30174f2088bef05332134dd5efc6c304d1db0d7cbcffe33ff67eb36cade73" + +[[files]] +file = "resources/qmd/textures/particles/positron.png" +hash = "ea7c62847ae99e80b885b2ccc13f678d78ff8d6eef3af2d20ebda632216d93b8" + +[[files]] +file = "resources/qmd/textures/particles/proton.png" +hash = "735efb66ed7cd7007816144891acd84aec03964a8eda94a0e87ca09192c4f75d" + +[[files]] +file = "resources/qmd/textures/particles/sigma_minus.png" +hash = "c02c136c40fbdff28c27147a41ad9b640bfa33bf8888f6b6b3606bf0ecc745ab" + +[[files]] +file = "resources/qmd/textures/particles/sigma_naught.png" +hash = "e828045b30e71e9392f2bfab676a8d2957cdd86acd93b59d78103489c6e55fb4" + +[[files]] +file = "resources/qmd/textures/particles/sigma_plus.png" +hash = "f1304b1e41383e962388eae40d59b241f9bdd7e39079349776996e1ec1ddfbd9" + +[[files]] +file = "resources/qmd/textures/particles/strange_quark.png" +hash = "cbe4ca05688d8dcc7d7f02cd64c79ef8b8904f58a940638203690dd77e565d23" + +[[files]] +file = "resources/qmd/textures/particles/tau.png" +hash = "6f3e1ce144a4d015b64c610dac5e203c18ba2eeafd238cf46cae54b88d3c69d5" + +[[files]] +file = "resources/qmd/textures/particles/tau_antineutrino.png" +hash = "54fbaa8996cbbfa840c2e38698c0fee853d86aa02f94da57048e99e8d6994fb4" + +[[files]] +file = "resources/qmd/textures/particles/tau_neutrino.png" +hash = "9aa22b8c76685df1253a3f45b0e0e523d9d93265d1294e8db9e7a687e7258a1e" + +[[files]] +file = "resources/qmd/textures/particles/top_quark.png" +hash = "b37f2fd43cd193ffa590b25c3960e11d1095b4e50a49239c2eb83b743b480f91" + +[[files]] +file = "resources/qmd/textures/particles/triton.png" +hash = "72cfcdc89ae58ea624c4a3072b98fac5a9328e89a626bc8bdd0e5a285c8691d1" + +[[files]] +file = "resources/qmd/textures/particles/up_quark.png" +hash = "b856c05fbf58634c5c7fe2ba400965a7c0cf2bf8dbbc483d99206a681b2a7b3f" + +[[files]] +file = "resources/qmd/textures/particles/w_minus_boson.png" +hash = "9cbd6c79d669a4c42775205215bf6974c8d71cda2f3fb7158e6f11781df543ce" + +[[files]] +file = "resources/qmd/textures/particles/w_plus_boson.png" +hash = "c377f6b4a2feb74f561e89125cfdcddda21774408b46b3c9df980e9b9642b70a" + +[[files]] +file = "resources/qmd/textures/particles/z_boson.png" +hash = "0005c0ca64ef00a32af235ea998173c13a13906b9a804b7ad101f48cc4805724" + +[[files]] +file = "resources/randompatches/icon16.png" +hash = "85163fe909792d77dcaee44f60d400dde02e735452eec27ab9562e702eac3a58" + +[[files]] +file = "resources/randompatches/icon256.png" +hash = "2f2db9638f4fd603e8914ea5aa3f2d413e9fe8e525eca6420675d94ddc1f5824" + +[[files]] +file = "resources/randompatches/icon32.png" +hash = "f8b60ee9cc465f99a84c2bff20d7ed1eddbebe7ac3670da30dc54e3902d91a08" + +[[files]] +file = "resources/supersymmetry/backgrounds/01.png" +hash = "cedf5800642ee6f2b6b700e386eb9a56ce228ecb99ff7121908793b1ec3b73e7" + +[[files]] +file = "resources/supersymmetry/backgrounds/02.png" +hash = "cfac90e68cb683b19381da54eb311eea98e91bd97cc746932ba9809e28cac268" + +[[files]] +file = "resources/supersymmetry/backgrounds/03.png" +hash = "345ce24d3c7700e765aed6263c254c69b464899cf73cd9c730e3871678f0c76f" + +[[files]] +file = "resources/supersymmetry/backgrounds/04.png" +hash = "d9ae5a0d0b0d1ff973377c1ed1fffc8fe29b40ee49fd939a02a3172922a9d587" + +[[files]] +file = "resources/supersymmetry/backgrounds/05.png" +hash = "ffb34aef194f0d1492e26adfe64077e2a332ccffd8b1914fb67b1d8dcbdb35f9" + +[[files]] +file = "resources/supersymmetry/backgrounds/06.png" +hash = "1fd4971a1e00095f2cba46a47ce9cc775a52a8debd8c4359e2d587f140c62a9e" + +[[files]] +file = "resources/supersymmetry/backgrounds/07.png" +hash = "25aa842b491ecc3e8e0e5b3354c8f5b9fc8cf0971609bb293220237868d23793" + +[[files]] +file = "resources/supersymmetry/backgrounds/08.png" +hash = "19cd2bb0fa8156a534bc298ce0b43ab472e7e3a3397e273827ef03dc9b53ddac" + +[[files]] +file = "resources/supersymmetry/backgrounds/09.png" +hash = "a2c856321792a67fae6e059fa8fce33a8542657c7401a9c5ab7deaab9c48dde8" + +[[files]] +file = "resources/supersymmetry/backgrounds/10.png" +hash = "21e9dba72ff85cd595e74296aef68e5a94acd54592b3278245345e6448986672" + +[[files]] +file = "resources/supersymmetry/backgrounds/11.png" +hash = "fac3754aa37074f41935e010ea4cc91baaf314e4486cb40fe0bf5679483ff72a" + +[[files]] +file = "resources/supersymmetry/backgrounds/12.png" +hash = "bbfcfc330ba25d9005e38af0f1ae6d0d2a47df8c5c2a9380c23da436f041c60e" + +[[files]] +file = "resources/supersymmetry/backgrounds/13.png" +hash = "7345cf04487a8a31c19ff4795369eca44187712b7b0fb80b7a8491b0b34515dd" + +[[files]] +file = "resources/supersymmetry/backgrounds/14.png" +hash = "05bec48b584b2c2d6326492e8422938d2fd66637ed284237111085b98e46764e" + +[[files]] +file = "resources/supersymmetry/backgrounds/15.png" +hash = "24ffd2f7c7e6bceae64d8e6247d3ecccd087409ba21dfefe632615a8991c97ba" + +[[files]] +file = "resources/supersymmetry/backgrounds/16.png" +hash = "a00bde1ac380aaa310b992710ba9f5440933afe66e6f160031f0e753cae8b8b8" + +[[files]] +file = "resources/supersymmetry/backgrounds/17.png" +hash = "f7c739b3a1066f519132e83523d5d9d35c7d9925ff8770bb4819544fbfdff8c0" + +[[files]] +file = "resources/supersymmetry/backgrounds/18.png" +hash = "79af83e8dea3e3c11ef10696461df2580ffccea71b473957fc27fbb47b148495" + +[[files]] +file = "resources/supersymmetry/guides/boilerroller.png" +hash = "f55f0f86c11b0f40ad22026d080c80091b87f7972607ed560529f526d39b3e6a" + +[[files]] +file = "resources/supersymmetry/guides/steamhammer.jpg" +hash = "eaa5a19584071a9654963e31246a1182e0472684b7462968acbf4dee1339db6a" + +[[files]] +file = "resources/supersymmetry/mainmenu/background.jpg" +hash = "147ec8ce6bbae75659bab5bbb068bf1e4e2d44eeae10479c27e0bdef33bcf7a9" + +[[files]] +file = "resources/supersymmetry/mainmenu/banner.png" +hash = "f1052f04fd20dde11ee11bf85bba4da99fa60f038815b973a070576125289e11" + +[[files]] +file = "resources/supersymmetry/mainmenu/button.png" +hash = "bbd1fcfa07f6a2d70b730a28033777892d069948a7032be2e860ef26e0437a4e" + +[[files]] +file = "resources/supersymmetry/mainmenu/button_bordered.png" +hash = "802d7c0fe2c81714077801cd627ebcdcf95497d51c5ad2dfd0efac50beaa0b91" + +[[files]] +file = "resources/supersymmetry/mainmenu/button_language.png" +hash = "fbe05ee3919bd92a00ed6d5d433b23c535f84610ebe2287165d74b8d07c524f5" + +[[files]] +file = "resources/supersymmetry/mainmenu/button_long.png" +hash = "6c08f4381cb29531178a19dad72e388d30b2ec8521be927db877f67a3d5741ea" + +[[files]] +file = "resources/supersymmetry/mainmenu/discord.png" +hash = "91767d27231ffbf1db86f802ef0d03a416ba92f9bf3f2290c90e457293c3cae4" + +[[files]] +file = "resources/supersymmetry/mainmenu/frame.png" +hash = "18a8cd79ca2b524a5aa57f1091089817ee57ffe1ff02a27037e196b4b056af77" + +[[files]] +file = "resources/supersymmetry/menu_background/gui.png" +hash = "379be1b452e959569ba434473df41be7bca7dd8b806d6b5c36739da6ca12ea41" + +[[files]] +file = "resources/travelersbackpack/textures/gui/travelers_backpack.png" +hash = "04195569eb6eccfd041304f0964bd2c406ac6e43651bbff7f86bdcc3a9573aa0" + +[[files]] +file = "structures/active/12chunks.rcnc" +hash = "2e6fc8db90e4938ce04bb0c75731361210e128b058c4adc07d9e61932a25d674" + +[[files]] +file = "structures/active/Alluvial.rcbp" +hash = "4f12eae495ffe7de4d9ae0d6d0a18bc49f0209a4176f593e0f65a6eebfe83355" + +[[files]] +file = "structures/active/AlluvialDeposit.rcst" +hash = "51335d476029487e345a4237e6947be4bdc184dea4c5f3c74fdb5c375a10952a" + +[[files]] +file = "structures/active/BasicFood.rcig" +hash = "4cb3048d10fdb6886cbe0943b9729ef9b5528392443fd406a5fb6731e863f43f" + +[[files]] +file = "structures/active/Earth.rcdp" +hash = "721dfaf7d039d4fde9cb43f950d4a7091a0c1fc80ea0bbe9bb7ca9e7798bfbf6" + +[[files]] +file = "structures/active/Hydrothermal.rcbp" +hash = "cfdc81f73729b1ba3fd83dea06870992f803620def4314e4d3ed8e7e6130feda" + +[[files]] +file = "structures/active/HydrothermalDeposit.rcst" +hash = "5d5c245a87292a12cbc89db2fe611b27b008a9a34c0c751aefc1b83f10e14e67" + +[[files]] +file = "structures/active/LaunchPadBiomes.rcbp" +hash = "976c131a0d3a5fbddc328fa426451f5b301621d809f7f83fb51717c412846969" + +[[files]] +file = "structures/active/MagmaticHydrothermal.rcbp" +hash = "55bba176beca44f23c50a1274e6796286affbc46b5a363965b5cae0a28b7fb7f" + +[[files]] +file = "structures/active/MagmaticHydrothermalDeposit.rcst" +hash = "dc82980819371b2c429352cf4340b1522d9b71f40265c2b64d37fe0031eaa4df" + +[[files]] +file = "structures/active/Metamorphic.rcbp" +hash = "b0463ae8fe6a5a8c2bb65b6babf5e0c9f9f2e09ef7034134778ec01ea1ecdf12" + +[[files]] +file = "structures/active/MetamorphicDeposit.rcst" +hash = "0fe3696b90d8318bf3d6d0c3fba71951119515963d90907917c8ff371c66174c" + +[[files]] +file = "structures/active/MonumentSpire.rcst" +hash = "c599fc163c9e1060ddb83e65d52679147a8c8301f42e5264f9afdaf775e55613" + +[[files]] +file = "structures/active/Orthomagmatic.rcbp" +hash = "1cc7d8a53b9da3f3bb5177297acdaec34e9a0283e1ddfc1c4f791def34ee3a0b" + +[[files]] +file = "structures/active/OrthomagmaticDeposit.rcst" +hash = "d12fcff82eb574da190976dc3d0d2680682be551e621dfb8caa53d873494a590" + +[[files]] +file = "structures/active/OverworldLandingPadSimpleChest.rcig" +hash = "b90a25bd0d93c530fe8f569bcec1fe816fca82b8666f52b765426c2ba6822e47" + +[[files]] +file = "structures/active/OverworldLaunchPad.rcst" +hash = "99a182e95a06eb1c87a77421f5264c115fca7be6f5e11eaba38e25eda257134b" + +[[files]] +file = "structures/active/OverworldLaunchPadBasicAE2.rcig" +hash = "5d0c1ece6b4111174bc1a10bad296788feb084a37d369a7d272607b191cb7641" + +[[files]] +file = "structures/active/PillarBeneath.rcst" +hash = "4dc85d6fb3bb4591007816b61a02fb51fa8c7492fd6c66cbb4ca16b248737e93" + +[[files]] +file = "structures/active/PillarNether.rcst" +hash = "d4a9dd851326fc836ac5df2b5c45787ba8ed58286ed06945d18bb49ce376bf9f" + +[[files]] +file = "structures/active/PillarOverworld.rcst" +hash = "176638f95e0392e113913a7b4b0e25cf76aac9f5976c8156c274660e47c93dca" + +[[files]] +file = "structures/active/Plains.rcbp" +hash = "c8a5d82e9b2ed505708b29ba2aec72457b9129c020016cf0bc9fcaf64259b81b" + +[[files]] +file = "structures/active/RubberTree.rcst" +hash = "8fa5ce57d66c51579808042910c7b0318123f1479c5017bc04c4d40c70af392c" + +[[files]] +file = "structures/active/Sedimentary.rcbp" +hash = "f59478e1cf01d82c712cb36741e97a9ee8431683e0fec9c24d20bdc7004de7ab" + +[[files]] +file = "structures/active/SedimentaryDeposit.rcst" +hash = "d9afe68e8a3c08cbd862dcabab6e7f8dd290c86232d8171b72292e0a3de59d85" + +[[files]] +file = "structures/active/SupportBeamChestUp.rcig" +hash = "f6a439e564854ea1e51781a2e7ffca81ee0309efa2fb1e50b2416b28ea15116c" + +[[files]] +file = "structures/active/SupportBeamThing.rcst" +hash = "247c528c24046b2ca2ffe4558b45bf04244b4adc2c11a56fa9ab0c0bbcb249c0" + +[[files]] +file = "structures/active/TinyStash.rcst" +hash = "f054d23f29422db050a020b5ad233f8da12cc4e9638c8403fd93b77eee2eeba1" + +[[files]] +file = "structures/active/TinyStashProspector.rcig" +hash = "60f42380711498c0e2e9085b5ae6c6a0f528be3e49a0575ef461f859e2453f67" + +[[files]] +file = "structures/active/beneath_bedrock.rcgp" +hash = "53aca100ee8c254e27a96170c617c009fb2c1120385e7847e10ea453ece55760" + +[[files]] +file = "structures/active/beneath_pillar.rcgp" +hash = "54c5cf8b544e2f5776797bb20200ff20bc18702fd0c048bf61f0a732943926ab" + +[[files]] +file = "structures/active/decoration.rcnc" +hash = "418c554f361ec02729a8f2a15570c62e308a9546b465f8f6d20873f90c4f2c81" + +[[files]] +file = "structures/active/nether_hanging.rcgp" +hash = "9025ace2d6a6b631a183491e9e7f783086e5f30104442aaf7bbdcdfe01ddc280" + +[[files]] +file = "structures/active/pillar_overworld.rcgp" +hash = "89bdcab0fd1616b097a824612c1e47d4b42f1cf7af8877c267145b0c8ca1fe0c" + +[[files]] +file = "structures/active/ultracommon.rcnc" +hash = "32db15b6a88ffc1c4e0bd4cd136644b78d1aca81f8d43e9fdd9c4adf6b86b7e0" + +[[files]] +file = "structures/inactive/MineshaftBeneath.rcst" +hash = "0ad5ab2fb807baaa1636a29d82974fc6e1d63f5a7599b1e8a36f5acdadd0c99d" + +[[files]] +file = "structures/inactive/OverworldLandingPadSimple.rcst" +hash = "4c7cb1656f087990ebd7e3d7bffec6f21f8ff34cda8e057c9ab84f1b21816692" + +[[files]] +file = "structures/inactive/RifleAmmoStash.rcig" +hash = "b3cc1ae162bad5a8d420c27c3f3c511f0ebc56d0e8ec8786d5b5ad4de0b4e90a" + +[[files]] +file = "structures/inactive/SpawnCapsule.rcst" +hash = "8b071ee464b65910331e1dadcd3f9e23111c98176d7f4c1769990b9c54675492" diff --git a/launch.bat b/launch.bat deleted file mode 100644 index 9b375bcfd..000000000 --- a/launch.bat +++ /dev/null @@ -1,24 +0,0 @@ -:: -:: Yoinked from Omnifactory, Credit goes to them -:: - -:: DO NOT EDIT UNLESS YOU KNOW WHAT YOU'RE DOING -@ECHO OFF -SET FORGEJAR=forge-1.12.2-14.23.5.2855.jar -:: these you can edit -SET MIN_RAM=2048M -SET MAX_RAM=2048M - -:: DO NOT EDIT ANYTHING PAST THIS LINE -SET LAUNCHPARAMS=-server -Xms%MIN_RAM% -Xmx%MAX_RAM% %JAVA_PARAMETERS% -jar %FORGEJAR% nogui -echo Checking java version... -echo. -java -version -echo. -echo The expected java version is 1.8. Not higher, not lower. -echo. - -echo Launching the server... -echo. -echo ^> java %LAUNCHPARAMS% -java %LAUNCHPARAMS% diff --git a/manifest.json b/manifest.json deleted file mode 100644 index b5557852a..000000000 --- a/manifest.json +++ /dev/null @@ -1,899 +0,0 @@ -{ - "minecraft": { - "version": "1.12.2", - "modLoaders": [ - { - "id": "forge-14.23.5.2860", - "primary": true - } - ] - }, - "manifestType": "minecraftModpack", - "manifestVersion": 1, - "name": "Supersymmetry", - "version": "0.1.13.6", - "author": "SymmetricDevs", - "externalDeps": [], - "files": [ - { - "projectID": 296851, - "fileID": 2936858, - "required": true - }, - { - "projectID": 224663, - "fileID": 3466431, - "required": true - }, - { - "projectID": 388172, - "fileID": 4020277, - "required": true - }, - { - "projectID": 250577, - "fileID": 2648656, - "required": true - }, - { - "projectID": 244201, - "fileID": 2958103, - "required": true - }, - { - "projectID": 313146, - "fileID": 2668213, - "required": true - }, - { - "projectID": 250363, - "fileID": 2746011, - "required": true - }, - { - "projectID": 283377, - "fileID": 3366534, - "required": true - }, - { - "projectID": 257814, - "fileID": 4722163, - "required": true - }, - { - "projectID": 71738, - "fileID": 2661618, - "required": true - }, - { - "projectID": 252848, - "fileID": 2893527, - "required": true - }, - { - "projectID": 229090, - "fileID": 2682824, - "required": true - }, - { - "projectID": 60089, - "fileID": 3359843, - "required": true - }, - { - "projectID": 290247, - "fileID": 2903453, - "required": true - }, - { - "projectID": 632327, - "fileID": 5650806, - "required": true - }, - { - "projectID": 242818, - "fileID": 2779848, - "required": true - }, - { - "projectID": 304727, - "fileID": 2904725, - "required": true - }, - { - "projectID": 242998, - "fileID": 2851111, - "required": true - }, - { - "projectID": 485654, - "fileID": 4564413, - "required": true - }, - { - "projectID": 557549, - "fileID": 5906628, - "required": true - }, - { - "projectID": 419286, - "fileID": 5906634, - "required": true - }, - { - "projectID": 277631, - "fileID": 4344128, - "required": true - }, - { - "projectID": 870211, - "fileID": 4723473, - "required": true - }, - { - "projectID": 225608, - "fileID": 2941712, - "required": true - }, - { - "projectID": 225928, - "fileID": 2445809, - "required": true - }, - { - "projectID": 223150, - "fileID": 5615733, - "required": true - }, - { - "projectID": 999559, - "fileID": 5665405, - "required": true - }, - { - "projectID": 557242, - "fileID": 5519022, - "required": true - }, - { - "projectID": 231687, - "fileID": 4328814, - "required": true - }, - { - "projectID": 248027, - "fileID": 2816920, - "required": true - }, - { - "projectID": 224473, - "fileID": 2442631, - "required": true - }, - { - "projectID": 284350, - "fileID": 4633750, - "required": true - }, - { - "projectID": 299849, - "fileID": 3340876, - "required": true - }, - { - "projectID": 623955, - "fileID": 5751930, - "required": true - }, - { - "projectID": 272515, - "fileID": 2685984, - "required": true - }, - { - "projectID": 248787, - "fileID": 2987247, - "required": true - }, - { - "projectID": 319175, - "fileID": 5264329, - "required": true - }, - { - "projectID": 238551, - "fileID": 2744766, - "required": true - }, - { - "projectID": 230497, - "fileID": 2450900, - "required": true - }, - { - "projectID": 224472, - "fileID": 2969118, - "required": true - }, - { - "projectID": 633806, - "fileID": 5745976, - "required": true - }, - { - "projectID": 283644, - "fileID": 4629597, - "required": true - }, - { - "projectID": 265917, - "fileID": 2951731, - "required": true - }, - { - "projectID": 610085, - "fileID": 3748963, - "required": true - }, - { - "projectID": 346326, - "fileID": 3248796, - "required": true - }, - { - "projectID": 648514, - "fileID": 4696300, - "required": true - }, - { - "projectID": 321720, - "fileID": 2711427, - "required": true - }, - { - "projectID": 629629, - "fileID": 5875712, - "required": true - }, - { - "projectID": 310812, - "fileID": 2783832, - "required": true - }, - { - "projectID": 283525, - "fileID": 4493884, - "required": true - }, - { - "projectID": 570458, - "fileID": 5411078, - "required": true - }, - { - "projectID": 705000, - "fileID": 5860191, - "required": true - }, - { - "projectID": 254629, - "fileID": 3425551, - "required": true - }, - { - "projectID": 76544, - "fileID": 5689646, - "required": true - }, - { - "projectID": 477021, - "fileID": 5994740, - "required": true - }, - { - "projectID": 245211, - "fileID": 2667280, - "required": true - }, - { - "projectID": 308380, - "fileID": 4478952, - "required": true - }, - { - "projectID": 220318, - "fileID": 3558882, - "required": true - }, - { - "projectID": 237307, - "fileID": 2937869, - "required": true - }, - { - "projectID": 322347, - "fileID": 3254160, - "required": true - }, - { - "projectID": 363102, - "fileID": 4118829, - "required": true - }, - { - "projectID": 224535, - "fileID": 2443253, - "required": true - }, - { - "projectID": 282613, - "fileID": 2825260, - "required": true - }, - { - "projectID": 257818, - "fileID": 5180387, - "required": true - }, - { - "projectID": 297038, - "fileID": 5798179, - "required": true - }, - { - "projectID": 229084, - "fileID": 2684033, - "required": true - }, - { - "projectID": 237102, - "fileID": 3157548, - "required": true - }, - { - "projectID": 370697, - "fileID": 3196137, - "required": true - }, - { - "projectID": 1085014, - "fileID": 5644169, - "required": true - }, - { - "projectID": 225605, - "fileID": 2489549, - "required": true - }, - { - "projectID": 223008, - "fileID": 5741939, - "required": true - }, - { - "projectID": 692142, - "fileID": 5694983, - "required": true - }, - { - "projectID": 270116, - "fileID": 2527645, - "required": true - }, - { - "projectID": 460609, - "fileID": 5257348, - "required": true - }, - { - "projectID": 226447, - "fileID": 2477566, - "required": true - }, - { - "projectID": 229208, - "fileID": 3004631, - "required": true - }, - { - "projectID": 846224, - "fileID": 6040665, - "required": true - }, - { - "projectID": 243478, - "fileID": 2745657, - "required": true - }, - { - "projectID": 314904, - "fileID": 2819669, - "required": true - }, - { - "projectID": 306676, - "fileID": 5822040, - "required": true - }, - { - "projectID": 225604, - "fileID": 2489566, - "required": true - }, - { - "projectID": 383632, - "fileID": 3056455, - "required": true - }, - { - "projectID": 300957, - "fileID": 3143467, - "required": true - }, - { - "projectID": 238747, - "fileID": 2739582, - "required": true - }, - { - "projectID": 289115, - "fileID": 3044648, - "required": true - }, - { - "projectID": 286505, - "fileID": 3048663, - "required": true - }, - { - "projectID": 270789, - "fileID": 2920436, - "required": true - }, - { - "projectID": 291874, - "fileID": 2799213, - "required": true - }, - { - "projectID": 951159, - "fileID": 5461056, - "required": true - }, - { - "projectID": 274782, - "fileID": 2623496, - "required": true - }, - { - "projectID": 244864, - "fileID": 2710024, - "required": true - }, - { - "projectID": 1086841, - "fileID": 5643297, - "required": true - }, - { - "projectID": 257573, - "fileID": 3248033, - "required": true - }, - { - "projectID": 250832, - "fileID": 2845365, - "required": true - }, - { - "projectID": 298582, - "fileID": 3587417, - "required": true - }, - { - "projectID": 321117, - "fileID": 3150850, - "required": true - }, - { - "projectID": 298187, - "fileID": 3005950, - "required": true - }, - { - "projectID": 254268, - "fileID": 3529742, - "required": true - }, - { - "projectID": 226406, - "fileID": 2857869, - "required": true - }, - { - "projectID": 430195, - "fileID": 4276828, - "required": true - }, - { - "projectID": 871198, - "fileID": 5536276, - "required": true - }, - { - "projectID": 408195, - "fileID": 3152093, - "required": true - }, - { - "projectID": 254332, - "fileID": 3085585, - "required": true - }, - { - "projectID": 232131, - "fileID": 2624732, - "required": true - }, - { - "projectID": 456403, - "fileID": 5519319, - "required": true - }, - { - "projectID": 564858, - "fileID": 5619513, - "required": true - }, - { - "projectID": 633720, - "fileID": 3852709, - "required": true - }, - { - "projectID": 250398, - "fileID": 5408385, - "required": true - }, - { - "projectID": 377201, - "fileID": 3140670, - "required": true - }, - { - "projectID": 851152, - "fileID": 4492858, - "required": true - }, - { - "projectID": 885673, - "fileID": 5242450, - "required": true - }, - { - "projectID": 223852, - "fileID": 5758109, - "required": true - }, - { - "projectID": 296686, - "fileID": 3907346, - "required": true - }, - { - "projectID": 229060, - "fileID": 2801262, - "required": true - }, - { - "projectID": 246222, - "fileID": 2531068, - "required": true - }, - { - "projectID": 229072, - "fileID": 2801274, - "required": true - }, - { - "projectID": 389665, - "fileID": 3247154, - "required": true - }, - { - "projectID": 256989, - "fileID": 3149033, - "required": true - }, - { - "clientOnly": true, - "projectID": 326330, - "fileID": 5239007, - "required": true - }, - { - "projectID": 261725, - "fileID": 2643616, - "required": true - }, - { - "projectID": 291249, - "fileID": 2928003, - "required": true - }, - { - "projectID": 310992, - "fileID": 2937031, - "required": true - }, - { - "projectID": 238403, - "fileID": 2691084, - "required": true - }, - { - "projectID": 254334, - "fileID": 3466259, - "required": true - }, - { - "projectID": 322344, - "fileID": 3509087, - "required": true - }, - { - "projectID": 225781, - "fileID": 3060563, - "required": true - }, - { - "projectID": 237167, - "fileID": 2985811, - "required": true - }, - { - "projectID": 235279, - "fileID": 2915375, - "required": true - }, - { - "projectID": 257356, - "fileID": 3101719, - "required": true - }, - { - "projectID": 278406, - "fileID": 2481852, - "required": true - }, - { - "projectID": 240630, - "fileID": 4440935, - "required": true - }, - { - "projectID": 243121, - "fileID": 2924091, - "required": true - }, - { - "projectID": 32274, - "fileID": 5157846, - "required": true - }, - { - "projectID": 244451, - "fileID": 5770085, - "required": true - }, - { - "projectID": 267602, - "fileID": 2915363, - "required": true - }, - { - "projectID": 231382, - "fileID": 3408276, - "required": true - }, - { - "projectID": 229302, - "fileID": 5825891, - "required": true - }, - { - "projectID": 910715, - "fileID": 5650399, - "required": true - }, - { - "projectID": 873867, - "fileID": 5892019, - "required": true - }, - { - "projectID": 242223, - "fileID": 3524685, - "required": true - }, - { - "projectID": 325357, - "fileID": 2754959, - "required": true - }, - { - "projectID": 319994, - "fileID": 3005623, - "required": true - }, - { - "projectID": 313866, - "fileID": 3783239, - "required": true - }, - { - "projectID": 687577, - "fileID": 5789690, - "required": true - }, - { - "projectID": 293583, - "fileID": 2597275, - "required": true - }, - { - "projectID": 285612, - "fileID": 3133651, - "required": true - }, - { - "projectID": 348025, - "fileID": 4494577, - "required": true - }, - { - "projectID": 571482, - "fileID": 4430763, - "required": true - }, - { - "projectID": 282313, - "fileID": 2689835, - "required": true - }, - { - "projectID": 319404, - "fileID": 2708193, - "required": true - }, - { - "projectID": 896591, - "fileID": 4672511, - "required": true - }, - { - "projectID": 260262, - "fileID": 3459767, - "required": true - }, - { - "clientOnly": true, - "projectID": 241140, - "fileID": 2499252, - "required": true - }, - { - "projectID": 895539, - "fileID": 5828524, - "required": true - }, - { - "projectID": 78778, - "fileID": 2524058, - "required": true - }, - { - "projectID": 371784, - "fileID": 4975229, - "required": true - }, - { - "projectID": 277736, - "fileID": 4970105, - "required": true - }, - { - "projectID": 616190, - "fileID": 4630499, - "required": true - }, - { - "projectID": 628618, - "fileID": 3813089, - "required": true - }, - { - "projectID": 964516, - "fileID": 5049991, - "required": true - }, - { - "projectID": 964594, - "fileID": 5047422, - "required": true - }, - { - "projectID": 624243, - "fileID": 5153413, - "required": true - }, - { - "projectID": 247111, - "fileID": 2887479, - "required": true - }, - { - "projectID": 870276, - "fileID": 5212709, - "required": true - }, - { - "projectID": 995393, - "fileID": 5844968, - "required": true - }, - { - "projectID": 1109784, - "fileID": 5872534, - "required": true - }, - { - "projectID": 482566, - "fileID": 3310627, - "required": true - }, - { - "projectID": 284973, - "fileID": 5405050, - "required": true - }, - { - "projectID": 839336, - "fileID": 6020742, - "required": true - }, - { - "projectID": 1056812, - "fileID": 5797752, - "required": true - }, - { - "clientOnly": true, - "projectID": 1052470, - "fileID": 5575232, - "required": true - }, - { - "projectID": 272562, - "fileID": 2711828, - "required": true - }, - { - "projectID": 1064321, - "fileID": 5952608, - "required": true - }, - { - "projectID": 884359, - "fileID": 5380800, - "required": true - }, - { - "clientOnly": true, - "projectID": 905701, - "fileID": 4733466, - "required": true - } - ], - "overrides": "overrides" -} diff --git a/mods/ae2-extended-life.pw.toml b/mods/ae2-extended-life.pw.toml new file mode 100644 index 000000000..e31d5fa0b --- /dev/null +++ b/mods/ae2-extended-life.pw.toml @@ -0,0 +1,13 @@ +name = "AE2 Unofficial Extended Life" +filename = "ae2-uel-v0.56.6.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5cdc64def700aa1554bca3584dc3d278ba608d22" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5411078 +project-id = 570458 diff --git a/mods/ae2-fluid-crafting-rework.pw.toml b/mods/ae2-fluid-crafting-rework.pw.toml new file mode 100644 index 000000000..6fc26d332 --- /dev/null +++ b/mods/ae2-fluid-crafting-rework.pw.toml @@ -0,0 +1,13 @@ +name = "AE2 Fluid Crafting Rework" +filename = "Fluid Craft for AE2-2.6.6-r.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7b6a06c6396428a94e83a0adce263d1731dc090c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5751930 +project-id = 623955 diff --git a/mods/ae2-network-visualiser.pw.toml b/mods/ae2-network-visualiser.pw.toml new file mode 100644 index 000000000..a2410689f --- /dev/null +++ b/mods/ae2-network-visualiser.pw.toml @@ -0,0 +1,13 @@ +name = "AE2 Network Visualiser" +filename = "AE-Net-Vis-Tool-1.12.2-1.0.3.0-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "bac9c21d2a1c12d46b97b115e5d1376901776ca5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2711427 +project-id = 321720 diff --git a/mods/akashic-tome.pw.toml b/mods/akashic-tome.pw.toml new file mode 100644 index 000000000..d2e9e0930 --- /dev/null +++ b/mods/akashic-tome.pw.toml @@ -0,0 +1,13 @@ +name = "Akashic Tome" +filename = "AkashicTome-1.2-12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b11bf9d93f4bd7a2eeb8cfe49c1b30ce1a2f5a37" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2648656 +project-id = 250577 diff --git a/mods/alet.pw.toml b/mods/alet.pw.toml new file mode 100644 index 000000000..a43021bf5 --- /dev/null +++ b/mods/alet.pw.toml @@ -0,0 +1,13 @@ +name = "A Little Extra Tiles(Formerly LTPhoto)" +filename = "A_Little_Extra_Tiles-1.1.0-pre029.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b280b4826714aa98fbf0fb7a1e3fbc2f814b402e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5239007 +project-id = 326330 diff --git a/mods/alfheim-lighting-engine.pw.toml b/mods/alfheim-lighting-engine.pw.toml new file mode 100644 index 000000000..9ab753c4f --- /dev/null +++ b/mods/alfheim-lighting-engine.pw.toml @@ -0,0 +1,13 @@ +name = "Alfheim Lighting Engine" +filename = "Alfheim-1.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3f0db29f174b28ae23e3f72c12adb3a7cb716b8b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5650399 +project-id = 910715 diff --git a/mods/applecore.pw.toml b/mods/applecore.pw.toml new file mode 100644 index 000000000..d42ba36a5 --- /dev/null +++ b/mods/applecore.pw.toml @@ -0,0 +1,13 @@ +name = "AppleCore" +filename = "AppleCore-mc1.12.2-3.4.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a6a57a76936a559088e9282aacde6f761d7e0b39" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2969118 +project-id = 224472 diff --git a/mods/appleskin.pw.toml b/mods/appleskin.pw.toml new file mode 100644 index 000000000..54007d8b8 --- /dev/null +++ b/mods/appleskin.pw.toml @@ -0,0 +1,13 @@ +name = "AppleSkin" +filename = "AppleSkin-mc1.12-1.0.14.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d798af79de48be0f00c772943e5ec5a2fb5659fa" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2987247 +project-id = 248787 diff --git a/mods/architecturecraft-tridev.pw.toml b/mods/architecturecraft-tridev.pw.toml new file mode 100644 index 000000000..607d58533 --- /dev/null +++ b/mods/architecturecraft-tridev.pw.toml @@ -0,0 +1,13 @@ +name = "ArchitectureCraft - TridentMC Version" +filename = "architecturecraft-1.12-3.108.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "45a0bff7cdc7d22e7172baeebaf8202c3208bf22" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4344128 +project-id = 277631 diff --git a/mods/assetmover.pw.toml b/mods/assetmover.pw.toml new file mode 100644 index 000000000..367264f90 --- /dev/null +++ b/mods/assetmover.pw.toml @@ -0,0 +1,13 @@ +name = "AssetMover" +filename = "assetmover-2.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b147ada093f5552fdedee9b7ee0de1d99b6f3c06" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4430763 +project-id = 571482 diff --git a/mods/athenaeum.pw.toml b/mods/athenaeum.pw.toml new file mode 100644 index 000000000..4f5c043a0 --- /dev/null +++ b/mods/athenaeum.pw.toml @@ -0,0 +1,13 @@ +name = "Athenaeum" +filename = "athenaeum-1.12.2-1.19.6.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d2e8821968a8ae5ea1bf5d7dd221b3e8e1b645bd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4633750 +project-id = 284350 diff --git a/mods/autoreglib.pw.toml b/mods/autoreglib.pw.toml new file mode 100644 index 000000000..d3d3335e0 --- /dev/null +++ b/mods/autoreglib.pw.toml @@ -0,0 +1,13 @@ +name = "AutoRegLib" +filename = "AutoRegLib-1.3-32.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "267269ca7f1a71fb3bb35bdb8e61702a4da6263e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2746011 +project-id = 250363 diff --git a/mods/barrels-drums-storage-more.pw.toml b/mods/barrels-drums-storage-more.pw.toml new file mode 100644 index 000000000..26a109299 --- /dev/null +++ b/mods/barrels-drums-storage-more.pw.toml @@ -0,0 +1,13 @@ +name = "Barrels, Drums, Storage & More" +filename = "BarrelsDrumsStorageAndMore-0.0.24.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "743e31ac3ebd76f0f5be1df55915ad64762a8b81" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2708193 +project-id = 319404 diff --git a/mods/better-advancements.pw.toml b/mods/better-advancements.pw.toml new file mode 100644 index 000000000..af62cb0e5 --- /dev/null +++ b/mods/better-advancements.pw.toml @@ -0,0 +1,13 @@ +name = "Better Advancements" +filename = "BetterAdvancements-1.12.2-0.1.0.77.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "13948f45e69059c3714266a1549bf643fee6ebc3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2685984 +project-id = 272515 diff --git a/mods/better-builders-wands.pw.toml b/mods/better-builders-wands.pw.toml new file mode 100644 index 000000000..dcd0e19cf --- /dev/null +++ b/mods/better-builders-wands.pw.toml @@ -0,0 +1,13 @@ +name = "Better Builder's Wands" +filename = "BetterBuildersWands-1.12.2-0.13.2.271+5997513.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3505169dfeea40d726b23072cb695d3c0e5014da" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2691084 +project-id = 238403 diff --git a/mods/better-loading-screen.pw.toml b/mods/better-loading-screen.pw.toml new file mode 100644 index 000000000..74cf9a862 --- /dev/null +++ b/mods/better-loading-screen.pw.toml @@ -0,0 +1,13 @@ +name = "Custom Loading Screen" +filename = "CustomLoadingScreen-1.12.2-1.5.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b18ec02512ce7e63cd70731e8716818385252a5d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5825891 +project-id = 229302 diff --git a/mods/better-placement.pw.toml b/mods/better-placement.pw.toml new file mode 100644 index 000000000..58ca9a179 --- /dev/null +++ b/mods/better-placement.pw.toml @@ -0,0 +1,13 @@ +name = "Better Placement" +filename = "BetterPlacement-1.0.0-1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0204bf54baaa79c5ec5762b1d7f6adcadf2ccbab" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2481852 +project-id = 278406 diff --git a/mods/better-questing-unofficial.pw.toml b/mods/better-questing-unofficial.pw.toml new file mode 100644 index 000000000..347323f61 --- /dev/null +++ b/mods/better-questing-unofficial.pw.toml @@ -0,0 +1,13 @@ +name = "Better Questing Unofficial" +filename = "BetterQuestingUnofficial-4.2.6.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "df39a89d287be218fe20759f87218982838d4b89" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5875712 +project-id = 629629 diff --git a/mods/biomes-o-plenty.pw.toml b/mods/biomes-o-plenty.pw.toml new file mode 100644 index 000000000..0975e8b0c --- /dev/null +++ b/mods/biomes-o-plenty.pw.toml @@ -0,0 +1,13 @@ +name = "Biomes O' Plenty" +filename = "BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "13c1e58ffec2a550b9698e25cda93b8d155007b0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3558882 +project-id = 220318 diff --git a/mods/biometweakercore.pw.toml b/mods/biometweakercore.pw.toml new file mode 100644 index 000000000..0fc5c0541 --- /dev/null +++ b/mods/biometweakercore.pw.toml @@ -0,0 +1,13 @@ +name = "BiomeTweakerCore" +filename = "BiomeTweakerCore-1.12.2-1.0.39.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "13f6bc3c3ea4c4d8f1e8ac0db97a99bf23bd278b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2527645 +project-id = 270116 diff --git a/mods/bqutweaker.pw.toml b/mods/bqutweaker.pw.toml new file mode 100644 index 000000000..7421bf979 --- /dev/null +++ b/mods/bqutweaker.pw.toml @@ -0,0 +1,13 @@ +name = "Better Questing Unofficial Tweaker (BQUTweaker)" +filename = "BQUTweaker-1.3.7.jar" +side = "client" + +[download] +hash-format = "sha1" +hash = "9881ba600aa4f0100c28b769b45e834f87ebcbfd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4733466 +project-id = 905701 diff --git a/mods/brandons-core.pw.toml b/mods/brandons-core.pw.toml new file mode 100644 index 000000000..4e451c352 --- /dev/null +++ b/mods/brandons-core.pw.toml @@ -0,0 +1,13 @@ +name = "Brandon's Core" +filename = "BrandonsCore-1.12.2-2.4.20.162-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f6035eb93d9c7b91334ed7bfc17ed36c8c9d86c8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3408276 +project-id = 231382 diff --git a/mods/bubbles-a-baubles-fork.pw.toml b/mods/bubbles-a-baubles-fork.pw.toml new file mode 100644 index 000000000..dd1bd7d4d --- /dev/null +++ b/mods/bubbles-a-baubles-fork.pw.toml @@ -0,0 +1,13 @@ +name = "Bubbles" +filename = "Bubbles-2.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fa278295586026ed7cb13dca2ee152899c3741b8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5844968 +project-id = 995393 diff --git a/mods/building-gadgets.pw.toml b/mods/building-gadgets.pw.toml new file mode 100644 index 000000000..f3e5b0c95 --- /dev/null +++ b/mods/building-gadgets.pw.toml @@ -0,0 +1,13 @@ +name = "Building Gadgets" +filename = "BuildingGadgets-2.8.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7f33f2343bf0af70d5d853378d465657beea3740" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3005950 +project-id = 298187 diff --git a/mods/catwalks-4.pw.toml b/mods/catwalks-4.pw.toml new file mode 100644 index 000000000..b8a6859fd --- /dev/null +++ b/mods/catwalks-4.pw.toml @@ -0,0 +1,13 @@ +name = "Catwalks 4" +filename = "catwalks-1.12.2-4.0.45.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "aa93c38eec189f40d00fd88ec02b3cfd962d539d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2936858 +project-id = 296851 diff --git a/mods/cave-generator.pw.toml b/mods/cave-generator.pw.toml new file mode 100644 index 000000000..c73bb803c --- /dev/null +++ b/mods/cave-generator.pw.toml @@ -0,0 +1,13 @@ +name = "Cave Generator" +filename = "CaveGenerator-1.2-1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c7701c924d10c59367bc9a02b944d41f6b3441d8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3587417 +project-id = 298582 diff --git a/mods/cd4017be-library.pw.toml b/mods/cd4017be-library.pw.toml new file mode 100644 index 000000000..e99f81c82 --- /dev/null +++ b/mods/cd4017be-library.pw.toml @@ -0,0 +1,13 @@ +name = "CD4017BE Library" +filename = "CD4017BE_lib-1.12.2-6.5.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b5820b90f0dab4d30d58298d54fda04385b6f674" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3004631 +project-id = 229208 diff --git a/mods/chameleon.pw.toml b/mods/chameleon.pw.toml new file mode 100644 index 000000000..3f89580a1 --- /dev/null +++ b/mods/chameleon.pw.toml @@ -0,0 +1,13 @@ +name = "Chameleon" +filename = "Chameleon-1.12-4.1.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5ed3dd5fd1ebded57bfe525b4ece11232bd14e5e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2450900 +project-id = 230497 diff --git a/mods/chest-transporter.pw.toml b/mods/chest-transporter.pw.toml new file mode 100644 index 000000000..858891817 --- /dev/null +++ b/mods/chest-transporter.pw.toml @@ -0,0 +1,13 @@ +name = "Chest Transporter" +filename = "ChestTransporter-1.12.2-2.8.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "50c48502302193af990ed3c33b6e23e1f240cb1d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2524058 +project-id = 78778 diff --git a/mods/chisel.pw.toml b/mods/chisel.pw.toml new file mode 100644 index 000000000..f2593af5b --- /dev/null +++ b/mods/chisel.pw.toml @@ -0,0 +1,13 @@ +name = "Chisel" +filename = "Chisel-MC1.12.2-1.0.2.45.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d378cee9195841ea78bb9800f543d718ef2c60ef" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2915375 +project-id = 235279 diff --git a/mods/climate-control-geographicraft.pw.toml b/mods/climate-control-geographicraft.pw.toml new file mode 100644 index 000000000..09c34b3d1 --- /dev/null +++ b/mods/climate-control-geographicraft.pw.toml @@ -0,0 +1,13 @@ +name = "Climate Control/Geographicraft" +filename = "Geographicraft-1.12.2-0.9.8.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6b78a53840998190171e128f18b9238c487bf5ab" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5689646 +project-id = 76544 diff --git a/mods/codechicken-lib-1-8.pw.toml b/mods/codechicken-lib-1-8.pw.toml new file mode 100644 index 000000000..93e598a2e --- /dev/null +++ b/mods/codechicken-lib-1-8.pw.toml @@ -0,0 +1,13 @@ +name = "CodeChicken Lib 1.8.+" +filename = "CodeChickenLib-1.12.2-3.2.3.358-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b6a7e3b889c354216059a3bfad298e30a1e46a2d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2779848 +project-id = 242818 diff --git a/mods/commons0815.pw.toml b/mods/commons0815.pw.toml new file mode 100644 index 000000000..cd4e0614a --- /dev/null +++ b/mods/commons0815.pw.toml @@ -0,0 +1,13 @@ +name = "Commons0815" +filename = "Commons0815-1.12.2-1.4.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "076ed53a86f503add06c252856a1a8ad7b0d2667" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3248796 +project-id = 346326 diff --git a/mods/configanytime.pw.toml b/mods/configanytime.pw.toml new file mode 100644 index 000000000..84d0bfcab --- /dev/null +++ b/mods/configanytime.pw.toml @@ -0,0 +1,13 @@ +name = "ConfigAnytime" +filename = "!configanytime-3.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b6d8a10219d3802e04de6b1e815a5853e50adbcc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5212709 +project-id = 870276 diff --git a/mods/controlling.pw.toml b/mods/controlling.pw.toml new file mode 100644 index 000000000..8ed56a1d0 --- /dev/null +++ b/mods/controlling.pw.toml @@ -0,0 +1,13 @@ +name = "Controlling" +filename = "Controlling-3.0.12.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d588b1fefb912c1080d397834b6300e59409183c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5408385 +project-id = 250398 diff --git a/mods/cosmetic-armor-reworked.pw.toml b/mods/cosmetic-armor-reworked.pw.toml new file mode 100644 index 000000000..d27b33f74 --- /dev/null +++ b/mods/cosmetic-armor-reworked.pw.toml @@ -0,0 +1,13 @@ +name = "Cosmetic Armor Reworked" +filename = "CosmeticArmorReworked-1.12.2-v5a.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "dae97e0a1539702b07ffa5e48410e57c470e3bd0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2937869 +project-id = 237307 diff --git a/mods/crafting-tweaks-unofficial.pw.toml b/mods/crafting-tweaks-unofficial.pw.toml new file mode 100644 index 000000000..672d6a75f --- /dev/null +++ b/mods/crafting-tweaks-unofficial.pw.toml @@ -0,0 +1,13 @@ +name = "Crafting Tweaks Unofficial" +filename = "CraftingTweaks_1.12.2-9.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0185dcfe6dcf35723ef7b5e177838870d26349d4" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3852709 +project-id = 633720 diff --git a/mods/craftpresence.pw.toml b/mods/craftpresence.pw.toml new file mode 100644 index 000000000..a9cd5c785 --- /dev/null +++ b/mods/craftpresence.pw.toml @@ -0,0 +1,13 @@ +name = "CraftPresence" +filename = "CraftPresence-2.5.1+1.12.2-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3570fa3eb7e28e2b6af00b3b6a1ce5cab1b88a5e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5798179 +project-id = 297038 diff --git a/mods/creativecore.pw.toml b/mods/creativecore.pw.toml new file mode 100644 index 000000000..f3e573466 --- /dev/null +++ b/mods/creativecore.pw.toml @@ -0,0 +1,13 @@ +name = "CreativeCore" +filename = "CreativeCore_v1.10.71_mc1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2c60a20ae9c9431a3b215a331c2b2af7fa3a060c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4722163 +project-id = 257814 diff --git a/mods/ctm.pw.toml b/mods/ctm.pw.toml new file mode 100644 index 000000000..c02a53239 --- /dev/null +++ b/mods/ctm.pw.toml @@ -0,0 +1,13 @@ +name = "ConnectedTexturesMod" +filename = "CTM-MC1.12.2-1.0.2.31.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "892e0788531269bfa2f356e4e12825e19d4e5412" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2915363 +project-id = 267602 diff --git a/mods/custom-backgrounds.pw.toml b/mods/custom-backgrounds.pw.toml new file mode 100644 index 000000000..4d3a27a54 --- /dev/null +++ b/mods/custom-backgrounds.pw.toml @@ -0,0 +1,13 @@ +name = "Custom Backgrounds" +filename = "CustomBackgrounds-MC1.12-1.1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "930bb07c5f3d11364f7f5f16561c72da10a6a01d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2445809 +project-id = 225928 diff --git a/mods/custom-main-menu.pw.toml b/mods/custom-main-menu.pw.toml new file mode 100644 index 000000000..6ff110a9c --- /dev/null +++ b/mods/custom-main-menu.pw.toml @@ -0,0 +1,13 @@ +name = "Custom Main Menu" +filename = "CustomMainMenu-MC1.12.2-2.0.9.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9aad10a13bed75b6061a33219ab4f2f39e0ccc12" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2857869 +project-id = 226406 diff --git a/mods/default-options.pw.toml b/mods/default-options.pw.toml new file mode 100644 index 000000000..2a8981e33 --- /dev/null +++ b/mods/default-options.pw.toml @@ -0,0 +1,13 @@ +name = "Default Options" +filename = "DefaultOptions_1.12.2-9.2.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e3197fc44aa2f59897713a8889a5a56c0f8ccbf3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2624732 +project-id = 232131 diff --git a/mods/default-world-generator-port.pw.toml b/mods/default-world-generator-port.pw.toml new file mode 100644 index 000000000..43af46650 --- /dev/null +++ b/mods/default-world-generator-port.pw.toml @@ -0,0 +1,13 @@ +name = "Default World Generator (port)" +filename = "DefaultWorldGenerator-port-1.12-2.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d3f19e09346849b71a447b5e6253f9b2cd110756" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2499252 +project-id = 241140 diff --git a/mods/dropt.pw.toml b/mods/dropt.pw.toml new file mode 100644 index 000000000..1407a9c96 --- /dev/null +++ b/mods/dropt.pw.toml @@ -0,0 +1,13 @@ +name = "Dropt" +filename = "dropt-1.12.2-1.19.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7e64ac572a30161b42d698aacfd5b842ab99d742" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5405050 +project-id = 284973 diff --git a/mods/dynamic-darkness.pw.toml b/mods/dynamic-darkness.pw.toml new file mode 100644 index 000000000..c77dc1002 --- /dev/null +++ b/mods/dynamic-darkness.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Darkness" +filename = "darkness-forge-1.12.x-0.5.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e305092922affc619e2a7206a4949c24363fbf3d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4118829 +project-id = 363102 diff --git a/mods/dynamistics.pw.toml b/mods/dynamistics.pw.toml new file mode 100644 index 000000000..40a72a0ef --- /dev/null +++ b/mods/dynamistics.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamistics" +filename = "dynamistics-1.0.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f956193b77dc770ea30e3de33e7c9706e75e762e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3056455 +project-id = 383632 diff --git a/mods/engineers-decor.pw.toml b/mods/engineers-decor.pw.toml new file mode 100644 index 000000000..46a49540a --- /dev/null +++ b/mods/engineers-decor.pw.toml @@ -0,0 +1,13 @@ +name = "Engineer's Decor" +filename = "engineersdecor-1.12.2-1.1.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ffcb09e3c64e424f0dcd3f2ca8220f5050f90e72" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3783239 +project-id = 313866 diff --git a/mods/extreme-sound-muffler-legacy.pw.toml b/mods/extreme-sound-muffler-legacy.pw.toml new file mode 100644 index 000000000..b07385817 --- /dev/null +++ b/mods/extreme-sound-muffler-legacy.pw.toml @@ -0,0 +1,13 @@ +name = "Extreme Sound Muffler: Legacy" +filename = "esm-legacy-1.12.2-1.0.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e1d87f52c510fbb9f60237b01bb3954074ee17e5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5575232 +project-id = 1052470 diff --git a/mods/fence-overhaul.pw.toml b/mods/fence-overhaul.pw.toml new file mode 100644 index 000000000..4819afcf5 --- /dev/null +++ b/mods/fence-overhaul.pw.toml @@ -0,0 +1,13 @@ +name = "Fence Overhaul" +filename = "FenceOverhaul-1.3.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "184761844c8d6ebac0ed7304d114f5dfd1589b9c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2531068 +project-id = 246222 diff --git a/mods/findmyitemsandfluids.pw.toml b/mods/findmyitemsandfluids.pw.toml new file mode 100644 index 000000000..91457433c --- /dev/null +++ b/mods/findmyitemsandfluids.pw.toml @@ -0,0 +1,13 @@ +name = "FindMyItemsAndFluids" +filename = "findme-1.12.2-1.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f1b5417b09bc8f7eb74afdfa03c4bacc6d283de2" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3748963 +project-id = 610085 diff --git a/mods/flare.pw.toml b/mods/flare.pw.toml new file mode 100644 index 000000000..a80b4218c --- /dev/null +++ b/mods/flare.pw.toml @@ -0,0 +1,13 @@ +name = "Flare" +filename = "flare-0.2.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a73f17443ceedaeda2f483c091e6ca353f21bfd8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5694983 +project-id = 692142 diff --git a/mods/fluidlogged-api.pw.toml b/mods/fluidlogged-api.pw.toml new file mode 100644 index 000000000..c6c6aa645 --- /dev/null +++ b/mods/fluidlogged-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fluidlogged API" +filename = "Fluidlogged-API-v2.2.4-mc1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6e37d0d98dc72747b89f72cd79077e298dbfbf84" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4564413 +project-id = 485654 diff --git a/mods/forgelin-continuous.pw.toml b/mods/forgelin-continuous.pw.toml new file mode 100644 index 000000000..3344bf7ee --- /dev/null +++ b/mods/forgelin-continuous.pw.toml @@ -0,0 +1,13 @@ +name = "Forgelin-Continuous" +filename = "Forgelin-Continuous-2.0.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "26757ab3c773ac65863a1b91c5d4c9b87a6fe4bd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5519319 +project-id = 456403 diff --git a/mods/ftb-backups-forge.pw.toml b/mods/ftb-backups-forge.pw.toml new file mode 100644 index 000000000..579895881 --- /dev/null +++ b/mods/ftb-backups-forge.pw.toml @@ -0,0 +1,13 @@ +name = "FTB Backups (Forge)" +filename = "FTBBackups-1.1.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "20ddf96ff380f1f3219305f2efc6742ab5999449" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2819669 +project-id = 314904 diff --git a/mods/ftb-library-legacy-forge.pw.toml b/mods/ftb-library-legacy-forge.pw.toml new file mode 100644 index 000000000..36e1d1db4 --- /dev/null +++ b/mods/ftb-library-legacy-forge.pw.toml @@ -0,0 +1,13 @@ +name = "FTB Library (Forge) (Legacy)" +filename = "FTBLib-5.4.7.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7c20cd223bc2334edf153e074f35acdbcab3c976" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2985811 +project-id = 237167 diff --git a/mods/ftb-utilities-forge.pw.toml b/mods/ftb-utilities-forge.pw.toml new file mode 100644 index 000000000..225d80a6d --- /dev/null +++ b/mods/ftb-utilities-forge.pw.toml @@ -0,0 +1,13 @@ +name = "FTB Utilities (Forge)" +filename = "FTBUtilities-5.4.1.131.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d1f6545ac58ad895f2c8bcd0d4963d92f14b1938" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3157548 +project-id = 237102 diff --git a/mods/gaspunk-inhaler.pw.toml b/mods/gaspunk-inhaler.pw.toml new file mode 100644 index 000000000..c3902578d --- /dev/null +++ b/mods/gaspunk-inhaler.pw.toml @@ -0,0 +1,13 @@ +name = "Gaspunk Inhaler" +filename = "Gaspunk-Inhaler-1.12.2-1.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a06ba64e94c5a5d63612508edff9b65f6cc973c3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2597275 +project-id = 293583 diff --git a/mods/gaspunk.pw.toml b/mods/gaspunk.pw.toml new file mode 100644 index 000000000..3c9df6193 --- /dev/null +++ b/mods/gaspunk.pw.toml @@ -0,0 +1,13 @@ +name = "Gaspunk | Gas grenades" +filename = "gaspunk-1.12.2-1.4.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a66d6c36b0b009b4673d3d22d602c1dfd934fecb" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3048663 +project-id = 286505 diff --git a/mods/geckolib.pw.toml b/mods/geckolib.pw.toml new file mode 100644 index 000000000..65d42fa61 --- /dev/null +++ b/mods/geckolib.pw.toml @@ -0,0 +1,13 @@ +name = "GeckoLib" +filename = "geckolib-forge-1.12.2-3.0.31.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "abab17e7e19cba9ab575425a32419eb9db9cb876" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4020277 +project-id = 388172 diff --git a/mods/genetics-reborn.pw.toml b/mods/genetics-reborn.pw.toml new file mode 100644 index 000000000..ad5f5a3c4 --- /dev/null +++ b/mods/genetics-reborn.pw.toml @@ -0,0 +1,13 @@ +name = "Genetics Reborn" +filename = "geneticsreborn-1.12-1.32.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0d80ebe91368db8eadf047b1573875cab136fd98" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3149033 +project-id = 256989 diff --git a/mods/graduated-cylinders.pw.toml b/mods/graduated-cylinders.pw.toml new file mode 100644 index 000000000..68a01da3a --- /dev/null +++ b/mods/graduated-cylinders.pw.toml @@ -0,0 +1,13 @@ +name = "Graduated Cylinders" +filename = "graduatedcylinders-3.1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6767fdf1e5422532367064cdbf8a5c211e2701fc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6020742 +project-id = 839336 diff --git a/mods/gravestone-mod.pw.toml b/mods/gravestone-mod.pw.toml new file mode 100644 index 000000000..f414dd86a --- /dev/null +++ b/mods/gravestone-mod.pw.toml @@ -0,0 +1,13 @@ +name = "GraveStone Mod" +filename = "gravestone-1.10.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b2cc9a25054fd6878ba242a6080a2866140bbeb0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2744766 +project-id = 238551 diff --git a/mods/gravity-gun.pw.toml b/mods/gravity-gun.pw.toml new file mode 100644 index 000000000..678008cb1 --- /dev/null +++ b/mods/gravity-gun.pw.toml @@ -0,0 +1,13 @@ +name = "Gravity Gun" +filename = "GravityGun-1.12.2-7.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2bf4c3f8c7d67bf0dee9ee6d64349d2d6191218c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2801274 +project-id = 229072 diff --git a/mods/gregic-probe-ceu.pw.toml b/mods/gregic-probe-ceu.pw.toml new file mode 100644 index 000000000..b1d6c3278 --- /dev/null +++ b/mods/gregic-probe-ceu.pw.toml @@ -0,0 +1,13 @@ +name = "Gregic Probe: CEu" +filename = "gregicprobe-1.3.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3b1dd28ee00e7321b653397d641e24e7d82bdbcc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5872534 +project-id = 1109784 diff --git a/mods/gregicality-multiblocks.pw.toml b/mods/gregicality-multiblocks.pw.toml new file mode 100644 index 000000000..ca8b23f99 --- /dev/null +++ b/mods/gregicality-multiblocks.pw.toml @@ -0,0 +1,13 @@ +name = "Gregicality Multiblocks" +filename = "GregicalityMultiblocks-1.2.11.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "87a13e37bccd8c7a55bc4222ae58f5c8f0c84441" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5619513 +project-id = 564858 diff --git a/mods/gregtech-ce-unofficial.pw.toml b/mods/gregtech-ce-unofficial.pw.toml new file mode 100644 index 000000000..cbc269ab1 --- /dev/null +++ b/mods/gregtech-ce-unofficial.pw.toml @@ -0,0 +1,13 @@ +name = "GregTech CE Unofficial" +filename = "gregtech-1.12.2-2.8.10-beta.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0c72d4b7b87092d4068c3cb660c95c2c845174c1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5519022 +project-id = 557242 diff --git a/mods/gregtech-food-option.pw.toml b/mods/gregtech-food-option.pw.toml new file mode 100644 index 000000000..dc386affe --- /dev/null +++ b/mods/gregtech-food-option.pw.toml @@ -0,0 +1,13 @@ +name = "GregTech Food Option" +filename = "gregtechfoodoption-1.12.2-1.12.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fcee9e7ecc0dfdbca0cfdbff16d7705f4927472a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5994740 +project-id = 477021 diff --git a/mods/groovyscript.pw.toml b/mods/groovyscript.pw.toml new file mode 100644 index 000000000..69fa0557f --- /dev/null +++ b/mods/groovyscript.pw.toml @@ -0,0 +1,13 @@ +name = "GroovyScript" +filename = "groovyscript-1.2.0-hotfix1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0c4968eb7eabd4ed6bc60bb2276f1691fb99f7da" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5789690 +project-id = 687577 diff --git a/mods/had-enough-items.pw.toml b/mods/had-enough-items.pw.toml new file mode 100644 index 000000000..29d874408 --- /dev/null +++ b/mods/had-enough-items.pw.toml @@ -0,0 +1,13 @@ +name = "Had Enough Items" +filename = "HadEnoughItems_1.12.2-4.26.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "4e3f8aab2511779983615909692549d38fb118e7" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5906628 +project-id = 557549 diff --git a/mods/handles.pw.toml b/mods/handles.pw.toml new file mode 100644 index 000000000..c5ef0b66e --- /dev/null +++ b/mods/handles.pw.toml @@ -0,0 +1,13 @@ +name = "Handles" +filename = "handles-1.12.2-1.6.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "23d683771bc8471bc46d4be47a7bbfba8c03661d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2904725 +project-id = 304727 diff --git a/mods/hunger-in-peace.pw.toml b/mods/hunger-in-peace.pw.toml new file mode 100644 index 000000000..0fef22801 --- /dev/null +++ b/mods/hunger-in-peace.pw.toml @@ -0,0 +1,13 @@ +name = "Hunger In Peace" +filename = "HungerInPeace-mc1.12-1.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "cdbb97e482b0aac5e0481280f7a8bef92233d1c7" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2442631 +project-id = 224473 diff --git a/mods/icbm.pw.toml b/mods/icbm.pw.toml new file mode 100644 index 000000000..f4e514f13 --- /dev/null +++ b/mods/icbm.pw.toml @@ -0,0 +1,13 @@ +name = "ICBM - Interconnected Block Missiles" +filename = "ICBM-classic-1.12.2-6.4.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "03d2d07423980f63100dd3b450225264be9834ce" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5770085 +project-id = 244451 diff --git a/mods/ichunutil.pw.toml b/mods/ichunutil.pw.toml new file mode 100644 index 000000000..058fe3bcf --- /dev/null +++ b/mods/ichunutil.pw.toml @@ -0,0 +1,13 @@ +name = "iChunUtil" +filename = "iChunUtil-1.12.2-7.2.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2b53b0f9543c98adb0b89caa4da954a477259367" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2801262 +project-id = 229060 diff --git a/mods/immersive-railroading.pw.toml b/mods/immersive-railroading.pw.toml new file mode 100644 index 000000000..bd416fb61 --- /dev/null +++ b/mods/immersive-railroading.pw.toml @@ -0,0 +1,13 @@ +name = "Immersive Railroading" +filename = "ImmersiveRailroading-1.12.2-forge-1.10.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "68736f0436fb0c23f07c0d5b7954d524e371a0a1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4970105 +project-id = 277736 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml new file mode 100644 index 000000000..fd8ca340c --- /dev/null +++ b/mods/in-control.pw.toml @@ -0,0 +1,13 @@ +name = "In Control!" +filename = "incontrol-1.12-3.9.18.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a9a3b82dc6c8d9a9107f5e03eaa79b5854c2eed2" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3101719 +project-id = 257356 diff --git a/mods/industrial-renewal.pw.toml b/mods/industrial-renewal.pw.toml new file mode 100644 index 000000000..dd6a9ed15 --- /dev/null +++ b/mods/industrial-renewal.pw.toml @@ -0,0 +1,13 @@ +name = "Industrial Renewal" +filename = "IndustrialRenewal_1.12.2-0.21.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3d3d77cc3eb341200c81e0c3ef2dec69ffc69521" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3340876 +project-id = 299849 diff --git a/mods/ingame-info-xml-serene-seasons.pw.toml b/mods/ingame-info-xml-serene-seasons.pw.toml new file mode 100644 index 000000000..ef63cfddd --- /dev/null +++ b/mods/ingame-info-xml-serene-seasons.pw.toml @@ -0,0 +1,13 @@ +name = "InGame Info XML - Serene Seasons" +filename = "igisereneseasons-1.0.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "00c24dbf86c9b946542bbdbfa6686400291b3c02" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2668213 +project-id = 313146 diff --git a/mods/ingame-info-xml.pw.toml b/mods/ingame-info-xml.pw.toml new file mode 100644 index 000000000..17836d2dd --- /dev/null +++ b/mods/ingame-info-xml.pw.toml @@ -0,0 +1,13 @@ +name = "InGame Info XML" +filename = "InGameInfoXML-1.12.2-2.8.2.94-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "25740e4cffa45a47d13881656ec7ec7e5d02db8a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2489566 +project-id = 225604 diff --git a/mods/inventory-bogosorter.pw.toml b/mods/inventory-bogosorter.pw.toml new file mode 100644 index 000000000..8945fbe70 --- /dev/null +++ b/mods/inventory-bogosorter.pw.toml @@ -0,0 +1,13 @@ +name = "Inventory Bogo Sorter" +filename = "bogosorter-1.4.9.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ea1bcef1b0347cd7761abe95b90fac3d211c97b5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5650806 +project-id = 632327 diff --git a/mods/itemzoom.pw.toml b/mods/itemzoom.pw.toml new file mode 100644 index 000000000..1699501da --- /dev/null +++ b/mods/itemzoom.pw.toml @@ -0,0 +1,13 @@ +name = "ItemZoom" +filename = "itemzoom_1.12.2-1.11.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "230cbdd018b71a44d96685e556839f33d8b44fd9" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2643616 +project-id = 261725 diff --git a/mods/ivtoolkit.pw.toml b/mods/ivtoolkit.pw.toml new file mode 100644 index 000000000..9fabf6c3f --- /dev/null +++ b/mods/ivtoolkit.pw.toml @@ -0,0 +1,13 @@ +name = "IvToolkit" +filename = "IvToolkit-1.3.3-1.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "522e60b48721b558f6dea1fdfa2b235162366649" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2443253 +project-id = 224535 diff --git a/mods/jei-integration.pw.toml b/mods/jei-integration.pw.toml new file mode 100644 index 000000000..8e6c8da13 --- /dev/null +++ b/mods/jei-integration.pw.toml @@ -0,0 +1,13 @@ +name = "JEI Integration" +filename = "jeiintegration_1.12.2-1.6.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "54228a056a85fa146503cc7a20d3cf67fd55865f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2951731 +project-id = 265917 diff --git a/mods/jei-utilities.pw.toml b/mods/jei-utilities.pw.toml new file mode 100644 index 000000000..6f6ac6b1b --- /dev/null +++ b/mods/jei-utilities.pw.toml @@ -0,0 +1,13 @@ +name = "JEI Utilities" +filename = "JEI-Utilities-1.12.2-0.2.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2dfc236a7879b3b520c15577b6095cfdbebe8a5c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4630499 +project-id = 616190 diff --git a/mods/journeymap.pw.toml b/mods/journeymap.pw.toml new file mode 100644 index 000000000..c0575d846 --- /dev/null +++ b/mods/journeymap.pw.toml @@ -0,0 +1,13 @@ +name = "JourneyMap" +filename = "journeymap-1.12.2-5.7.1p2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ca1a0dc76131b5af3a2e9628870f3e56dc487aa8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5157846 +project-id = 32274 diff --git a/mods/just-enough-calculation.pw.toml b/mods/just-enough-calculation.pw.toml new file mode 100644 index 000000000..25892fa19 --- /dev/null +++ b/mods/just-enough-calculation.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Calculation" +filename = "JustEnoughCalculation-1.12.2-3.2.7.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "af07e8e6567e910f679b14f9b67b23da3213eeb2" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3524685 +project-id = 242223 diff --git a/mods/just-enough-energistics-jee.pw.toml b/mods/just-enough-energistics-jee.pw.toml new file mode 100644 index 000000000..ebfebf12a --- /dev/null +++ b/mods/just-enough-energistics-jee.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Energistics (JEE)" +filename = "JustEnoughEnergistics-1.12.2-1.0.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "df5038e7ce86968952fa4baa2ecad6f5329ade60" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2783832 +project-id = 310812 diff --git a/mods/just-enough-resources-jer.pw.toml b/mods/just-enough-resources-jer.pw.toml new file mode 100644 index 000000000..8d1495606 --- /dev/null +++ b/mods/just-enough-resources-jer.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Resources (JER)" +filename = "JustEnoughResources-1.12.2-0.9.3.203.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "cabcc7f31532215a6dd7c884ae281b59e0a53e2c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4440935 +project-id = 240630 diff --git a/mods/laggoggles.pw.toml b/mods/laggoggles.pw.toml new file mode 100644 index 000000000..1483df138 --- /dev/null +++ b/mods/laggoggles.pw.toml @@ -0,0 +1,13 @@ +name = "LagGoggles" +filename = "LagGoggles-1.12.2-5.9-140.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ef22439d92e38e4fc79df4ff95b2e8708f645db8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4493884 +project-id = 283525 diff --git a/mods/lazy-ae2.pw.toml b/mods/lazy-ae2.pw.toml new file mode 100644 index 000000000..564cd8d66 --- /dev/null +++ b/mods/lazy-ae2.pw.toml @@ -0,0 +1,13 @@ +name = "Lazy AE2" +filename = "lazy-ae2-1.12.2-1.1.26.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "731b5f7b0b6071c0f2281a8e79be37b8499f4eb6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3254160 +project-id = 322347 diff --git a/mods/libnine.pw.toml b/mods/libnine.pw.toml new file mode 100644 index 000000000..a599bf374 --- /dev/null +++ b/mods/libnine.pw.toml @@ -0,0 +1,13 @@ +name = "LibNine" +filename = "libnine-1.12.2-1.2.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ddc1c41f54b912bae388445c40cf4aa27fdcfe3d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3509087 +project-id = 322344 diff --git a/mods/littletiles-3d-importer-exporter.pw.toml b/mods/littletiles-3d-importer-exporter.pw.toml new file mode 100644 index 000000000..fe72aff56 --- /dev/null +++ b/mods/littletiles-3d-importer-exporter.pw.toml @@ -0,0 +1,13 @@ +name = "LittleTiles 3D Importer & Exporter" +filename = "lt3dimporter-0.7.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2d880e541c392c3a2a290c9f0a6b6a3d96da9814" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4276828 +project-id = 430195 diff --git a/mods/littletiles.pw.toml b/mods/littletiles.pw.toml new file mode 100644 index 000000000..ba812f86a --- /dev/null +++ b/mods/littletiles.pw.toml @@ -0,0 +1,13 @@ +name = "LittleTiles" +filename = "LittleTiles_v1.5.87_mc1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f77d34ddd13caeb4781908443f73e51b9118fe60" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5180387 +project-id = 257818 diff --git a/mods/logfilters.pw.toml b/mods/logfilters.pw.toml new file mode 100644 index 000000000..4959f9215 --- /dev/null +++ b/mods/logfilters.pw.toml @@ -0,0 +1,13 @@ +name = "LogFilters" +filename = "LogFilters-1.12.2-1.0.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5f07b683ea1cdb3b89fb8d2bae50c276aa8fcb4a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2711828 +project-id = 272562 diff --git a/mods/lolasm.pw.toml b/mods/lolasm.pw.toml new file mode 100644 index 000000000..9011dff96 --- /dev/null +++ b/mods/lolasm.pw.toml @@ -0,0 +1,13 @@ +name = "CensoredASM" +filename = "censoredasm5.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "bdfaa0211280b44a18ac9751030409595d3b7750" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5257348 +project-id = 460609 diff --git a/mods/lunatriuscore.pw.toml b/mods/lunatriuscore.pw.toml new file mode 100644 index 000000000..0fbb144eb --- /dev/null +++ b/mods/lunatriuscore.pw.toml @@ -0,0 +1,13 @@ +name = "LunatriusCore" +filename = "LunatriusCore-1.12.2-1.2.0.42-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f70b39168f2a02d47792cf29bef432e20d0bcd57" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2489549 +project-id = 225605 diff --git a/mods/mcjtylib-refilmed.pw.toml b/mods/mcjtylib-refilmed.pw.toml new file mode 100644 index 000000000..a94c2b767 --- /dev/null +++ b/mods/mcjtylib-refilmed.pw.toml @@ -0,0 +1,13 @@ +name = "McJtyLib Refilmed" +filename = "mcjtylib-refilmed-3.5.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "666f8eaa96869a1c9442638506959ed0c76d86cf" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5643297 +project-id = 1086841 diff --git a/mods/mixin-booter.pw.toml b/mods/mixin-booter.pw.toml new file mode 100644 index 000000000..ccbd057eb --- /dev/null +++ b/mods/mixin-booter.pw.toml @@ -0,0 +1,13 @@ +name = "MixinBooter" +filename = "!mixinbooter-10.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "69f649f03f1b8706ec96945ed2722c653da07c33" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5906634 +project-id = 419286 diff --git a/mods/mod-name-tooltip.pw.toml b/mods/mod-name-tooltip.pw.toml new file mode 100644 index 000000000..899434de3 --- /dev/null +++ b/mods/mod-name-tooltip.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Name Tooltip" +filename = "modnametooltip_1.12.2-1.10.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "46e4e9aa1a443de953088148fdcd3c7b9255d7cf" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2739582 +project-id = 238747 diff --git a/mods/modularui.pw.toml b/mods/modularui.pw.toml new file mode 100644 index 000000000..bc75ae7f7 --- /dev/null +++ b/mods/modularui.pw.toml @@ -0,0 +1,13 @@ +name = "ModularUI" +filename = "modularui-2.4.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6b2500f19c2c423bb3a32bc1aa2c5f7414157ab1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5153413 +project-id = 624243 diff --git a/mods/more-overlays.pw.toml b/mods/more-overlays.pw.toml new file mode 100644 index 000000000..119f634c2 --- /dev/null +++ b/mods/more-overlays.pw.toml @@ -0,0 +1,13 @@ +name = "More Overlays" +filename = "moreoverlays-1.15.1-mc1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b308fe363f23343d0b073d04883c5fca63b08d0b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2745657 +project-id = 243478 diff --git a/mods/mouse-tweaks.pw.toml b/mods/mouse-tweaks.pw.toml new file mode 100644 index 000000000..711bfa12e --- /dev/null +++ b/mods/mouse-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "Mouse Tweaks" +filename = "MouseTweaks-2.10.1-mc1.12.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "17f778c7e64f1b71cee4e1f64d35a749bb6ea93d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3359843 +project-id = 60089 diff --git a/mods/multistorage.pw.toml b/mods/multistorage.pw.toml new file mode 100644 index 000000000..53d623696 --- /dev/null +++ b/mods/multistorage.pw.toml @@ -0,0 +1,13 @@ +name = "MultiStorage" +filename = "multistorage-1.12.0-1.4.14.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9889c2ae0d7c2c2f4ce728916206d7e85d0df375" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2710024 +project-id = 244864 diff --git a/mods/nae2.pw.toml b/mods/nae2.pw.toml new file mode 100644 index 000000000..dd9da7446 --- /dev/null +++ b/mods/nae2.pw.toml @@ -0,0 +1,13 @@ +name = "Neeve's AE2: Extended Life Additions" +filename = "nae2-1.6.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "02018e1e520d478b2b82a63ddb679452957bd415" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5380800 +project-id = 884359 diff --git a/mods/natures-compass.pw.toml b/mods/natures-compass.pw.toml new file mode 100644 index 000000000..ac9dc65d9 --- /dev/null +++ b/mods/natures-compass.pw.toml @@ -0,0 +1,13 @@ +name = "Nature's Compass" +filename = "NaturesCompass-1.12.2-1.8.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "60bcf179cab708f67bbce98d201e82f3e7be9266" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2893527 +project-id = 252848 diff --git a/mods/new-tardis-mod.pw.toml b/mods/new-tardis-mod.pw.toml new file mode 100644 index 000000000..4a6935da3 --- /dev/null +++ b/mods/new-tardis-mod.pw.toml @@ -0,0 +1,13 @@ +name = "New TARDIS Mod" +filename = "tardis-0.1.4A.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c134c921faf5b108e94f3998a7f903875f5fb5a1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2903453 +project-id = 290247 diff --git a/mods/no-worldgen-5-you.pw.toml b/mods/no-worldgen-5-you.pw.toml new file mode 100644 index 000000000..ce1b16e7d --- /dev/null +++ b/mods/no-worldgen-5-you.pw.toml @@ -0,0 +1,13 @@ +name = "No Worldgen 5 You" +filename = "NoWorldgen5You-1.12.2-1.0.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "de109b3247a4a19fef7515983b25fc77c17645ad" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2623496 +project-id = 274782 diff --git a/mods/nutrition-gtceu.pw.toml b/mods/nutrition-gtceu.pw.toml new file mode 100644 index 000000000..9395928a7 --- /dev/null +++ b/mods/nutrition-gtceu.pw.toml @@ -0,0 +1,13 @@ +name = "Nutrition: GTCEu" +filename = "Nutrition-GTCEu-1.12.2-1.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "022ae066140229d4e3db80d017ff98a11d700e36" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5047422 +project-id = 964594 diff --git a/mods/nutrition-unofficial-extended-life.pw.toml b/mods/nutrition-unofficial-extended-life.pw.toml new file mode 100644 index 000000000..aefa8f81f --- /dev/null +++ b/mods/nutrition-unofficial-extended-life.pw.toml @@ -0,0 +1,13 @@ +name = "Nutrition Unofficial Extended Life" +filename = "Nutrition-UEL-4.13.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ddcffe03efcbc1b1eaa9a9ea2f6760b27a379e67" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5049991 +project-id = 964516 diff --git a/mods/omlib.pw.toml b/mods/omlib.pw.toml new file mode 100644 index 000000000..fa3e77b26 --- /dev/null +++ b/mods/omlib.pw.toml @@ -0,0 +1,13 @@ +name = "OMLib" +filename = "omlib-1.12.2-3.1.5-256.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d7b5835de45067e2234cb0b5121bbd14291ef187" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3466259 +project-id = 254334 diff --git a/mods/ompd.pw.toml b/mods/ompd.pw.toml new file mode 100644 index 000000000..f51dab623 --- /dev/null +++ b/mods/ompd.pw.toml @@ -0,0 +1,13 @@ +name = "Open Modular Passive Defense" +filename = "ompd-1.12.2-3.1.1-76.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "14c99411e5d85e780774ad3918f2c235d327880e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3085585 +project-id = 254332 diff --git a/mods/openblocks-elevator.pw.toml b/mods/openblocks-elevator.pw.toml new file mode 100644 index 000000000..28b934370 --- /dev/null +++ b/mods/openblocks-elevator.pw.toml @@ -0,0 +1,13 @@ +name = "OpenBlocks Elevator" +filename = "ElevatorMod-1.12.2-1.3.14.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7701eb987d8102a345e46725f4f2c6b9fc83005c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2845365 +project-id = 250832 diff --git a/mods/opencomputers-icbm-classic-addon.pw.toml b/mods/opencomputers-icbm-classic-addon.pw.toml new file mode 100644 index 000000000..f634917e6 --- /dev/null +++ b/mods/opencomputers-icbm-classic-addon.pw.toml @@ -0,0 +1,13 @@ +name = "Opencomputers ICBM-Classic Addon" +filename = "OpenComputersICBMAddon-1.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e3d5a4ae8322073f688409dbb00df5a808f51cb9" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3196137 +project-id = 370697 diff --git a/mods/opencomputers.pw.toml b/mods/opencomputers.pw.toml new file mode 100644 index 000000000..4f9afad6f --- /dev/null +++ b/mods/opencomputers.pw.toml @@ -0,0 +1,13 @@ +name = "OpenComputers" +filename = "OpenComputers-MC1.12.2-1.8.6+cd8851e.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fbd297d36827876c67b00d574d5e1d341c15373e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5741939 +project-id = 223008 diff --git a/mods/openglasses2.pw.toml b/mods/openglasses2.pw.toml new file mode 100644 index 000000000..811f185c9 --- /dev/null +++ b/mods/openglasses2.pw.toml @@ -0,0 +1,13 @@ +name = "OpenGlasses2" +filename = "OpenGlasses-MC1.12.2-2.2-53.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b8fb78b8b7e7486a40966cf283833fa04abc84b6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3143467 +project-id = 300957 diff --git a/mods/openmodularturrets.pw.toml b/mods/openmodularturrets.pw.toml new file mode 100644 index 000000000..f0baee2a4 --- /dev/null +++ b/mods/openmodularturrets.pw.toml @@ -0,0 +1,13 @@ +name = "Open Modular Turrets" +filename = "openmodularturrets-1.12.2-3.1.14-382.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0afda8104fb4198fcaae09ef3976b6536ff7dc6d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3466431 +project-id = 224663 diff --git a/mods/openscreens.pw.toml b/mods/openscreens.pw.toml new file mode 100644 index 000000000..a3035ad70 --- /dev/null +++ b/mods/openscreens.pw.toml @@ -0,0 +1,13 @@ +name = "OpenScreens" +filename = "openscreens-1.12.2-1.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ba8baa9401376fd233ad24c128569c71cb873a34" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2754959 +project-id = 325357 diff --git a/mods/opensecurity.pw.toml b/mods/opensecurity.pw.toml new file mode 100644 index 000000000..71e97799a --- /dev/null +++ b/mods/opensecurity.pw.toml @@ -0,0 +1,13 @@ +name = "OpenSecurity" +filename = "OpenSecurity-1.12.2-1.0-93.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8c708372f9fe90dd5f9b3ae6e5cdd9d404601b48" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4328814 +project-id = 231687 diff --git a/mods/packagedauto.pw.toml b/mods/packagedauto.pw.toml new file mode 100644 index 000000000..1acf24c2c --- /dev/null +++ b/mods/packagedauto.pw.toml @@ -0,0 +1,13 @@ +name = "PackagedAuto" +filename = "PackagedAuto-1.12.2-1.0.8.31.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b554129da3112088d998033be825d40fab0f7bf7" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4478952 +project-id = 308380 diff --git a/mods/placebo.pw.toml b/mods/placebo.pw.toml new file mode 100644 index 000000000..c20251164 --- /dev/null +++ b/mods/placebo.pw.toml @@ -0,0 +1,13 @@ +name = "Placebo" +filename = "Placebo-1.12.2-1.6.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d2142220e0944a8ad9d76ad7f50a5aa8d4e5fd80" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4629597 +project-id = 283644 diff --git a/mods/portal-gun.pw.toml b/mods/portal-gun.pw.toml new file mode 100644 index 000000000..a9c61a2bd --- /dev/null +++ b/mods/portal-gun.pw.toml @@ -0,0 +1,13 @@ +name = "Portal Gun" +filename = "PortalGun-1.12.2-7.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2796a6f3723be6fddfdc547a59cc4420a34d823d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2684033 +project-id = 229084 diff --git a/mods/pyrotech.pw.toml b/mods/pyrotech.pw.toml new file mode 100644 index 000000000..5846d01eb --- /dev/null +++ b/mods/pyrotech.pw.toml @@ -0,0 +1,13 @@ +name = "Pyrotech" +filename = "pyrotech-1.12.2-1.6.18.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "dfe30f41fe6617798c2507f3db9592904ceaeb5d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5822040 +project-id = 306676 diff --git a/mods/quark.pw.toml b/mods/quark.pw.toml new file mode 100644 index 000000000..ac42aa09e --- /dev/null +++ b/mods/quark.pw.toml @@ -0,0 +1,13 @@ +name = "Quark" +filename = "Quark-r1.6-179.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "35521fd8911b6ef893afbfe7d0d5d04962b3360d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2924091 +project-id = 243121 diff --git a/mods/randompatches-forge.pw.toml b/mods/randompatches-forge.pw.toml new file mode 100644 index 000000000..7ff24f310 --- /dev/null +++ b/mods/randompatches-forge.pw.toml @@ -0,0 +1,13 @@ +name = "RandomPatches (Forge)" +filename = "randompatches-1.12.2-1.22.1.10.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d45d3cadbbab3f2222059b2acb68d9620c6839a8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3133651 +project-id = 285612 diff --git a/mods/realistic-terrain-generation-unofficial.pw.toml b/mods/realistic-terrain-generation-unofficial.pw.toml new file mode 100644 index 000000000..a46b3cc48 --- /dev/null +++ b/mods/realistic-terrain-generation-unofficial.pw.toml @@ -0,0 +1,13 @@ +name = "Realistic Terrain Generation Unofficial" +filename = "RTGU-1.12.2-1.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c92f573c2f7c6f391658060d77031a3d400563c3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4696300 +project-id = 648514 diff --git a/mods/recurrent-complex.pw.toml b/mods/recurrent-complex.pw.toml new file mode 100644 index 000000000..19007d7b4 --- /dev/null +++ b/mods/recurrent-complex.pw.toml @@ -0,0 +1,13 @@ +name = "Recurrent Complex" +filename = "RecurrentComplex-1.4.8.6.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "31059d070bee48368050cf774ea3e8f9caea0356" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5615733 +project-id = 223150 diff --git a/mods/red-core.pw.toml b/mods/red-core.pw.toml new file mode 100644 index 000000000..6f53c627d --- /dev/null +++ b/mods/red-core.pw.toml @@ -0,0 +1,13 @@ +name = "Red Core" +filename = "!Red-Core-MC-1.8-1.12-0.6-Dev-8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "75a26e40a2a15d43a46798e101aee02825f6361f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5892019 +project-id = 873867 diff --git a/mods/redstone-control.pw.toml b/mods/redstone-control.pw.toml new file mode 100644 index 000000000..3a35cc4a5 --- /dev/null +++ b/mods/redstone-control.pw.toml @@ -0,0 +1,13 @@ +name = "Redstone Control" +filename = "RedstoneControl-1.12.2-0.3.1.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d50e4072e4f047b657c2f812a0d87dd78c7d3ea6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3005623 +project-id = 319994 diff --git a/mods/redstone-flux.pw.toml b/mods/redstone-flux.pw.toml new file mode 100644 index 000000000..f33f3448d --- /dev/null +++ b/mods/redstone-flux.pw.toml @@ -0,0 +1,13 @@ +name = "Redstone Flux" +filename = "RedstoneFlux-1.12-2.1.1.1-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7835c1dcc006e5d4a406a6b0615012b825e25044" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2920436 +project-id = 270789 diff --git a/mods/redstone-gauges-and-switches.pw.toml b/mods/redstone-gauges-and-switches.pw.toml new file mode 100644 index 000000000..6049db52d --- /dev/null +++ b/mods/redstone-gauges-and-switches.pw.toml @@ -0,0 +1,13 @@ +name = "Gauges and Switches" +filename = "rsgauges-1.12.2-1.2.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f5af46afabe353f8b27a3acfa8961ca9877ff394" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3907346 +project-id = 296686 diff --git a/mods/refinedtools.pw.toml b/mods/refinedtools.pw.toml new file mode 100644 index 000000000..299eeb62e --- /dev/null +++ b/mods/refinedtools.pw.toml @@ -0,0 +1,13 @@ +name = "ReFinedTools" +filename = "refinedtools-7.75.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1dbb580ac09c7e292dca63dfdc1df44de91c4194" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5644169 +project-id = 1085014 diff --git a/mods/resource-loader.pw.toml b/mods/resource-loader.pw.toml new file mode 100644 index 000000000..c0a15508f --- /dev/null +++ b/mods/resource-loader.pw.toml @@ -0,0 +1,13 @@ +name = "Resource Loader" +filename = "ResourceLoader-MC1.12.1-1.5.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d8c10e6e29df5f9bc51e468642d9b3cae5f2f8e4" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2477566 +project-id = 226447 diff --git a/mods/roboticparts.pw.toml b/mods/roboticparts.pw.toml new file mode 100644 index 000000000..572d9bede --- /dev/null +++ b/mods/roboticparts.pw.toml @@ -0,0 +1,13 @@ +name = "Robotic Parts" +filename = "cyberware-1.12.2-0.2.11.29.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "51b24de17337a6a46581c9031a08a04ae6934827" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3366534 +project-id = 283377 diff --git a/mods/scaling-health.pw.toml b/mods/scaling-health.pw.toml new file mode 100644 index 000000000..45cf4d23e --- /dev/null +++ b/mods/scaling-health.pw.toml @@ -0,0 +1,13 @@ +name = "Scaling Health" +filename = "ScalingHealth-1.12.2-1.3.42+147.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e621a6b6319bd3a854055af2b21826068852f0ea" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2816920 +project-id = 248027 diff --git a/mods/scape-and-run-parasites.pw.toml b/mods/scape-and-run-parasites.pw.toml new file mode 100644 index 000000000..2bec5de3b --- /dev/null +++ b/mods/scape-and-run-parasites.pw.toml @@ -0,0 +1,13 @@ +name = "Scape and Run: Parasites" +filename = "SRParasites-1.12.2v1.9.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8da272e544b910fa48ff813f6f1dbf4904204b5c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4494577 +project-id = 348025 diff --git a/mods/serene-seasons.pw.toml b/mods/serene-seasons.pw.toml new file mode 100644 index 000000000..038cc39a5 --- /dev/null +++ b/mods/serene-seasons.pw.toml @@ -0,0 +1,13 @@ +name = "Serene Seasons" +filename = "SereneSeasons-1.12.2-1.2.18-universal.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "05acc4faf6f5ca31215599c0ebf778ba18a9121b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2799213 +project-id = 291874 diff --git a/mods/serene-tweaks.pw.toml b/mods/serene-tweaks.pw.toml new file mode 100644 index 000000000..02f2d1c24 --- /dev/null +++ b/mods/serene-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "Serene Tweaks" +filename = "SereneTweaks-1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a730ba27c83ceba9fd1d847b3f7cbe928c93cd7b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3152093 +project-id = 408195 diff --git a/mods/serializationisbad.pw.toml b/mods/serializationisbad.pw.toml new file mode 100644 index 000000000..628216955 --- /dev/null +++ b/mods/serializationisbad.pw.toml @@ -0,0 +1,13 @@ +name = "SerializationIsBad" +filename = "serializationisbad-1.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fe7fff66dc1f96e17087ef4519b51bb5c3a0eb6d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4672511 +project-id = 896591 diff --git a/mods/shetiphiancore.pw.toml b/mods/shetiphiancore.pw.toml new file mode 100644 index 000000000..d00d2d56e --- /dev/null +++ b/mods/shetiphiancore.pw.toml @@ -0,0 +1,13 @@ +name = "ShetiPhianCore" +filename = "shetiphiancore-1.12.0-3.5.9.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d345402a63b14554e81ca546f1b64285d3ecb7b6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2661618 +project-id = 71738 diff --git a/mods/silent-lib.pw.toml b/mods/silent-lib.pw.toml new file mode 100644 index 000000000..bc9d02350 --- /dev/null +++ b/mods/silent-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Silent Lib (silentlib)" +filename = "SilentLib-1.12.2-3.0.14+168.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5fca3fcef48502fdb26d020eb1d8427516724cb9" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2851111 +project-id = 242998 diff --git a/mods/sledgehammer.pw.toml b/mods/sledgehammer.pw.toml new file mode 100644 index 000000000..2e534ac5b --- /dev/null +++ b/mods/sledgehammer.pw.toml @@ -0,0 +1,13 @@ +name = "Sledgehammer" +filename = "Sledgehammer-1.12.2-2.0.26.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "bdd413df8203a1af255231d2026907fe62700e25" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5264329 +project-id = 319175 diff --git a/mods/sound-physics-remixin.pw.toml b/mods/sound-physics-remixin.pw.toml new file mode 100644 index 000000000..4b5ae86aa --- /dev/null +++ b/mods/sound-physics-remixin.pw.toml @@ -0,0 +1,13 @@ +name = "籁/Sound Physics Remixin" +filename = "Sound-Physics-1.12.2-1.1.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "aee7d9de608f6b07bb64b1077cc6b9fd429999e0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5461056 +project-id = 951159 diff --git a/mods/stargate-network.pw.toml b/mods/stargate-network.pw.toml new file mode 100644 index 000000000..8f13ea763 --- /dev/null +++ b/mods/stargate-network.pw.toml @@ -0,0 +1,13 @@ +name = "Stargate Network" +filename = "SGCraft-2.0.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b4ad825a66379bd8331e3c4e7b6466728e9beec1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3044648 +project-id = 289115 diff --git a/mods/stellarcore.pw.toml b/mods/stellarcore.pw.toml new file mode 100644 index 000000000..ceece60d1 --- /dev/null +++ b/mods/stellarcore.pw.toml @@ -0,0 +1,13 @@ +name = "StellarCore" +filename = "StellarCore-1.5.21.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a1be216f5d0d82daee54c6d8bbedb3c3f89c551d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5952608 +project-id = 1064321 diff --git a/mods/storage-drawers.pw.toml b/mods/storage-drawers.pw.toml new file mode 100644 index 000000000..b0b57b59d --- /dev/null +++ b/mods/storage-drawers.pw.toml @@ -0,0 +1,13 @@ +name = "Storage Drawers" +filename = "StorageDrawers-1.12.2-5.5.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "512979dd3ecfe70cffc4d1c59630855474837fd3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5758109 +project-id = 223852 diff --git a/mods/susycore.pw.toml b/mods/susycore.pw.toml new file mode 100644 index 000000000..efe2e8d5a --- /dev/null +++ b/mods/susycore.pw.toml @@ -0,0 +1,13 @@ +name = "SusyCore" +filename = "supersymmetry-v0.1.38.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fc1f67b85fa4d84aa576a3d482c79922b3765b8c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5994779 +project-id = 846224 diff --git a/mods/sync.pw.toml b/mods/sync.pw.toml new file mode 100644 index 000000000..f73cf44ec --- /dev/null +++ b/mods/sync.pw.toml @@ -0,0 +1,13 @@ +name = "Sync" +filename = "Sync-1.12.2-7.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "325ccca4a1f2b52161acfcd31224aab3e8e6cf5a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2682824 +project-id = 229090 diff --git a/mods/techguns.pw.toml b/mods/techguns.pw.toml new file mode 100644 index 000000000..0f4a31ef9 --- /dev/null +++ b/mods/techguns.pw.toml @@ -0,0 +1,13 @@ +name = "Techguns" +filename = "techguns-1.12.2-2.0.2.0_pre3.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "65a5cc41422bc665ec4b7d5e115efc7d95b002d7" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2958103 +project-id = 244201 diff --git a/mods/tellme.pw.toml b/mods/tellme.pw.toml new file mode 100644 index 000000000..3ede6933d --- /dev/null +++ b/mods/tellme.pw.toml @@ -0,0 +1,13 @@ +name = "TellMe" +filename = "tellme-1.12.2-0.7.0-dev.20200919.184303.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6e637d9047af361f8b64bfb2053f7da891938571" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3060563 +project-id = 225781 diff --git a/mods/the-beneath.pw.toml b/mods/the-beneath.pw.toml new file mode 100644 index 000000000..086716ad6 --- /dev/null +++ b/mods/the-beneath.pw.toml @@ -0,0 +1,13 @@ +name = "The Beneath" +filename = "The Beneath-1.12.2-1.7.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1d14c60730c947fb261218649e32d9d38b2f2db3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3425551 +project-id = 254629 diff --git a/mods/the-one-probe.pw.toml b/mods/the-one-probe.pw.toml new file mode 100644 index 000000000..d55fce947 --- /dev/null +++ b/mods/the-one-probe.pw.toml @@ -0,0 +1,13 @@ +name = "The One Probe" +filename = "theoneprobe-1.12-1.4.28.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d5b5be5d5d54de5ed35c96131118c411a51129bc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2667280 +project-id = 245211 diff --git a/mods/tickcentral.pw.toml b/mods/tickcentral.pw.toml new file mode 100644 index 000000000..1f61935db --- /dev/null +++ b/mods/tickcentral.pw.toml @@ -0,0 +1,13 @@ +name = "TickCentral" +filename = "TickCentral-3.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "79bcdbd58175111c7541a08e8d512ba6bf6ceb93" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3140670 +project-id = 377201 diff --git a/mods/tipthescales.pw.toml b/mods/tipthescales.pw.toml new file mode 100644 index 000000000..18184d29e --- /dev/null +++ b/mods/tipthescales.pw.toml @@ -0,0 +1,13 @@ +name = "TipTheScales" +filename = "TipTheScales-1.12.2-1.0.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e63241c7fa81c7fce9f3df0121682bcdcb63929c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2689835 +project-id = 282313 diff --git a/mods/tool-belt.pw.toml b/mods/tool-belt.pw.toml new file mode 100644 index 000000000..813fe5b17 --- /dev/null +++ b/mods/tool-belt.pw.toml @@ -0,0 +1,13 @@ +name = "Tool Belt" +filename = "ToolBelt-1.12.2-1.9.14.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6a9078c5d0f9e92a9f66ded407cba4b48dadbdf8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3459767 +project-id = 260262 diff --git a/mods/top-addons.pw.toml b/mods/top-addons.pw.toml new file mode 100644 index 000000000..e40a8ae28 --- /dev/null +++ b/mods/top-addons.pw.toml @@ -0,0 +1,13 @@ +name = "TOP Addons" +filename = "topaddons-1.12.2-1.13.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "81fd91d9b4579a3f07a8d3b860f7db5426e77c72" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2887479 +project-id = 247111 diff --git a/mods/top-extras.pw.toml b/mods/top-extras.pw.toml new file mode 100644 index 000000000..87e66dad8 --- /dev/null +++ b/mods/top-extras.pw.toml @@ -0,0 +1,13 @@ +name = "TOP Extras" +filename = "topextras-1.12.2-1.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fdc3bbd18af4d2e8035b61e7e32b7bcde8f8e7c1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3813089 +project-id = 628618 diff --git a/mods/torchmaster.pw.toml b/mods/torchmaster.pw.toml new file mode 100644 index 000000000..94e5424b8 --- /dev/null +++ b/mods/torchmaster.pw.toml @@ -0,0 +1,13 @@ +name = "Torchmaster" +filename = "torchmaster_1.12.2-1.8.5.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8bc4bae76967b025746768473462d446ee09f505" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3529742 +project-id = 254268 diff --git a/mods/track-api.pw.toml b/mods/track-api.pw.toml new file mode 100644 index 000000000..b369f6a98 --- /dev/null +++ b/mods/track-api.pw.toml @@ -0,0 +1,13 @@ +name = "Track API" +filename = "TrackAPI-1.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e63bee0992b0a3403d8a95eb19676ce716691c50" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2825260 +project-id = 282613 diff --git a/mods/travelers-backpack.pw.toml b/mods/travelers-backpack.pw.toml new file mode 100644 index 000000000..83fc09317 --- /dev/null +++ b/mods/travelers-backpack.pw.toml @@ -0,0 +1,13 @@ +name = "Traveler's Backpack" +filename = "TravelersBackpack-1.12.2-1.0.35.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5c9157582cc081f0d3b4090f3a2dbc5cfbe70cc6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3150850 +project-id = 321117 diff --git a/mods/unilib.pw.toml b/mods/unilib.pw.toml new file mode 100644 index 000000000..d07a9c608 --- /dev/null +++ b/mods/unilib.pw.toml @@ -0,0 +1,13 @@ +name = "UniLib" +filename = "UniLib-1.0.3+1.12.2-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "10b43ff782f4d3e212d19f56405d66e3dcc1c075" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5797752 +project-id = 1056812 diff --git a/mods/universal-mod-core.pw.toml b/mods/universal-mod-core.pw.toml new file mode 100644 index 000000000..24ea37ecf --- /dev/null +++ b/mods/universal-mod-core.pw.toml @@ -0,0 +1,13 @@ +name = "Universal Mod Core" +filename = "UniversalModCore-1.12.2-forge-1.2.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "efe50ef6834036fc69b1ae7536921e930ea8f091" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4975229 +project-id = 371784 diff --git a/mods/universal-tweaks.pw.toml b/mods/universal-tweaks.pw.toml new file mode 100644 index 000000000..e8bfc8b38 --- /dev/null +++ b/mods/universal-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "Universal Tweaks" +filename = "UniversalTweaks-1.12.2-1.13.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1645310ef714920af062f9c612d077b7a7683aad" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5860191 +project-id = 705000 diff --git a/mods/vertically-stacked-dimensions.pw.toml b/mods/vertically-stacked-dimensions.pw.toml new file mode 100644 index 000000000..851015ff6 --- /dev/null +++ b/mods/vertically-stacked-dimensions.pw.toml @@ -0,0 +1,13 @@ +name = "Vertically Stacked Dimensions" +filename = "VerticallyStackedDimensions-1.12.2-0.1.9.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "91a0696178f1e80b1ed172a57cf50a10cffbb38b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2937031 +project-id = 310992 diff --git a/mods/vintagefix.pw.toml b/mods/vintagefix.pw.toml new file mode 100644 index 000000000..5e8d2cfd8 --- /dev/null +++ b/mods/vintagefix.pw.toml @@ -0,0 +1,13 @@ +name = "VintageFix" +filename = "vintagefix-0.5.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6cfbd3ded0d8d6c47e3e5aa822f38fb753ebae3e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5536276 +project-id = 871198 diff --git a/mods/visualores.pw.toml b/mods/visualores.pw.toml new file mode 100644 index 000000000..1ff5f9d4a --- /dev/null +++ b/mods/visualores.pw.toml @@ -0,0 +1,13 @@ +name = "VisualOres" +filename = "visualores-0.2.6.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "36b7821f7bae9302c95be5972271b3ea34026e66" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5828524 +project-id = 895539 diff --git a/mods/weeping-angels-mod.pw.toml b/mods/weeping-angels-mod.pw.toml new file mode 100644 index 000000000..49f89be2e --- /dev/null +++ b/mods/weeping-angels-mod.pw.toml @@ -0,0 +1,13 @@ +name = "Doctor Who: Weeping Angels" +filename = "weeping-angels-46.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a520f8a4b1a90d3d782683e3d9429e92c40b1ab5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2928003 +project-id = 291249 diff --git a/mods/world-class-trustworthy-floppas.pw.toml b/mods/world-class-trustworthy-floppas.pw.toml new file mode 100644 index 000000000..24e7be4ce --- /dev/null +++ b/mods/world-class-trustworthy-floppas.pw.toml @@ -0,0 +1,13 @@ +name = "World-Class Trustworthy Floppas" +filename = "caracalsmod-1.0.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2c4713ab674fd3d8c297e0f2e23323c508662d87" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4723473 +project-id = 870211 diff --git a/mods/worldedit.pw.toml b/mods/worldedit.pw.toml new file mode 100644 index 000000000..8aac64b31 --- /dev/null +++ b/mods/worldedit.pw.toml @@ -0,0 +1,13 @@ +name = "WorldEdit" +filename = "worldedit-forge-mc1.12.2-6.1.10-dist.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "17314bdab33678478af060d2156338ee34db8a09" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 2941712 +project-id = 225608 diff --git a/mods/xp-orb-clump.pw.toml b/mods/xp-orb-clump.pw.toml new file mode 100644 index 000000000..cd2a4384c --- /dev/null +++ b/mods/xp-orb-clump.pw.toml @@ -0,0 +1,13 @@ +name = "Fixeroo" +filename = "Fixeroo-2.3.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "830fdba6dd103baa7378567f3356c0564086462b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5745976 +project-id = 633806 diff --git a/mods/xtones.pw.toml b/mods/xtones.pw.toml new file mode 100644 index 000000000..96ddfa0d3 --- /dev/null +++ b/mods/xtones.pw.toml @@ -0,0 +1,13 @@ +name = "Xtones" +filename = "Xtones-1.2.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0e4d2c453000370722e384eaca047958f898996f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3248033 +project-id = 257573 diff --git a/mods/yarcf.pw.toml b/mods/yarcf.pw.toml new file mode 100644 index 000000000..502737771 --- /dev/null +++ b/mods/yarcf.pw.toml @@ -0,0 +1,13 @@ +name = "Yet Another Recipe Conflict Fixer (YARCF) " +filename = "YARCF-0.14(1.12.2).jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ae04dd7b2527de7ac7a2d90c475a2d10f0864cb6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3310627 +project-id = 482566 diff --git a/mods/ynet-an-xnet-fork.pw.toml b/mods/ynet-an-xnet-fork.pw.toml new file mode 100644 index 000000000..a865ddca1 --- /dev/null +++ b/mods/ynet-an-xnet-fork.pw.toml @@ -0,0 +1,13 @@ +name = "YNet [XNet Fork]" +filename = "xnet-1.12-1.8.4-ynet.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d5886bc1e309a5d31fd251fa37c4c622e50dd715" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5665405 +project-id = 999559 diff --git a/mods/yungs-better-mineshafts-forge.pw.toml b/mods/yungs-better-mineshafts-forge.pw.toml new file mode 100644 index 000000000..7492edab1 --- /dev/null +++ b/mods/yungs-better-mineshafts-forge.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Mineshafts (Forge)" +filename = "BetterMineshaftsForge-1.12.2-2.2.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "590de926876fb792f48b120a3483970e8fff3aa3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3247154 +project-id = 389665 diff --git a/pack.toml b/pack.toml new file mode 100644 index 000000000..f463f6b6f --- /dev/null +++ b/pack.toml @@ -0,0 +1,13 @@ +name = "Supersymmetry" +author = "SymmetricDevs" +version = "0.1.13.5" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "bb3e9a261ca88b1ec4e63beaf2a818a7403ff2af2f0b25d89107a869efd58d7c" + +[versions] +forge = "14.23.5.2860" +minecraft = "1.12.2" diff --git a/packwiz b/packwiz new file mode 100644 index 000000000..18d850601 Binary files /dev/null and b/packwiz differ diff --git a/resourcepacks/black-mesa-transit-system.pw.toml b/resourcepacks/black-mesa-transit-system.pw.toml new file mode 100644 index 000000000..cf8773bc0 --- /dev/null +++ b/resourcepacks/black-mesa-transit-system.pw.toml @@ -0,0 +1,13 @@ +name = "Black Mesa Transit System" +filename = "Black_Mesa.zip" +side = "client" + +[download] +hash-format = "sha1" +hash = "8baad30fdae9104ce3725d67d0bfe553d1c08995" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5242450 +project-id = 885673 diff --git a/resourcepacks/shadertech.pw.toml b/resourcepacks/shadertech.pw.toml new file mode 100644 index 000000000..531287d87 --- /dev/null +++ b/resourcepacks/shadertech.pw.toml @@ -0,0 +1,13 @@ +name = "ShaderTech" +filename = "ShaderTech.zip" +side = "client" + +[download] +hash-format = "sha1" +hash = "76c16d22bda9780c648c037d868b486a16826e23" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4492858 +project-id = 851152