diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b2ccaf79..f6c1031e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,25 +1,43 @@
-name: Build
+name: Build
on:
push:
branches:
- - master
+ - master
- main
+
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
+
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
+
- name: Setup Python
uses: actions/setup-python@v5
with:
- python-version: '3.x'
- - name: Install pip dependencies
- run: pip install --user -r requirements.txt
+ python-version: "3.x"
+
+ - name: Install uv
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
+
+ - name: Cache uv environment
+ uses: actions/cache@v4
+ with:
+ path: .venv
+ key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }}
+ restore-keys: |
+ ${{ runner.os }}-uv-
+
+ - name: Install dependencies
+ run: uv sync --frozen
+
- name: Build and deploy site
- run: mkdocs gh-deploy --force
\ No newline at end of file
+ run: uv run mkdocs gh-deploy --force
diff --git a/README.md b/README.md
index 889fd6b6..7e1a4f3c 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
TWO-TORIAL, a compendium of information and guides about arcade games. It also serves as a comprehensive resource, providing a structured approach to setting up arcade games from specific franchises. This guide aims to offer clear instructions, troubleshooting tips, and essential information for enthusiasts and newcomers alike.
-https://two-torial.xyz/
+
## About
@@ -24,10 +24,10 @@ We welcome contributions to TWO-TORIAL. To contribute, follow these steps:
For quick local iteration, you can setup your own [mkdocs](https://www.mkdocs.org/user-guide/installation/) environment:
-1. Install the latest [Python](https://www.python.org/) and [pip](https://pip.readthedocs.io/en/stable/installing/)
-2. Make sure pip is up-to-date by running `pip install --upgrade pip`
-3. Change directory to the root of your forked project and run `python -m pip install -r requirements.txt`
-4. From the same root directory run `python -m mkdocs serve`
+1. Install the latest [Python](https://www.python.org/) and [uv](https://docs.astral.sh/uv/#installation)
+2. Change directory to the root of your forked project and run `uv sync`
+3. From the same root directory run `uv run mkdocs serve`
+4. You can also add `--dirty` at the end of the above command to speed up live reloads, but rendering errors could occur
You can now access your live preview at `http://127.0.0.1:8000/`
The live preview will update in real time as changes are found in your files.
diff --git a/docs/errorcodes/bemani.md b/docs/errorcodes/konami.md
similarity index 93%
rename from docs/errorcodes/bemani.md
rename to docs/errorcodes/konami.md
index 81b7fa9f..2802ff15 100644
--- a/docs/errorcodes/bemani.md
+++ b/docs/errorcodes/konami.md
@@ -1,8 +1,8 @@
-# BEMANI Error Codes
+# KONAMI Error Codes
!!! info "Synopsis"
- This section contains various BEMANI games error codes you might run across and potential steps to resolve them.
+ This section contains various Konami games error codes you might run across and potential steps to resolve them.
## Universal
@@ -92,7 +92,7 @@
!!! tip ""
- Setup error in pop'n Usaneko. Follow [Game Setup](/games/bemani/popn/usaneko/setup.md) and use proper `-url` and `-p` parameters in SpiceTools.
+ Setup error in pop'n Usaneko. Follow [Game Setup](/games/konami/popn/usaneko/setup.md) and use proper `-url` and `-p` parameters in SpiceTools.
## jubeat
diff --git a/docs/extras/controllers.md b/docs/extras/controllers.md
index db938771..00551f07 100644
--- a/docs/extras/controllers.md
+++ b/docs/extras/controllers.md
@@ -3,7 +3,7 @@
This guide provides an overview of popular arcade-style rhythm game controllers currently available to buy.
Controllers are ranked based on their popularity within the rhythm game community.
-## BEMANI
+## KONAMI
### beatmania IIDX
diff --git a/docs/extras/datamods.md b/docs/extras/datamods.md
index 558a8e4f..96154cd6 100644
--- a/docs/extras/datamods.md
+++ b/docs/extras/datamods.md
@@ -1,6 +1,6 @@
!!! info "Synopsis"
- This guide will cover how to mod your BEMANI game's data folder in a non-destructive way.
+ This guide will cover how to mod your KONAMI game's data folder in a non-destructive way.
No files will be removed or overwritten.
## Pre-requisites
@@ -14,24 +14,20 @@
- Please make sure the mod you're installing is **compatible with YOUR specific game and game version**
- If connecting to an **online network**, make sure they **explicitly allow** the mod you're about to install
- - TWO-TORIAL will **NOT** provide support with issues caused by mods besides **Omnimix** for beatmania IIDX
-## Preparing data_mods
+## Installing mod files
!!! tip ""
- Let's place your mod files in the right folder.
-
- - Create a `data_mods` folder next to the others in your game files
+ - Create a `data_mods` folder next to the others in your game files if it doesn't exist
- Depending on how your mod is packaged, you may or may not need to create another folder to contain it.
- Inside that folder, the structure should follow the one in `data/`.
+ - Place your mod files inside data_mods in a way that respects the following structure
+ `data_mods/mod_folder/`
- - Place your files inside that `data_mods/mod_folder/`
-
- If you're confused, the following may help you understand what this means.
+ You can think of the mod folder coming to overwrite your game's data folder at runtime.
+ If you're confused, the following may help you understand what we mean.
``` hl_lines="6-11"
📂data
@@ -58,13 +54,12 @@
**Directory**: `contents/data_mods/omnimix_31`
-## Loading data_mods
-
-### Installing ifs_layeredfs
+## Loading mods data files (ifs_layeredfs)
!!! tip ""
- We now need a way for our game to load our mods.
+ Overwriting game files with mods is heavily discouraged, as there is no clean way of undoing that.
+ This is where ifs_layeredfs comes in, to load modded data files without permanently modifying your game data.
- Download the most recent release of [ifs_layeredfs](https://github.com/mon/ifs_layeredfs/releases/)
@@ -74,8 +69,6 @@
- What we're interested in are the `64bit` and `32bit` folders:
-
- Your game is 32bit *(spice.exe to launch)*: go in the `32bit` folder
- Your game is 64bit *(spice64.exe to launch)*: go in the `64bit` folder
@@ -85,25 +78,43 @@
-### Loading ifs_layeredfs
+ Follow the [Injecting DLL Hooks](#injecting-dll-hooks) section to load this DLL.
+
+## Installing Omnifix (for IIDX Omnimix only)
+
+!!! info "Compatibility"
+
+ [Supported game versions](https://github.com/aixxe/omnifix?tab=readme-ov-file#compatibility)
+ For unsupported game versions, you'll have to patch Omnimix with [spice2x](patchsp2x.md) or [web](patchweb.md) patching.
!!! tip ""
- All that should be left to do is tell spice2x to load `ifs_hook.dll`.
+ Omnimix files require modification of your game DLL which can't be handled by ifs_layeredfs.
+ This is where Omnifix comes in, as a commonly agreed upon way of loading Omnimix for beatmania IIDX.
+
+ - Download the latest release archive for [omnifix](https://github.com/aixxe/omnifix/releases/) much like you did with ifs_layeredfs
+ - Extract the `omnifix.dll` file contained in the archive to your game's `modules` folder
+
+ Follow the [Injecting DLL Hooks](#injecting-dll-hooks) section to load this DLL.
+
+ Note that Omnifix also offers optional [launch parameters](https://github.com/aixxe/omnifix?tab=readme-ov-file#options) you may want to consider.
+
+## Injecting DLL Hooks
+
+!!! tip ""
+
+ Adding DLL files to your modules folder won't necessarily make them load automatically.
+ You sometimes need to tell spice2x to load each file individually, like with the DLLs mentioned in this guide.
- Open your game's `spicecfg.exe`
- Head to the `options` tab
- - Find the `Inject DLL Hooks` option under `Common` and type in `ifs_hook.dll` then press Enter
+ - Find the `Inject DLL Hooks` option under `Common`
+ - Add the name of the DLL file(s) you want to load inside the text box
- Note: If you have other DLL hooks, simply add more by having a space in between them..
- Example: `ifs_hook.dll somehook.dll`
+ Example: `ifs_hook.dll omnifix.dll`
+
+ You may list one or multiple DLL files separated by a space.
+ The order does matter, as it dictates in which order the DLL files are loaded.
+ **We recommend loading `ifs_hook.dll` before all else**.
-
- Assuming your `data_mods` folder has been made properly, that's it!
-
-!!! danger "Extra step for beatmania IIDX Omnimix"
-
- You also need to patch your game's DLL with the `Omnimix` patch.
-
- For more information on how to patch your game, head over to the [spice2x Patching](/extras/patchsp2x.md) page!
\ No newline at end of file
diff --git a/docs/extras/linux_konami.md b/docs/extras/linux_konami.md
new file mode 100644
index 00000000..dd9bcbd8
--- /dev/null
+++ b/docs/extras/linux_konami.md
@@ -0,0 +1,333 @@
+!!! info "Synopsis"
+
+ Konami arcade games and associated community tooling are built to run on Windows.
+ This guide will document the best currently known ways to get games working on Linux systems.
+
+!!! warning "Compatibility"
+
+ **ONLY** the following game and versions are confirmed to work with the process described in this guide.
+
+ | Game | Version(s) | Caveats (if any) |
+ |------|:----------:|:----------------:|
+ | Sound Voltex | `Exceed Gear` | Subscreen clicks don't work |
+ | DanceDanceRevolution | `World` | |
+ | Mahjong Fight Girl | | |
+
+ This guide was primarily written targetting arch-based systems running KDE and pipewire.
+ **Instructions should still be distro and DE agnostic, but your mileage may vary.**
+
+## Pre-requisites
+
+!!! tip ""
+
+ - A Linux system with:
+ - `pipewire` as an audio backend
+ - `wine` with wow64 included (default on arch since June 2025)
+ - `winetricks curl unzip` installed
+ - `gstreamer gst-plugins-good gst-plugins-ugly gst-libav` for codecs (package names may vary)
+ - Compatible game data placed inside a `📂contents` directory
+ - Your game's regular setup guide opened in another tab
+
+??? tip "Extra requirements for NixOS"
+
+ `spice2x` requires an optional wine feature which NixOS does not enable by default.
+ Apart from that, a patch for `winetricks` is needed due to [weirdness with winetricks on NixOS with WoW64 wine](https://github.com/NixOS/nixpkgs/issues/338367).
+
+ To fix this, copy this to your confiuration:
+ ```nix
+ environment.systemPackages = [
+ (
+ pkgs.wine-with-pcsclite.override {
+ wineBuild = "wineWow64";
+ }
+ )
+ ];
+
+ nixpkgs.overlays = [
+ (
+ final: prev: {
+ wine-with-pcsclite = prev.wine.overrideAttrs (old: {
+ buildInputs = old.buildInputs ++ [final.pcsclite];
+ configureFlags = old.configureFlags ++ ["--with-pcsclite"];
+ });
+ winetricks = prev.winetricks.overrideAttrs (old: {
+ patches = [
+ (final.fetchpatch {
+ # make WINE_BIN and WINESERVER_BIN overridable
+ # see https://github.com/NixOS/nixpkgs/issues/338367
+ url = "https://github.com/Winetricks/winetricks/commit/1d441b422d9a9cc8b0a53fa203557957ca1adc44.patch";
+ hash = "sha256-AYXV2qLHlxuyHC5VqUjDu4qi1TcAl2pMSAi8TEp8db4=";
+ })
+ ];
+ postInstall =
+ old.postInstall
+ + ''
+ sed -i \
+ -e '2i : "''${WINESERVER_BIN:=/run/current-system/sw/bin/wineserver}"' \
+ -e '2i : "''${WINE_BIN:=/run/current-system/sw/bin/.wine}"' \
+ "$out/bin/winetricks"
+ '';
+ });
+ }
+ )
+ ];
+ ```
+
+## Automated setup (for spice2x compatible games)
+
+!!! tip ""
+
+ - Download the `sp2x-linux-setup.sh` script from [NotAkitake/sp2x-linux-setup](https://github.com/NotAkitake/sp2x-linux-setup/)
+ - Place it next to your `📂contents` directory contaning compatible game files
+ - Make the script executable `chmod +x sp2x-linux-setup.sh`
+ - Run the script and follow instructions
+
+## Manual setup
+
+!!! info "This section will mostly describe what the automated process above achieves"
+
+### Installing spice2x
+
+!!! tip ""
+
+ This process is largely the **same as windows** and can be found in your game's setup guide.
+ Simply place the `spice.exe` or `spice64.exe` executable inside `📂contents`.
+
+ We won't need `spicecfg.exe` however.
+ Instead we will later pass `-cfg` as a launch argument to the main spice2x executable later.
+
+!!! warning "NVIDIA Stubs"
+
+ **For ALL graphics cards:** If your game's setup guide has a `Additional steps for AMD and Intel graphics cards` warning in its **Installing spice2x** section, **do what it says**.
+
+### Wine prefix
+
+!!! danger "Double check commands"
+
+ We provide ready-made command for simplicity, however **don't blindy copy and execute them**.
+ **ALWAYS** double check command before running them, and substitute `REPLACE_THIS_PATH` with your own location.
+
+#### Initializing
+
+!!! tip ""
+
+ - Create an empty `📂prefix` directory in the location of your choosing
+ **We advise creating a new prefix for every game and placing it next to `📂contents`**.
+
+ - Run the following command to initialize a new wine prefix without being prompted for mono or gecko.
+
+ ```sh
+ WINEARCH=win64 WINEPREFIX=REPLACE_THIS_PATH/prefix WINEDLLOVERRIDES="mscoree=d;mshtml=d" wineboot --init
+ ```
+
+#### Common dependencies
+
+!!! tip ""
+
+ Some dependencies are required across most games, install them to your prefix using winetricks as follows:
+
+ ```sh
+ WINEARCH=win64 WINEPREFIX=REPLACE_THIS_PATH/prefix winetricks -q dxvk d3dcompiler_42 d3dcompiler_43 d3dcompiler_46 d3dcompiler_47
+ ```
+
+#### Game-specific dependencies
+
+!!! info "If there is no tab for your game, you may skip this step"
+
+!!! tip ""
+
+ === "Default (none)"
+
+ === "DDR"
+
+ Install these to your prefix for background movies to play, otherwise the game will crash.
+
+ ```sh
+ WINEARCH=win64 WINEPREFIX=REPLACE_THIS_PATH/prefix winetricks -q quartz devenum amstream windowscodecs
+ ```
+
+### (optional) PipeWire audio sink
+
+!!! info "You can create an audio device games will accept that routes audio to your desired hardware"
+
+ It **may not be necessary** for all games as it depends on your specific setup and game.
+ You could try following the rest of the guide without this virtual sink first to see whether you need it or not.
+
+!!! tip ""
+
+ - Create the `.config/pipewire/pipewire.conf.d` directory in your home directory if it doesn't already exist
+
+ ```sh
+ mkdir -p "$HOME/.config/pipewire/pipewire.conf.d"
+ ```
+
+ - Create a `spice2x-sink.conf` file in that directory containing:
+
+ ```sh
+ context.modules = [
+ {
+ name = libpipewire-module-loopback
+ args = {
+ audio.position = [ FL FR ]
+ capture.props = {
+ media.class = Audio/Sink
+ audio.format = S16LE
+ audio.rate = 44100
+ audio.channels = 2
+ node.name = spice2x41
+ node.description = "spice2x @ 44100Hz"
+ }
+ playback.props = {
+ node.passive = true
+ node.name = spice2x41.output
+ node.description = "SPICE2X 44100Hz OUTPUT"
+ target.object = "alsa_output.pci-0000_04_00.6.HiFi__hw_Generic_1__sink"
+ audio.format = S16LE
+ }
+ }
+ }
+ ]
+ ```
+
+ The `audio.rate` may need to be set to 48000 on a per game-basis, but for the games covered here, 44100 is fine.
+
+ The `target.object` set above means audio will be routed the first audio device it finds.
+ If you have multiple audio devices available and want to make sure it outputs to a specific one, run:
+
+ ```sh
+ pw-cli list-objects | awk '/node.name/ {name=$0} /media.class/ && /Audio\/Sink/ {gsub(/.*= "|"/,"",name); print name}'
+ ```
+
+ Replace the `target.object` device with the output line corresponding to your desired output device.
+ For example:
+
+ ```sh
+ target.object = "alsa_output.usb-Focusrite_Scarlett_Solo_4th_Gen_S1APY0Z3611B4E-00.HiFi__Line1__sink"
+ ```
+
+ - **Finally**, save and exit then restart pipewire. On systemd distros you may do it by running:
+
+ ```sh
+ systemctl --user restart pipewire.service pipewire-pulse.socket
+ ```
+
+### (optional) Launcher scripts
+
+!!! info "This section will help you create two bash scripts you may use to start and configure your game"
+
+ They are not mandatory but very handy to have, rather than remembering commands to run spice executables with the right prefix, paths, arguments, etc..
+
+!!! tip "Game start"
+
+ Let's create the main launch script first, which will also be used by our second script.
+
+ - Next to your contents directory, create a `launch.sh` file containing:
+
+ ```bash hl_lines="6 19"
+ #!/usr/bin/env bash
+ # Game Launcher
+
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
+ export WINEARCH=win64
+ export WINEPREFIX="REPLACE_THIS_PATH/prefix"
+
+ # Default arguments
+ ARGS=""
+
+ # Optional: Add arguments per line
+ # ARGS="\$ARGS -url localhost:8083" # Network URL
+ # ARGS="\$ARGS -p 01FXXXXXXXXXXXXXXXXX" # PCBID
+
+ # Append args to this script
+ ARGS="\$ARGS \$*"
+
+ cd "\$SCRIPT_DIR/contents" || exit
+ wine "spice64.exe" \$ARGS
+ ```
+
+ - On the first highlighted line: make sure `WINEPREFIX` points to your game prefix created earlier
+
+ - On the second highlighted line: replace `spice64.exe` with `spice.exe` if necessary
+
+ - Make the script executable by running `chmod +x launch.sh`
+
+!!! tip "Game config"
+
+ To get a graphical interface replicating what `spicecfg.exe` does, we can simply call our previous script and pass `-cfg` as an argument.
+
+ - Next to your previous script, create a `config.sh` file containing:
+
+ ```bash
+ #!/usr/bin/env bash
+ # Config Launcher
+
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
+ "$SCRIPT_DIR/launch.sh" -cfg
+ ```
+
+ - On the last line, make sure the file name matches the previous script
+
+ - Make the script executable by running `chmod +x config.sh`
+
+!!! warning "Try executing `config.sh`"
+
+ The spice2x configuration window for your game should appear.
+ Your game should also be detected and show in the top right!
+
+ If your game isn't detected, it's highly likely paths are wrong somewhere in your scripts.
+
+### Game-specific last steps
+
+!!! info "If there is no tab for your game, you may skip this step"
+
+!!! tip ""
+
+ === "Default (none)"
+
+ === "SDVX"
+
+ - You need to patch `Shared Mode WASAPI` to ensure audio comes through wine.
+ Either use the previously created `config.sh` to start spicecfg, or use the command in the next section.
+ If you don't know how patches work, follow instructions in our [spice2x patching](./patchsp2x.md) guide.
+
+ ---
+
+ - You need to set your monitor orientation to portait before playing
+
+ - **OR** If you want to play the game windowed and keep your display in landscape orientation:
+
+ - Create a `wine_desktop.reg` file containing:
+
+ ```reg
+ Windows Registry Editor Version 5.00
+
+ [HKEY_CURRENT_USER\Software\Wine\Explorer]
+ "Desktop"="Default"
+
+ [HKEY_CURRENT_USER\Software\Wine\Explorer\Desktops]
+ "Default"="1080x1920"
+ ```
+
+ - Fix the paths in the command below and run it. Then feel free to delete the `.reg` file:
+
+ ```sh
+ WINEARCH=win64 WINEPREFIX=REPLACE_THIS_PATH/prefix wine regedit REPLACE_THIS_PATH/wine_desktop.reg
+ ```
+
+### What's next?
+
+!!! success "Linux-specific instructions are over"
+
+ Head to your game's setup guide, straight to the "Configuring spice2x" section.
+
+ - **IF** you opted to use the PipeWire audio sink, set it as your default audio device before starting the game
+ - Skip the `Configuring audio` section
+ - Skip any section asking you to install VCRedist and/or DirectX, our prefix takes care of that
+ - Use the previously created `config.sh` instead of spicecfg, and `launch.sh` to start the game
+ **OR** If you opted not to create scripts, instead use this, fixing the paths and spice executable name:
+
+ ```sh
+ cd REPLACE_THIS_PATH/contents && WINEARCH=win64 WINEPREFIX=REPLACE_THIS_PATH/prefix wine "spice64.exe" -cfg
+ ```
+
+ And use the same command without the `-cfg` argument to start the game.
diff --git a/docs/games/bemani/ddr/a20/setup.md b/docs/games/bemani/ddr/a20/setup.md
deleted file mode 100644
index c5d8bc9c..00000000
--- a/docs/games/bemani/ddr/a20/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/a20/troubleshooting.md b/docs/games/bemani/ddr/a20/troubleshooting.md
deleted file mode 100644
index 9910e71b..00000000
--- a/docs/games/bemani/ddr/a20/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/a20plus/setup.md b/docs/games/bemani/ddr/a20plus/setup.md
deleted file mode 100644
index a73344c5..00000000
--- a/docs/games/bemani/ddr/a20plus/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/a20plus/troubleshooting.md b/docs/games/bemani/ddr/a20plus/troubleshooting.md
deleted file mode 100644
index 8e624602..00000000
--- a/docs/games/bemani/ddr/a20plus/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/a3/setup.md b/docs/games/bemani/ddr/a3/setup.md
deleted file mode 100644
index 09c13d0e..00000000
--- a/docs/games/bemani/ddr/a3/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/a3/troubleshooting.md b/docs/games/bemani/ddr/a3/troubleshooting.md
deleted file mode 100644
index bdf75ba5..00000000
--- a/docs/games/bemani/ddr/a3/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/common/troubleshooting.md b/docs/games/bemani/ddr/common/troubleshooting.md
deleted file mode 100644
index 26491b14..00000000
--- a/docs/games/bemani/ddr/common/troubleshooting.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# Troubleshooting
-
---8<-- "docs/snippets/common/data_warning.md"
-
-### Clock error
-
-!!! tip ""
-
- In the test menu, navigate to `CLOCK`, and set it to match your computer's time.
-
-### The game is running slow/lagging
-
-!!! tip ""
-
- Try to eliminate any unnecessary background processes during play.
-
-### Unable to login / Eamuse error / Network error
-
-!!! tip ""
-
- Get the proper Asphyxia plugin from our [Discord server](https://discord.gg/cZRUmEPK78) in the #ddr channel > Resources post.
- Make sure you didn't enable `-smartea` in spicecfg's options.
-
-### After choosing a song, the game freezes on the loading screen
-
-!!! tip ""
-
- There are two possible reasons for this. Either you may not have properly registered your codecs, or it's possible that your network doesn't support your game version.
-
-### Where are the option for Dancers/Shading/Measure lines/Fast-Slow/Layering?
-
-!!! tip ""
-
- These options are locked behind network requirements and will not be displayed unless you are connected to a network that has written support for these options. Patches are available to mitigate this, see our [spice2x Patching guide](/extras/patchsp2x.md).
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/world/setup.md b/docs/games/bemani/ddr/world/setup.md
deleted file mode 100644
index 42c66e12..00000000
--- a/docs/games/bemani/ddr/world/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/world/troubleshooting.md b/docs/games/bemani/ddr/world/troubleshooting.md
deleted file mode 100644
index e4f5d935..00000000
--- a/docs/games/bemani/ddr/world/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/30_resident/setup.md b/docs/games/bemani/iidx/30_resident/setup.md
deleted file mode 100644
index c0a54f64..00000000
--- a/docs/games/bemani/iidx/30_resident/setup.md
+++ /dev/null
@@ -1,375 +0,0 @@
-
-# Game Setup
-
---8<-- "docs/snippets/common/old_guide.md"
-
---8<-- "docs/snippets/common/data_warning.md"
-
-## About data
-
-!!! info "Standard (LDJ) / Lightning (TDJ)"
-
- Please keep the following in mind as you're going through this guide.
-
- IIDX's codename is `LDJ`. For `IIDX 30 Resident` it typically is `LDJ-003`.
-
- Two versions of the game exist:
-
- - **TDJ** expects a `120 Hz` compatible monitor for its main screen, and a second `60 Hz` touchscreen compatible monitor called a subscreen. The second monitor isn't mandatory, we can get around that using spice2x.
- - **LDJ** expects `60 Hz` monitor for its main screen, and no subscreen.
-
- We'll be using the terms **TDJ** for **Lightning**, and **LDJ** for **Standard** throughout the guide.
-
-## Preparing data
-
-!!! tip ""
-
- After downloading and extracting your data, we need to make sure your files aren't set to `Read-only`.
-
- - Right click the folder containing your data, then click on `Properties`.
- - In the `General` tab go down to `Attributes`, untick `Read-only` and click `Apply`.
- - A popup will appear, select `Apply changes to this folder, subfolder and files` and press `OK`.
- - Finally, click `OK` again to exit out of properties.
-
- You should end up with a file structure with a few folders only, as follows:
-
-
-
-??? warning "If your data doesn't look like this"
-
- If you're missing the `modules` folder and instead have bunch of `.dll` files next to your folders:
-
- - Create a `modules` folder.
- - Move all `.dll` files inside of it so you end up with a structure as shown above.
-
- If extra files are present next to your folders, such as executables, scripts, etc., **remove them**.
- **This also means your data was tampered with and we strongly recommend getting new data from somewhere else.**
-
-!!! info "If you don't need to update your data, you can skip over to the [Installing spice2x](#installing-spice2x) section"
-
-## Updating data
-
-??? danger "Please make sure you're using the right update for your current data"
-
- Patches re-uploaded by the community tend to be named `LDJ-DATECODE-to-DATECODE`.
-
- For example `LDJ-2022120800-to-2023090500`.
-
- - `2022120800` being your current data's version.
- - `2023090500` being the version you would arrive at.
-
-!!! tip ""
-
- - Extract your patch's files to your existing data in a way that matches its file structure. Agree to overwrite files if necessary.
- - Open `prop\ea3-config.xml` in a text editor and find the following lines near the top.
-
- ```xml
-
- LDJ
- J
- A
- A
- 2023090500
-
- ```
-
- On the line with `` the datecode needs to match your new version.
-
- - If that's already the case then great! Don't touch anything.
- - If it instead corresponds to our pre-patch datecode, replace it with the new one.
-
- Now save the file.
-
-## Installing spice2x
-
-!!! info ""
-
- If you already have spice2x installed, make sure it is up to date!
-
-!!! tip ""
-
- - Head over to [spice2x.github.io](https://spice2x.github.io) and download the latest release.
- - Extract the `spice64.exe` and `spicecfg.exe` files from the archive to your game's directory.
-
-
-
-## Configuring spice2x
-
-!!! info "Open `spicecfg.exe`, each following sub-section corresponds to a tab at the top"
-
-### Buttons
-
-!!! tip ""
-
- Click on `Bind` then press the key you want associated with the action.
-
- With your controller and/or keyboard plugged in, configure your keys for:
-
- - **Maintenance**: `Service, Test`
- - **P1 Game buttons**: `1 to 7, Start, EFFECT, VEFX`
- - **P1 Keypad**: `Keypad Insert Card`
-
- **Only if** you're using LDJ:
-
- - **P1 Keypad**: `1 to 9`
-
- **Only if** you're playing using a keyboard:
-
- - **Turntable**: `TT+, TT-` **and optionally** `TT+/-` which alternates between `TT+` and `TT-` on each press.
-
-### Analogs (controller/cab only)
-
-!!! tip ""
-
- With a controller rather than binding buttons to `TT+` and `TT-`, you need to:
-
- - For Turntable P1, click `Bind`.
- - In `Device`, pick your controller.
- - In `Control`, pick whichever one corresponds to the turntable.
- - Turn your turntable ensuring that the Preview turns along with it.
- - Click `Close`, leaving the rest of the settings alone.
-
-### Overlay
-
-!!! tip ""
-
- Modifying buttons in this section is not required but you are free to change what you want.
-
- Click on `Bind` then press the key you want associated with the action.
-
-### Lights (controller/cab only)
-
-!!! tip ""
-
- Your controller might support having its lights controlled by the game through spice2x.
-
- If it does, here's how you may link different actions to your lights:
-
- - Click `Bind`.
- - In `Device`, pick your controller.
- - In `Light Control`, select the corresponding light.
- - Click `Close`.
- - Repeat for your other lights.
-
-### Cards
-
-!!! info "Covered in the [Connecting to a network](#connecting-to-a-network) section"
-
-### Patches
-
-!!! info "Go through the [spice2x Patching](/extras/patchsp2x.md) page to import patches"
-
-!!! danger "As a general rule of thumb, if you're not sure what a patch does or you're not absolutely certain you need it, leave it alone, regardless of recommendations below"
-
-??? tip "General patches"
-
- | Patch | Recommendation | Description |
- |-----------------------------------------------|---------------- |-------------|
- | Standard/Menu Timer Freeze | Either | Freezes the timer in all non-premium environments. |
- | Premium Free Timer Freeze | Either | Freezes the timer in Premium Free mode. |
- | Cursor Lock | Either | In song select, always returns to the previously selected song. |
- | CS-style Song Start Delay | Either | At the start of a song, holding Start will pause it until you release it. |
- | Increase Game Volume | Either | Ignores in-game settings and keeps the volume at a maximum, helpful for `TDJ` which tends to be quiet. |
- | Hide all bottom text | Either | Hides text at the bottom of the screen such as `Credits` or `Paseli`. |
-
-### API
-
-!!! warning "Leave everything at default unless you know what you're doing"
-
-### Options
-
-!!! info "If you don't know what an option does, hover over the its name with your mouse"
-
-
-
-!!! danger "Be very careful changing options you don't understand as it may cause issues"
-
-!!! tip "Required"
-
- | Category | Option | Parameter | Setting |
- |---------------|-----------------------|-------------------|---------|
- | Game Options | IIDX Disable Cameras | -iidxdisablecams | ON |
- | Network | EA Service URL | -url | Covered in [Connecting to a network](#connecting-to-a-network) |
-
-!!! warning "Required For TDJ"
-
- | Category | Option | Parameter | Setting |
- |---------------|-----------------------|-------------------|---------|
- | Game Options | IIDX TDJ Mode | -iidxtdj | ON |
-
- **If you only have a single 120 Hz monitor**, and not another 60 Hz touchscreen:
-
- | Category | Option | Parameter | Setting |
- |---------------|-----------------------|-----------------------------------|---------|
- | Game Options | IIDX TDJ Mode | -graphics-force-single-adapter | ON |
-
-
-!!! tip "Highly Recommended for NVIDIA users ONLY"
-
- | Category | Option | Parameter | Setting |
- |-------------------|-----------------------------------|---------------| |
- | Graphics (common) | NVIDIA profile optimization | -nvprofile | ON |
-
-
-### Advanced & Development
-
-!!! warning "Leave everything at default unless you know what you're doing"
-
-## Connecting to a network
-
-!!! danger "Please choose one of the two solutions, not both!"
-
-??? tip "Remote (Online Network)"
-
- Open `spicecfg.exe` and head to the `Options` tab.
-
- In the `Network` category, set the following settings:
-
- - `EA Service URL` to the URL provided by your network.
- - `PCBID` to the PCBID provided by your network.
-
-
-
- Next you need a card number.
- If you don't already have one, generate one in the `Cards` tab.
- To keep your card number safe, create a new `.txt` file with ONLY it inside.
-
- Once that's done, head to the `Cards` tab, for `Player 1` click `Open...` and point to your text file.
-
-
-
-??? tip "Local e-amuse Emulator (Asphyxia)"
-
- This is covered in the [Asphyxia CORE](/extras/asphyxia.md) page.
-
-## Pre-launch requirements
-
-!!! info "These steps are required, otherwise your game won't run"
-
-### VCRedist & DirectX
-
-!!! tip ""
-
- - Download and install the latest [VCRedist](https://github.com/abbodi1406/vcredist/releases/latest) (`VisualCppRedist_AIO_x86_x64.exe`)
- - Download and install the [DirectX End-User Runtimes](https://www.microsoft.com/en-us/download/details.aspx?id=8109)
-
-### Audio
-
-!!! tip ""
-
- - Open `spicecfg.exe`.
- - At the very top, click on `Shortcuts` then `Audio Playback Devices`.
- - In the popup window, right click on your default audio device, and click on `Properties`.
- - Go to the `Advanced` tab.
- - Check both boxes under `Exclusive Mode`.
- - Open the `Default Format` dropdown.
- - Pick the `24 bit, 44100 Hz (CD Quality)` option and click `Apply` then `OK`.
-
-
-
-### Standard / Lightning / Language settings
-
-!!! info "Read through the [Extra Information](extras.md) page and edit your `prop\ea3-config.xml` file if necessary"
-
-### First launch
-
-!!! danger "If you have any issues running the game, refer to the [Troubleshooting](troubleshooting.md) page"
-
-### BACKUP DATA
-
-!!! tip ""
-
- If you've followed all instructions correctly, you're now finally ready to launch the game!
-
- **First plug your controller if you have one** and run `spice64.exe`, press `Yes` when it asks for elevated privileges.
-
- If it's your first time running the game, you'll immediately be greeted with this screen.
-
-
-
-### CLOCK ERROR
-
-!!! tip ""
-
- Press your `Test` key to initialize the backup data, a message will pop up stating it's been initialized.
-
- Next, you'll get another error.
-
-
-
-!!! tip ""
-
- Let the game run for a bit until the monitor check is complete and you should be taken to the service menu.
-
-
-
-!!! tip ""
-
- Instructions on how to navigate the menu are shown at the bottom of the screen.
-
- - Press `1` and `2` to go up and down.
- - Press `6` to select/execute.
-
- Start by going up to `CLOCK`.
-
-
-
-!!! tip ""
-
- Here, simply select `SAVE AND EXIT` and the clock will be set.
-
- You'll be back in the service menu.
-
-### NETWORK OPTIONS
-
-!!! tip ""
-
- Go to `NETWORK OPTIONS` then `SHOP NAME SETTING`.
-
-
-
-
-!!! tip ""
-
- We will need to set a shop name.
-
- - Name your shop to whatever you'd like. Instructions on how to navigate are at the bottom of the screen.
- - Go to `EXIT` then `SAVE AND EXIT`.
-
-
-
-
-
-!!! tip ""
-
- Select `GAME MODE`.
-
- You're all done! The game should load up properly now.
-
-## Carding in
-
-!!! info "Before carding in, you have the option of changing the game's language by pressing your `EFFECT` key"
-
-??? tip "For LDJ (Standard)"
-
- LDJ should accept keypad number binds:
-
- - Press your `Keypad Insert Card` button.
- - Enter your code using your keypad binds.
-
-??? tip "For TDJ (Lightning)"
-
- TDJ will ignore keypad number binds, you need to:
-
- - Press your `Keypad Insert Card` button.
- - Press your `Toggle Sub Screen` overlay button *(PgUp by default)* to bring up the sub screen.
- - Enter your code by clicking on the subscreen's keypad.
- - If your code is accepted, you may now close the overlay.
-
-## Troubleshooting
-
-!!! warning "Have any other issue?"
-
- Check out the [Troubleshooting](troubleshooting.md) and [Error Codes](/errorcodes/bemani.md) pages.
-
- For any more game-specific information, check out [Extra Information](extras.md).
diff --git a/docs/games/bemani/iidx/30_resident/troubleshooting.md b/docs/games/bemani/iidx/30_resident/troubleshooting.md
deleted file mode 100644
index 973b1ce3..00000000
--- a/docs/games/bemani/iidx/30_resident/troubleshooting.md
+++ /dev/null
@@ -1,57 +0,0 @@
-
-# Troubleshooting
-
---8<-- "docs/snippets/common/old_guide.md"
-
---8<-- "docs/snippets/common/data_warning.md"
-
-### I'm having performance issues!
-
-!!! tip ""
-
- If you're having performance issues of some kind, spice2x's [PC optimization](https://github.com/spice2x/spice2x.github.io/wiki/PC-optimization) guide is worth looking at.
-
-### My game is running slow/fast, After finishing a song the game gets stuck loading!
-
-!!! tip ""
-
- The most common reason for this is the game is running over its required refresh rate.
- To solve this, make sure v-sync isn't disabled in your graphics card's settings.
-
- For NVIDIA users, enable `NVIDIA profile optimization (-nvprofile)` in the `Options` tab.
-
-### How do I set my offset?
-
-!!! tip ""
-
- Play through a chart you're comfortable with.
-
- If you're getting too many `Fast`, increase your offset `(+)`.
- If you're getting too many `Slow`, decrease your offset `(-)`.
-
-### My inputs aren't working / I can't get past error messages!
-
-!!! tip ""
-
- If **none** of your inputs are working, try updating [spice2x](https://spice2x.github.io/), you can also try using the beta versions if the stable releases don't work for you.
-
-### My game audio is super quiet!
-
-!!! tip ""
-
- When using `TDJ mode` the audio is very quiet by default. To mitigate this, you can use the `Increase Game Volume` patch.
-
-### When I run the game all other audio is gone!
-
-!!! tip ""
-
- IIDX uses [WASAPI exclusive mode](https://docs.microsoft.com/en-us/windows/win32/coreaudio/exclusive-mode-streams) for audio to get better audio latency.
- Unlike former versions of the games which used [DirectSound](https://en.wikipedia.org/wiki/DirectSound).
-
- You can use the `Shared Mode WASAPI` patch to deal with some hardware issues, it can also be used to hear audio outside the game at the cost of audio latency.
-
-### I'm not getting any audio, or my audio is completely wrecked and I'm using an External Dac!
-
-!!! tip ""
-
- Many setups have found some difficulty with audio due to various equipment being used. Consider using the `Shared Mode WASAPI` patch.
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/31_epolis/extras.md b/docs/games/bemani/iidx/31_epolis/extras.md
deleted file mode 100644
index a6313fba..00000000
--- a/docs/games/bemani/iidx/31_epolis/extras.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/extras.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/31_epolis/setup.md b/docs/games/bemani/iidx/31_epolis/setup.md
deleted file mode 100644
index 681da8a2..00000000
--- a/docs/games/bemani/iidx/31_epolis/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/31_epolis/troubleshooting.md b/docs/games/bemani/iidx/31_epolis/troubleshooting.md
deleted file mode 100644
index 37bd21b5..00000000
--- a/docs/games/bemani/iidx/31_epolis/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/32_pinkycrush/extras.md b/docs/games/bemani/iidx/32_pinkycrush/extras.md
deleted file mode 100644
index 719c8244..00000000
--- a/docs/games/bemani/iidx/32_pinkycrush/extras.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/extras.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/32_pinkycrush/setup.md b/docs/games/bemani/iidx/32_pinkycrush/setup.md
deleted file mode 100644
index 51857762..00000000
--- a/docs/games/bemani/iidx/32_pinkycrush/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/32_pinkycrush/troubleshooting.md b/docs/games/bemani/iidx/32_pinkycrush/troubleshooting.md
deleted file mode 100644
index 3ba4f816..00000000
--- a/docs/games/bemani/iidx/32_pinkycrush/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/iidx/common/31plus/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/jubeat/avenue/setup.md b/docs/games/bemani/jubeat/avenue/setup.md
deleted file mode 100644
index 858629dc..00000000
--- a/docs/games/bemani/jubeat/avenue/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/jubeat/beyondtheavenue/setup.md b/docs/games/bemani/jubeat/beyondtheavenue/setup.md
deleted file mode 100644
index 6a784065..00000000
--- a/docs/games/bemani/jubeat/beyondtheavenue/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/jubeat/festo/setup.md b/docs/games/bemani/jubeat/festo/setup.md
deleted file mode 100644
index c2a470b0..00000000
--- a/docs/games/bemani/jubeat/festo/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/kaimei_riddles/setup.md b/docs/games/bemani/popn/kaimei_riddles/setup.md
deleted file mode 100644
index c3539c6c..00000000
--- a/docs/games/bemani/popn/kaimei_riddles/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/kaimei_riddles/troubleshooting.md b/docs/games/bemani/popn/kaimei_riddles/troubleshooting.md
deleted file mode 100644
index a26baa94..00000000
--- a/docs/games/bemani/popn/kaimei_riddles/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/peace/setup.md b/docs/games/bemani/popn/peace/setup.md
deleted file mode 100644
index 80fd3440..00000000
--- a/docs/games/bemani/popn/peace/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/peace/troubleshooting.md b/docs/games/bemani/popn/peace/troubleshooting.md
deleted file mode 100644
index 3f9823ed..00000000
--- a/docs/games/bemani/popn/peace/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/unilab/setup.md b/docs/games/bemani/popn/unilab/setup.md
deleted file mode 100644
index 0aaa96f5..00000000
--- a/docs/games/bemani/popn/unilab/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/unilab/troubleshooting.md b/docs/games/bemani/popn/unilab/troubleshooting.md
deleted file mode 100644
index 551369a0..00000000
--- a/docs/games/bemani/popn/unilab/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/usaneko/setup.md b/docs/games/bemani/popn/usaneko/setup.md
deleted file mode 100644
index 9da3339e..00000000
--- a/docs/games/bemani/popn/usaneko/setup.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/popn/usaneko/troubleshooting.md b/docs/games/bemani/popn/usaneko/troubleshooting.md
deleted file mode 100644
index 47e1b665..00000000
--- a/docs/games/bemani/popn/usaneko/troubleshooting.md
+++ /dev/null
@@ -1,2 +0,0 @@
-
---8<-- "docs/games/bemani/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/beatstream/animutribe/setup.md b/docs/games/konami/beatstream/animutribe/setup.md
similarity index 95%
rename from docs/games/bemani/beatstream/animutribe/setup.md
rename to docs/games/konami/beatstream/animutribe/setup.md
index b3d0e028..ea7063ed 100644
--- a/docs/games/bemani/beatstream/animutribe/setup.md
+++ b/docs/games/konami/beatstream/animutribe/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -18,7 +18,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired 64-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
### Configuring Your Tools
@@ -58,4 +58,4 @@
You're all done! If you have a touchscreen monitor make sure it's plugged in, it should work automatically, if it doesn't check out the advertised `Troubleshooting` section at the link below.
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
diff --git a/docs/games/bemani/beatstream/animutribe/troubleshooting.md b/docs/games/konami/beatstream/animutribe/troubleshooting.md
similarity index 93%
rename from docs/games/bemani/beatstream/animutribe/troubleshooting.md
rename to docs/games/konami/beatstream/animutribe/troubleshooting.md
index cc10a232..c8f0c1d7 100644
--- a/docs/games/bemani/beatstream/animutribe/troubleshooting.md
+++ b/docs/games/konami/beatstream/animutribe/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/konami/ddr/a20/setup.md b/docs/games/konami/ddr/a20/setup.md
new file mode 100644
index 00000000..c55f489c
--- /dev/null
+++ b/docs/games/konami/ddr/a20/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/a20/troubleshooting.md b/docs/games/konami/ddr/a20/troubleshooting.md
new file mode 100644
index 00000000..1db23cfb
--- /dev/null
+++ b/docs/games/konami/ddr/a20/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/a20plus/setup.md b/docs/games/konami/ddr/a20plus/setup.md
new file mode 100644
index 00000000..3799d19a
--- /dev/null
+++ b/docs/games/konami/ddr/a20plus/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/a20plus/troubleshooting.md b/docs/games/konami/ddr/a20plus/troubleshooting.md
new file mode 100644
index 00000000..cc4adb5f
--- /dev/null
+++ b/docs/games/konami/ddr/a20plus/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/a3/setup.md b/docs/games/konami/ddr/a3/setup.md
new file mode 100644
index 00000000..3a8d6be4
--- /dev/null
+++ b/docs/games/konami/ddr/a3/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/a3/troubleshooting.md b/docs/games/konami/ddr/a3/troubleshooting.md
new file mode 100644
index 00000000..1fc9911b
--- /dev/null
+++ b/docs/games/konami/ddr/a3/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/ddr/common/setup.md b/docs/games/konami/ddr/common/setup.md
similarity index 68%
rename from docs/games/bemani/ddr/common/setup.md
rename to docs/games/konami/ddr/common/setup.md
index 9b562099..8f3dbd2d 100644
--- a/docs/games/bemani/ddr/common/setup.md
+++ b/docs/games/konami/ddr/common/setup.md
@@ -32,7 +32,7 @@
📂prop
```
---8<-- "docs/snippets/bemani/common/data_bad.md"
+--8<-- "docs/snippets/konami/common/data_bad.md"
!!! info "If your data is already up-to-date, you can skip ahead to the [Installing spice2x](#installing-spice2x) section"
@@ -52,7 +52,7 @@
- `OldDateCode` is the older date, the game version required to apply this update
- `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
---8<-- "docs/snippets/bemani/common/data_update.md"
+--8<-- "docs/snippets/konami/common/data_update.md"
## Installing spice2x
@@ -90,56 +90,64 @@
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
---8<-- "docs/snippets/bemani/ddr/spicecfg_buttons.md"
+ !!! tip "Binding your buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+ Click on `Bind` or `Naive` then press the key you want associated with the action.
+
+ With your controller and/or keyboard plugged in, configure your keys for P1 and/or P2:
+
+ - **Maintenance**: `Service, Test`
+ - **Game buttons**: `Up, Down, Left, Right`
+ - **Menu buttons**: ` Start, Up, Down, Left, Right`
+ - **Keypad**: `Keypad Insert Card`, `1 to 9`
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
---8<-- "docs/snippets/bemani/common/spicecfg_patches.md"
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
-
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Installing VCRedist & DirectX
@@ -149,12 +157,6 @@
--8<-- "docs/snippets/common/before_playing.md"
-## Registering codecs
-
-!!! tip ""
-
- Follow the DDR section on the [spice2x wiki](https://github.com/spice2x/spice2x.github.io/wiki/DLL-Dependencies#ddr)
-
## Help
--8<-- "docs/snippets/common/help.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/common/troubleshooting.md b/docs/games/konami/ddr/common/troubleshooting.md
new file mode 100644
index 00000000..050c4388
--- /dev/null
+++ b/docs/games/konami/ddr/common/troubleshooting.md
@@ -0,0 +1,27 @@
+# Troubleshooting
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+!!! info "For any issues not covered here, spice2x's [Known issues](https://github.com/spice2x/spice2x.github.io/wiki/Known-issues) page might prove useful"
+
+## Technical problems
+
+### Crashes
+
+??? tip "Game crashes on startup or when starting a song / No background and no music video"
+
+ This is probably due to missing or incorrectly registered codecs. From version 25-08-17 of spice2x onwards, the codecs will be registered automatically when you launch the game, so please update your installation. If this does not resolve the issue, or if you do not wish to update, please follow the DDR section on the [spice2x wiki](https://github.com/spice2x/spice2x.github.io/wiki/DLL-Dependencies#ddr).
+
+### Performance
+
+!!! info "Check out spice2x's [PC optimization](https://github.com/spice2x/spice2x.github.io/wiki/PC-optimization) guide"
+
+??? tip "Game is running too slow/fast"
+
+ Try to eliminate any unnecessary background processes during play and ensure your screen's framerate is set to 60 FPS.
+
+## Other
+
+??? tip "Where are the option for Dancers/Shading/Measure lines/Fast-Slow/Layering?"
+
+ These options are locked behind network requirements and will not be displayed unless you are connected to a network that has written support for these options. Patches are available to mitigate this, see our [spice2x Patching guide](/extras/patchsp2x.md).
\ No newline at end of file
diff --git a/docs/games/konami/ddr/world/setup.md b/docs/games/konami/ddr/world/setup.md
new file mode 100644
index 00000000..d987feea
--- /dev/null
+++ b/docs/games/konami/ddr/world/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/ddr/world/troubleshooting.md b/docs/games/konami/ddr/world/troubleshooting.md
new file mode 100644
index 00000000..e4c12dc4
--- /dev/null
+++ b/docs/games/konami/ddr/world/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/ddr/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/gitadora/exchain/setup.md b/docs/games/konami/gitadora/exchain/setup.md
similarity index 92%
rename from docs/games/bemani/gitadora/exchain/setup.md
rename to docs/games/konami/gitadora/exchain/setup.md
index f0c34f30..6866b0ff 100644
--- a/docs/games/bemani/gitadora/exchain/setup.md
+++ b/docs/games/konami/gitadora/exchain/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -24,7 +24,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, the first thing to do is put your desired 64-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
!!! tip ""
Why does this look different than the usual? This installation includes a `modules` folder that Spice automatically detects, keeping things clean and simple.
@@ -52,7 +52,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
**FOR DRUM**
@@ -66,7 +66,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
### Configuring for an Online Network
@@ -85,7 +85,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
**FOR DRUM**
@@ -101,7 +101,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
One final note, since you're playing on a network, you will have one additional step of setting up your card file within your chosen tools, make sure to check your server's information on how to setup a card file.
@@ -113,35 +113,35 @@
If it's your first time running the game, you'll immediately be greeted with this screen, oh no!
-
+
!!! tip ""
This is normal, simply hit your `Test` keybind and continue on to this.
-
+
!!! tip ""
From here, we will need to set a shop name to play, so select the `GAME OPTIONS` option.
-
+
!!! tip ""
Then, select `SHOP SETTINGS`.
-
+
!!! tip ""
Once inside, select `SHOP NAME SETTINGS` and name your shop whatever you desire! For the purpose of the guide, we named it `Guide` but highly encourage fun and/or lazy names. Once that's done, go down to `PREFECTURE` and set it to whatever you desire as well. Finally, go to `SAVE AND EXIT` to get back to the main menu.
-
+
!!! tip ""
The last menu we'll go inside from the service menu is the clock menu. Go inside `CLOCK` and simply set the clock by hitting `SAVE AND EXIT` as pictured below.
-
+
!!! tip ""
You're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
diff --git a/docs/games/bemani/gitadora/exchain/troubleshooting.md b/docs/games/konami/gitadora/exchain/troubleshooting.md
similarity index 98%
rename from docs/games/bemani/gitadora/exchain/troubleshooting.md
rename to docs/games/konami/gitadora/exchain/troubleshooting.md
index 0197028b..cb6e823c 100644
--- a/docs/games/bemani/gitadora/exchain/troubleshooting.md
+++ b/docs/games/konami/gitadora/exchain/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/gitadora/fuzzup/setup.md b/docs/games/konami/gitadora/fuzzup/setup.md
similarity index 94%
rename from docs/games/bemani/gitadora/fuzzup/setup.md
rename to docs/games/konami/gitadora/fuzzup/setup.md
index b1c628c5..18e2d653 100644
--- a/docs/games/bemani/gitadora/fuzzup/setup.md
+++ b/docs/games/konami/gitadora/fuzzup/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -16,7 +16,7 @@
- Head over to [spice2x.github.io](https://spice2x.github.io) and download the latest release.
- Extract the `spice64.exe` and `spicecfg.exe` files from the archive to your game's directory.
-
+
## General Configuration
@@ -201,37 +201,37 @@
Upon launching your game, you will be greeted with this `BACKUP DATA ERROR` screen.
-
+
!!! tip ""
This is normal, simply hit your `Test` keybind to enter test mode.
-
+
!!! tip ""
From here, we will need to set a shop name to play, so select the `GAME OPTIONS` option.
-
+
!!! tip ""
Then, select `SHOP SETTINGS`.
-
+
!!! tip ""
Once inside, select `SHOP NAME SETTINGS` and name your shop whatever you desire! Once that's done, go down to `PREFECTURE` and set it to whatever you desire as well. Finally, go to `SAVE AND EXIT` to get back to the test menu.
-
+
!!! tip ""
The last menu we'll go inside from the test menu is the clock menu. Go inside `CLOCK` and simply set the clock by hitting `SAVE AND EXIT` as pictured below.
-
+
!!! tip ""
@@ -250,4 +250,4 @@
!!! warning "Have any other issue?"
- Check out the [Troubleshooting](troubleshooting.md) and [Error Codes](/errorcodes/bemani.md) pages.
+ Check out the [Troubleshooting](troubleshooting.md) and [Error Codes](/errorcodes/konami.md) pages.
diff --git a/docs/games/bemani/gitadora/fuzzup/troubleshooting.md b/docs/games/konami/gitadora/fuzzup/troubleshooting.md
similarity index 96%
rename from docs/games/bemani/gitadora/fuzzup/troubleshooting.md
rename to docs/games/konami/gitadora/fuzzup/troubleshooting.md
index f2dfff27..01433e90 100644
--- a/docs/games/bemani/gitadora/fuzzup/troubleshooting.md
+++ b/docs/games/konami/gitadora/fuzzup/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/gitadora/matixx/setup.md b/docs/games/konami/gitadora/matixx/setup.md
similarity index 91%
rename from docs/games/bemani/gitadora/matixx/setup.md
rename to docs/games/konami/gitadora/matixx/setup.md
index 2e6b1140..56940d5a 100644
--- a/docs/games/bemani/gitadora/matixx/setup.md
+++ b/docs/games/konami/gitadora/matixx/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, the first thing to do is put your desired 64-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
### Configuring Your Tools
@@ -42,7 +42,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
**FOR DRUM**
@@ -56,7 +56,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
### Configuring for an Online Network
@@ -75,7 +75,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
**FOR DRUM**
@@ -91,7 +91,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
One final note, since you're playing on a network, you will have one additional step of setting up your card file within your chosen tools, make sure to check your server's information on how to setup a card file.
@@ -103,35 +103,35 @@
If it's your first time running the game, you'll immediately be greeted with this screen, oh no!
-
+
!!! tip ""
This is normal, simply hit your `Test` keybind and continue on to this.
-
+
!!! tip ""
From here, we will need to set a shop name to play, so select the `GAME OPTIONS` option.
-
+
!!! tip ""
Then, select `SHOP SETTINGS`.
-
+
!!! tip ""
Once inside, select `SHOP NAME SETTINGS` and name your shop whatever you desire! For the purpose of the guide, we named it `Guide` but highly encourage fun and/or lazy names. Once that's done, go down to `PREFECTURE` and set it to whatever you desire as well. Finally, go to `SAVE AND EXIT` to get back to the main menu.
-
+
!!! tip ""
The last menu we'll go inside from the service menu is the clock menu. Go inside `CLOCK` and simply set the clock by hitting `SAVE AND EXIT` as pictured below.
-
+
!!! tip ""
You're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
diff --git a/docs/games/bemani/gitadora/matixx/troubleshooting.md b/docs/games/konami/gitadora/matixx/troubleshooting.md
similarity index 98%
rename from docs/games/bemani/gitadora/matixx/troubleshooting.md
rename to docs/games/konami/gitadora/matixx/troubleshooting.md
index e3d2a281..fd4d7c44 100644
--- a/docs/games/bemani/gitadora/matixx/troubleshooting.md
+++ b/docs/games/konami/gitadora/matixx/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/10thstyle/setup.md b/docs/games/konami/iidx/10thstyle/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/10thstyle/setup.md
rename to docs/games/konami/iidx/10thstyle/setup.md
index 6c86c765..946f6498 100644
--- a/docs/games/bemani/iidx/10thstyle/setup.md
+++ b/docs/games/konami/iidx/10thstyle/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **10th style**.
-
+
### Using iidxhook-10.conf & RtEffect.dll
@@ -121,7 +121,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -154,10 +154,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -223,21 +223,21 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
-
+
!!! tip ""
Press your `Start` key to confirm to get to the next error message.
### CLOCK ERROR
-
+
!!! tip ""
Press your `Start` key to confirm. This will bring you into it's service menu.
-
+
!!! tip ""
Instructions on how to navigate the menu are shown at the bottom of the screen.
@@ -247,28 +247,28 @@
Navigate to `CLOCK`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
### Enabling e-AMUSEMENT for Online Play
!!! tip ""
From the service menu, go to `e-AMUSEMENT OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
!!! tip ""
It'll bring you to this screen, change it so that `e-AMUSEMENT` switches to `ON` and it will look like this:
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `PREFECTURE` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -276,7 +276,7 @@
- Navigate to `EXIT` and select it.
- Change your prefecture once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`. The game will now give you a message, which translated means:
@@ -285,7 +285,7 @@
So, close the game and open it again.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/10thstyle/troubleshooting.md b/docs/games/konami/iidx/10thstyle/troubleshooting.md
similarity index 95%
rename from docs/games/bemani/iidx/10thstyle/troubleshooting.md
rename to docs/games/konami/iidx/10thstyle/troubleshooting.md
index 44aed74e..4d0374cd 100644
--- a/docs/games/bemani/iidx/10thstyle/troubleshooting.md
+++ b/docs/games/konami/iidx/10thstyle/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/11_red/setup.md b/docs/games/konami/iidx/11_red/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/11_red/setup.md
rename to docs/games/konami/iidx/11_red/setup.md
index 818a0497..07c4ab4d 100644
--- a/docs/games/bemani/iidx/11_red/setup.md
+++ b/docs/games/konami/iidx/11_red/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **IIDX RED**.
-
+
### Using iidxhook-11.conf & RtEffect.dll
@@ -109,7 +109,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -142,10 +142,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -214,21 +214,21 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
-
+
!!! tip ""
Press your `Start` key to confirm to get to the next error message.
### CLOCK ERROR
-
+
!!! tip ""
Press your `Start` key to confirm. This will bring you into it's service menu.
-
+
!!! tip ""
Instructions on how to navigate the menu are shown at the bottom of the screen.
@@ -238,28 +238,28 @@
Navigate to `CLOCK`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
### Enabling e-AMUSEMENT for Online Play
!!! tip ""
From the service menu, go to `NETWORK OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
!!! tip ""
It'll bring you to this screen, change it so that `e-AMUSEMENT` switches to `ON` and it will look like this:
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `PREFECTURE` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -267,7 +267,7 @@
- Navigate to `EXIT` and select it.
- Change your prefecture once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`. The game will now give you a message, which translated means:
@@ -276,7 +276,7 @@
So, close the game and open it again.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/11_red/troubleshooting.md b/docs/games/konami/iidx/11_red/troubleshooting.md
similarity index 95%
rename from docs/games/bemani/iidx/11_red/troubleshooting.md
rename to docs/games/konami/iidx/11_red/troubleshooting.md
index 777ed4ba..48ada5fd 100644
--- a/docs/games/bemani/iidx/11_red/troubleshooting.md
+++ b/docs/games/konami/iidx/11_red/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/12_happysky/setup.md b/docs/games/konami/iidx/12_happysky/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/12_happysky/setup.md
rename to docs/games/konami/iidx/12_happysky/setup.md
index 3cbdc1ee..2f8d8f01 100644
--- a/docs/games/bemani/iidx/12_happysky/setup.md
+++ b/docs/games/konami/iidx/12_happysky/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **HAPPY SKY**.
-
+
### Using iidxhook-12.conf & RtEffect.dll
@@ -130,7 +130,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -163,10 +163,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -235,21 +235,21 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
-
+
!!! tip ""
Press your `Start` key to confirm to get to the next error message.
### CLOCK ERROR
-
+
!!! tip ""
Press your `Start` key to confirm. This will bring you into it's service menu.
-
+
!!! tip ""
Instructions on how to navigate the menu are shown at the bottom of the screen.
@@ -259,28 +259,28 @@
Navigate to `CLOCK`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
### Enabling e-AMUSEMENT for Online Play
!!! tip ""
From the service menu, go to `NETWORK OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
!!! tip ""
It'll bring you to this screen, change it so that `e-AMUSEMENT` switches to `ON` and it will look like this:
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `PREFECTURE` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -288,7 +288,7 @@
- Navigate to `EXIT` and select it.
- Change your prefecture once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`. The game will now give you a message, which translated means:
@@ -297,7 +297,7 @@
So, close the game and open it again.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/12_happysky/troubleshooting.md b/docs/games/konami/iidx/12_happysky/troubleshooting.md
similarity index 95%
rename from docs/games/bemani/iidx/12_happysky/troubleshooting.md
rename to docs/games/konami/iidx/12_happysky/troubleshooting.md
index 211205c4..6cce1f89 100644
--- a/docs/games/bemani/iidx/12_happysky/troubleshooting.md
+++ b/docs/games/konami/iidx/12_happysky/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/13_distorted/setup.md b/docs/games/konami/iidx/13_distorted/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/13_distorted/setup.md
rename to docs/games/konami/iidx/13_distorted/setup.md
index 78ea2b48..e8c65f88 100644
--- a/docs/games/bemani/iidx/13_distorted/setup.md
+++ b/docs/games/konami/iidx/13_distorted/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **DistorteD**.
-
+
### Using iidxhook-13.conf & RtEffect.dll
@@ -130,7 +130,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -163,10 +163,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -235,21 +235,21 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
-
+
!!! tip ""
Press your `Test` key to confirm to get to the next error message.
### CLOCK ERROR
-
+
!!! tip ""
Press your `Test` key to confirm. This will bring you into it's service menu.
-
+
!!! tip ""
Instructions on how to navigate the menu are shown at the bottom of the screen.
@@ -259,28 +259,28 @@
Navigate to `CLOCK`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
### Enabling e-AMUSEMENT for Online Play
!!! tip ""
From the service menu, go to `NETWORK OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
!!! tip ""
It'll bring you to this screen, change it so that `e-AMUSEMENT` switches to `ON` and it will look like this:
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `PREFECTURE` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -288,7 +288,7 @@
- Navigate to `EXIT` and select it.
- Change your prefecture once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`. The game will now give you a message, which translated means:
@@ -297,7 +297,7 @@
So, close the game and open it again.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/13_distorted/troubleshooting.md b/docs/games/konami/iidx/13_distorted/troubleshooting.md
similarity index 95%
rename from docs/games/bemani/iidx/13_distorted/troubleshooting.md
rename to docs/games/konami/iidx/13_distorted/troubleshooting.md
index b1630cfe..7866cc72 100644
--- a/docs/games/bemani/iidx/13_distorted/troubleshooting.md
+++ b/docs/games/konami/iidx/13_distorted/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/14_gold/setup.md b/docs/games/konami/iidx/14_gold/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/14_gold/setup.md
rename to docs/games/konami/iidx/14_gold/setup.md
index 052b2425..80712d40 100644
--- a/docs/games/bemani/iidx/14_gold/setup.md
+++ b/docs/games/konami/iidx/14_gold/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **GOLD**.
-
+
### Using iidxhook-14.conf
@@ -122,7 +122,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -155,10 +155,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -227,26 +227,26 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
!!! warning "If you get `USB I/O ERROR ERROR(FM TRNS-OUT)` or `USB I/O ERROR ERROR(FM-DL TIMEOUT)`"
Reboot the game and it should get fixed.
-
+
!!! tip ""
Press your `Test` key to confirm to get to the next error message.
### CLOCK ERROR
-
+
!!! tip ""
Press your `Test` key to confirm. The game will then perform a `MONITOR CHECK`.
-
+
-
+
!!! tip ""
After the monitor check, the game will bring you into it's service menu.
@@ -258,23 +258,23 @@
Navigate to `CLOCK`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
### Enabling e-AMUSEMENT for Online Play
!!! tip ""
From the service menu, go to `NETWORK OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `SETTING AREA` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -282,12 +282,12 @@
- Navigate to `EXIT` and select it.
- Change your `SETTING AREA` once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/14_gold/troubleshooting.md b/docs/games/konami/iidx/14_gold/troubleshooting.md
similarity index 95%
rename from docs/games/bemani/iidx/14_gold/troubleshooting.md
rename to docs/games/konami/iidx/14_gold/troubleshooting.md
index 7054499c..f6ae41c2 100644
--- a/docs/games/bemani/iidx/14_gold/troubleshooting.md
+++ b/docs/games/konami/iidx/14_gold/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/konami/iidx/16_empress/extras.md b/docs/games/konami/iidx/16_empress/extras.md
new file mode 100644
index 00000000..189ce4d7
--- /dev/null
+++ b/docs/games/konami/iidx/16_empress/extras.md
@@ -0,0 +1,34 @@
+
+# Extra Information
+
+## Output modes
+!!! info "Output Mode"
+
+ This game supports two output modes: `S-VIDEO` and `VGA`.
+ The difference between these two is:
+
+ - `S-VIDEO` runs at 59.95hz
+ - `VGA` runs at 60.05hz
+
+ By default, the output mode is set automatically by the game.
+ !!! tip "If for some reason you want to change the output mode of your game, do the following:"
+ Open your `iidxhook-xx.conf`. Find a line that says:
+ ```
+ gfx.frame_rate_limit=xx.xx
+ ```
+
+ - Depending on the output mode of your choice, replace `xx.xx` with either 59.95 or 60.05
+
+ Now, in the service menu of your game:
+
+ - Go to `GAME OPTIONS`
+
+
+
+ - Go to the line that says `OUTPUT MODE` and change it to your desired mode
+
+ - Select `SAVE AND EXIT`
+
+ That's it!
+
+
\ No newline at end of file
diff --git a/docs/games/konami/iidx/16_empress/setup.md b/docs/games/konami/iidx/16_empress/setup.md
new file mode 100644
index 00000000..c3cc0e04
--- /dev/null
+++ b/docs/games/konami/iidx/16_empress/setup.md
@@ -0,0 +1,167 @@
+
+# Game Setup
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+## Preparing data
+
+--8<-- "docs/snippets/common/data_readonly.md"
+
+ The **complete game data** should be approximately **26 GB or larger**.
+ If your data is significantly smaller, you likely have an update archive instead of the full game data.
+
+ Here's what the expected data structure should look like:
+
+ ```
+ 📂yyyymmddrr (revision directory, y = year digit, m = month digit, d = day digit, r = revision digit)
+ 📂data
+ 📄sidcode.txt
+ ```
+
+## Installing Bemanitools
+
+!!! tip ""
+
+ - Download the latest Bemanitools release [here](https://github.com/djhackersdev/bemanitools/releases/latest)
+
+ - Inside `bemanitools-x.xx.zip` locate `iidx-14-to-17.zip`
+
+ - Extract all files from `iidx-14-to-17.zip` to your revision directory (yyyymmddrr)
+
+!!! note "You may delete the `gamestart-[14,15,17].bat` and `iidxhook-[14,15,17].conf` files as you only need the ones for 16 (Empress)"
+
+--8<-- "docs/snippets/konami/iidx/btools_d3d8to9.md"
+
+--8<-- "docs/snippets/konami/iidx/btools_clvsd.md"
+
+!!! tip ""
+
+ In the end, here's what the expected data structure should look like:
+
+ ``` hl_lines="2 3 4 7 8 10 11 12 13 14 18 19"
+ 📄bm2dx.exe
+ 📄config.bat
+ 📄config.exe
+ 📄d3d8.dll
+ 📄d3dx9_24.dll
+ 📄dbghelp.dll
+ 📄eamio.dll
+ 📄gamestart-16.bat
+ 📄gcidata.nsd
+ 📄geninput.dll
+ 📄iidxhook3.dll
+ 📄iidxhook-16.conf
+ 📄iidxio.dll
+ 📄inject.exe
+ 📄libacio.dll
+ 📄libavs-win32.dll
+ 📄libavs-win32-ea3.dll
+ 📄vefx.txt
+ 📄vefxio.dll
+ ```
+
+## Configuring Bemanitools
+
+!!! info "Open the `config.bat` file. The following tabs correspond to the ones in the configuration window."
+
+=== "Buttons"
+
+--8<-- "docs/snippets/konami/iidx/btools_buttons.md"
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
+
+=== "Lights"
+
+--8<-- "docs/snippets/konami/common/btools_lights.md"
+
+=== "Analogs"
+
+--8<-- "docs/snippets/konami/iidx/btools_analogs.md"
+
+=== "Network"
+
+--8<-- "docs/snippets/konami/common/btools_cards.md"
+
+## Connecting to a network
+
+--8<-- "docs/snippets/konami/iidx/btools_connecting_network.md"
+
+## Configuring graphics
+
+--8<-- "docs/snippets/konami/iidx/btools_graphics.md"
+
+## Before playing
+
+--8<-- "docs/snippets/common/before_playing.md"
+
+## First launch
+
+!!! tip ""
+
+ If you've followed all instructions correctly, you're now finally ready to launch the game!
+
+ **First plug your controller if you have one** and run `gamestart.bat` **as Administrator**.
+
+ If it's your first time running the game, you'll soon be greeted with this screen.
+
+
+
+ Press your `Test` key to initialize the backup data, a message will pop up stating it's been initialized.
+
+ !!! warning ""
+ If right here you get `USB I/O ERROR ERROR(FM TRNS-OUT)` or `USB I/O ERROR ERROR(FM-DL TIMEOUT)` instead of the `BACKUP DATA ERROR`, reboot the game and it should get fixed.
+
+ Next, you'll get another error.
+
+
+
+ Press your `Test` key again and let the game run for a bit until the monitor check is complete.
+
+ You will now be taken to the service menu.
+
+
+
+ Instructions on how to navigate the menu are shown at the bottom of the screen:
+
+ - Press `1` and `2` to go up and down
+ - Press `6` to select/execute
+
+ Start by going up to `CLOCK`.
+
+
+
+ Here, simply select `SAVE AND EXIT` and the clock will be set.
+
+ You'll be back in the service menu.
+
+ Go to `NETWORK OPTIONS` then `e-AMUSEMENT SETTINGS`.
+
+
+
+
+ You will need to set a shop name.
+
+ - Name your shop to whatever you'd like. Again, navigation instructions are at the bottom of the screen
+ - Go to `EXIT` then `SAVE AND EXIT`
+
+ Select `GAME OPTIONS`.
+
+
+
+ Here, you want to select a display type.
+
+ !!! warning "This setting affects timing offset in the song."
+
+ - `TYPE B`: Lower latency
+ - `TYPE A`: If your monitor has high latency
+
+ We recommend starting with `TYPE B` and changing this later if you encounter any issues.
+
+ - Go to `SAVE AND EXIT` then `GAME MODE`
+
+!!! success "You're all done! The game should load up properly now. Insert credits by pressing your `SERVICE` key!"
+
+## Help
+
+--8<-- "docs/snippets/common/help.md"
+
diff --git a/docs/games/konami/iidx/16_empress/troubleshooting.md b/docs/games/konami/iidx/16_empress/troubleshooting.md
new file mode 100644
index 00000000..d28d7919
--- /dev/null
+++ b/docs/games/konami/iidx/16_empress/troubleshooting.md
@@ -0,0 +1,45 @@
+
+# Troubleshooting
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+!!! warning "If you get any error codes that weren't listed in the guides here, check out the [Bemanitools docs](https://github.com/djhackersdev/bemanitools/blob/master/doc/game-error-codes.md)"
+
+## Technical problems
+
+### Crashes
+
+!!! info "Riva Tuner Statistics Server (RTSS) and MSI Afterburner are known to cause odd crashes.
If you have them installed, close them both before starting any arcade game"
+
+??? tip "I'm using a laptop with a hybrid internal+dedicated GPU setup"
+
+ Laptops often have odd issues running data. The game may open on the wrong monitor, run at the wrong resolution or framerate, or simply crashes.
+
+ There is currently no known fix for this, other than maybe playing in windowed mode, or using a desktop PC instead.
+
+### Performance
+
+??? tip "Game is running too slow/fast"
+
+ Your game is likely running at an incorrect framerate. The expected framerates is 59.95fps for S-VIDEO output mode, and 60.05fps for VGA output mode.
+ !!! info "For more information regarding output modes, check out the [Extra Information](extras.md) page"
+ Try these steps to resolve framerate issues:
+
+ - Double-check that your selected output mode in the service menu matches the refresh rate in your `iidxhook-xx.conf` file.
+ - Close any software that can affect framerates (like RTSS)
+ - Close unnecessary background programs
+ - Ensure V-SYNC is not forcefully disabled in your graphics card control panel
+
+ If issues persist:
+
+ - Double-check that you followed all steps in the setup guide correctly
+ - Your data may be corrupt in one way or another, you could try starting from scratch using trusted data sources
+
+!!! info "For issues with desync, check out the [Bemanitools IIDX syncbook](https://github.com/djhackersdev/bemanitools/blob/master/doc/iidxhook/iidx-syncbook.md)"
+
+### Other
+
+??? tip "Background videos not working"
+
+ The CLVSD codec is not registered. Follow the instructions in the [setup guide](setup.md#installing-bemanitools).
+
diff --git a/docs/games/bemani/iidx/24_sinobuz/extras.md b/docs/games/konami/iidx/24_sinobuz/extras.md
similarity index 95%
rename from docs/games/bemani/iidx/24_sinobuz/extras.md
rename to docs/games/konami/iidx/24_sinobuz/extras.md
index 04ec07fc..b440072e 100644
--- a/docs/games/bemani/iidx/24_sinobuz/extras.md
+++ b/docs/games/konami/iidx/24_sinobuz/extras.md
@@ -1,4 +1,4 @@
-
+
# Extra Information
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/24_sinobuz/setup.md b/docs/games/konami/iidx/24_sinobuz/setup.md
similarity index 90%
rename from docs/games/bemani/iidx/24_sinobuz/setup.md
rename to docs/games/konami/iidx/24_sinobuz/setup.md
index 5df9cd75..fec6eec2 100644
--- a/docs/games/bemani/iidx/24_sinobuz/setup.md
+++ b/docs/games/konami/iidx/24_sinobuz/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -18,7 +18,7 @@
You should end up with a file structure with a few folders only, as follows:
-
+
??? warning "If your data doesn't look like this"
@@ -36,7 +36,7 @@
- Head over to [spice2x.github.io](https://spice2x.github.io) and download the latest release.
- Extract the `spice.exe` and `spicecfg.exe` files from the archive to your game's directory.
-
+
## Configuring spice2x
@@ -197,7 +197,7 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
### CLOCK ERROR
@@ -207,13 +207,13 @@
Next, you'll get another error.
-
+
!!! tip ""
Let the game run for a bit until the monitor check is complete and you should be taken to the service menu.
-
+
!!! tip ""
@@ -224,7 +224,7 @@
Start by going up to `CLOCK`.
-
+
!!! tip ""
@@ -244,13 +244,13 @@
`HD*` adds `+1.0` offset in-game, while `HD` doesn't.
-
+
!!! tip ""
Once done selecting, select `YES` then `SAVE AND EXIT`.
-
+
### NETWORK OPTIONS
@@ -258,8 +258,8 @@
Go to `NETWORK OPTIONS` then `SHOP NAME SETTING`.
-
-
+
+
!!! tip ""
@@ -268,8 +268,8 @@
- Name your shop to whatever you'd like. Instructions on how to navigate are at the bottom of the screen.
- Go to `EXIT` then `SAVE AND EXIT`.
-
-
+
+
!!! tip ""
@@ -289,6 +289,6 @@
!!! warning "Have any other issue?"
- Check out the [Troubleshooting](troubleshooting.md) and [Error Codes](/errorcodes/bemani.md) pages.
+ Check out the [Troubleshooting](troubleshooting.md) and [Error Codes](/errorcodes/konami.md) pages.
For any more game-specific information, check out [Extra Information](extras.md).
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/24_sinobuz/troubleshooting.md b/docs/games/konami/iidx/24_sinobuz/troubleshooting.md
similarity index 90%
rename from docs/games/bemani/iidx/24_sinobuz/troubleshooting.md
rename to docs/games/konami/iidx/24_sinobuz/troubleshooting.md
index 53f71af3..b491ac4c 100644
--- a/docs/games/bemani/iidx/24_sinobuz/troubleshooting.md
+++ b/docs/games/konami/iidx/24_sinobuz/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/25_cannonballers/setup.md b/docs/games/konami/iidx/25_cannonballers/setup.md
similarity index 87%
rename from docs/games/bemani/iidx/25_cannonballers/setup.md
rename to docs/games/konami/iidx/25_cannonballers/setup.md
index d444c575..cedfbca7 100644
--- a/docs/games/bemani/iidx/25_cannonballers/setup.md
+++ b/docs/games/konami/iidx/25_cannonballers/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired **64-bit** tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
## Configuring Your Tools
@@ -39,7 +39,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
## Configuring for an Online Network
@@ -54,7 +54,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
One final note, since you're playing on a network, you will have one additional step of setting up your card file within your chosen tools, make sure to check your server's information on how to setup a card file.
@@ -66,52 +66,52 @@
If it's your first time running the game, you'll immediately be greeted with this screen, oh no!
-
+
!!! tip ""
Ignore this message, simply hit your `Test` keybind and continue onto this.
-
+
!!! tip ""
Hit the `Test` keybinding again to initialize the backup data, a message will pop up stating it's been initialized.
-
+
!!! tip ""
Lastly, you'll run into this error message as well, let's work on eliminating these messages. Let the game run for a bit until the monitor check is complete and you should be taken to the service menu pictured below.
-
+
!!! tip ""
Start by navigating up to `CLOCK` and entering that menu.
-
+
!!! tip ""
Simply hit save and exit and leave, the clock will be saved. Then, back in the service menu, go up to `GAME OPTIONS`
-
+
!!! tip ""
Once inside that menu, navigate your way up to `DEFINITION TYPE` and choose either `HD` or `HD*` depending on your preferences, both run the game at 720p but have a timing difference addressed on the FAQ page. It might be worth noting that the `HD*` option is no longer present as of beatmania IIDX 26 ROOTAGE.
-
+
!!! tip ""
The game will then count down asking you to confirm the selection before reverting, just hit `YES` assuming it loaded just fine on your computer. Then, exit out of that menu and head to `NETWORK OPTIONS` from back inside the service menu.
-
+
!!! tip ""
From here, we will need to set a shop name to play, so select the `SHOP NAME SETTING` option. Once inside, name your shop whatever you desire! For the purpose of the guide, we named it `Guide` but highly encourage fun and/or lazy names. Once that's done go to `EXIT` and then `SAVE AND EXIT` inside of `NETWORK OPTIONS` once you've chosen your desired name, as pictured below.
-
+
-
+
!!! tip ""
You're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/25_cannonballers/troubleshooting.md b/docs/games/konami/iidx/25_cannonballers/troubleshooting.md
similarity index 97%
rename from docs/games/bemani/iidx/25_cannonballers/troubleshooting.md
rename to docs/games/konami/iidx/25_cannonballers/troubleshooting.md
index f632fc63..2935b14c 100644
--- a/docs/games/bemani/iidx/25_cannonballers/troubleshooting.md
+++ b/docs/games/konami/iidx/25_cannonballers/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/26_rootage/setup.md b/docs/games/konami/iidx/26_rootage/setup.md
similarity index 86%
rename from docs/games/bemani/iidx/26_rootage/setup.md
rename to docs/games/konami/iidx/26_rootage/setup.md
index 3041c0f2..11eabce8 100644
--- a/docs/games/bemani/iidx/26_rootage/setup.md
+++ b/docs/games/konami/iidx/26_rootage/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired **64-bit** tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
## Configuring Your Tools
@@ -39,7 +39,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
## Configuring for an Online Network
@@ -54,7 +54,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
One final note, since you're playing on a network, you will have one additional step of setting up your card file within your chosen tools, make sure to check your server's information on how to setup a card file.
@@ -66,52 +66,52 @@
If it's your first time running the game, you'll immediately be greeted with this screen, oh no!
-
+
!!! tip ""
Ignore this message, simply hit your `Test` keybind and continue onto this.
-
+
!!! tip ""
Hit the `Test` keybinding again to initialize the backup data, a message will pop up stating it's been initialized.
-
+
!!! tip ""
Lastly, you'll run into this error message as well, let's work on eliminating these messages. Let the game run for a bit until the monitor check is complete and you should be taken to the service menu pictured below.
-
+
!!! tip ""
Start by navigating up to `CLOCK` and entering that menu.
-
+
!!! tip ""
Simply hit save and exit and leave, the clock will be saved. Then, back in the service menu, go up to `GAME OPTIONS`
-
+
!!! tip ""
Once inside that menu, navigate your way up to `DEFINITION TYPE` and choose either `SD` or `HD` depending on your preferences.
-
+
!!! tip ""
The game will then count down asking you to confirm the selection before reverting, just hit `YES` assuming it loaded just fine on your computer. Then, exit out of that menu and head to `NETWORK OPTIONS` from back inside the service menu.
-
+
!!! tip ""
From here, we will need to set a shop name to play, so select the `SHOP NAME SETTING` option. Once inside, name your shop whatever you desire! For the purpose of the guide, we named it `Guide` but highly encourage fun and/or lazy names. Once that's done go to `EXIT` and then `SAVE AND EXIT` inside of `NETWORK OPTIONS` once you've chosen your desired name, as pictured below.
-
+
-
+
!!! tip ""
You're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/26_rootage/troubleshooting.md b/docs/games/konami/iidx/26_rootage/troubleshooting.md
similarity index 97%
rename from docs/games/bemani/iidx/26_rootage/troubleshooting.md
rename to docs/games/konami/iidx/26_rootage/troubleshooting.md
index fb1f0995..e4376880 100644
--- a/docs/games/bemani/iidx/26_rootage/troubleshooting.md
+++ b/docs/games/konami/iidx/26_rootage/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/27_heroicverse/extras.md b/docs/games/konami/iidx/27_heroicverse/extras.md
similarity index 96%
rename from docs/games/bemani/iidx/27_heroicverse/extras.md
rename to docs/games/konami/iidx/27_heroicverse/extras.md
index 533c0ddc..6d9dde8d 100644
--- a/docs/games/bemani/iidx/27_heroicverse/extras.md
+++ b/docs/games/konami/iidx/27_heroicverse/extras.md
@@ -1,4 +1,4 @@
-
+
# Extra Information
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/27_heroicverse/setup.md b/docs/games/konami/iidx/27_heroicverse/setup.md
similarity index 87%
rename from docs/games/bemani/iidx/27_heroicverse/setup.md
rename to docs/games/konami/iidx/27_heroicverse/setup.md
index d1bc7651..d66ad5fe 100644
--- a/docs/games/bemani/iidx/27_heroicverse/setup.md
+++ b/docs/games/konami/iidx/27_heroicverse/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired **64-bit** tools inside the game's `contents` folder, Pictured below is what your folder should look like.
-
+
## Configuring Your Tools
@@ -39,7 +39,7 @@
Pictured below, the selected options inside the `Options` tab in `spicecfg.exe`.
-
+
## Configuring for an Online Network
@@ -58,7 +58,7 @@
Pictured below, the selected options inside the `Options` tab in `spicecfg.exe`.
-
+
!!! tip ""
One final note, since you're playing on a network, you will have one additional step of setting up your card file within your chosen tools, make sure to check your server's information on how to setup a card file.
@@ -74,56 +74,56 @@
If it's your first time running the game, you'll immediately be greeted with this screen, oh no!
-
+
!!! tip ""
Ignore this message, simply hit your `Test` keybind and continue onto this.
-
+
!!! tip ""
Hit the `Test` keybinding to initialize the backup data, a message will pop up stating it's been initialized.
-
+
!!! tip ""
You'll also run into this error message as well, let's work on eliminating these messages. Let the game run for a bit until the monitor check is complete and you should be taken to the service menu pictured below.
-
+
!!! tip ""
Start by navigating up to `CLOCK` and entering that menu.
-
+
!!! tip ""
Simply hit save and exit and leave, the clock will be saved. Then, back in the service menu, go up to `GAME OPTIONS`
-
+
!!! tip ""
Once inside that menu, navigate your way up to `DEFINITION TYPE` and choose either `SD` or `HD` depending on your preferences.
-
+
!!! tip ""
The game will then count down asking you to confirm the selection before reverting, just hit `YES` assuming it loaded just fine on your computer. Then, exit out of that menu and head to `NETWORK OPTIONS` from back inside the service menu.
If it doesn't transition to HD, after you've saved, you can simply reboot the game and all should be well.
-
+
!!! tip ""
The final thing we need to set is here inside `NETWORK OPTIONS`, we will need to set a shop name to play, so select the `SHOP NAME SETTING` option. Once inside, name your shop whatever you desire! For the purpose of the guide, we named it `Guide` but highly encourage fun and/or lazy names. Once that's done go to `EXIT` and then `SAVE AND EXIT` inside of `NETWORK OPTIONS` once you've chosen your desired name, as pictured below.
-
+
-
+
!!! tip ""
You're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
Lightning Mode specifics can be found in the [Extra Information](extras.md#lightning-specific-troubleshooting)
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/27_heroicverse/troubleshooting.md b/docs/games/konami/iidx/27_heroicverse/troubleshooting.md
similarity index 97%
rename from docs/games/bemani/iidx/27_heroicverse/troubleshooting.md
rename to docs/games/konami/iidx/27_heroicverse/troubleshooting.md
index 1a69acaa..bbe83294 100644
--- a/docs/games/bemani/iidx/27_heroicverse/troubleshooting.md
+++ b/docs/games/konami/iidx/27_heroicverse/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/30_resident/extras.md b/docs/games/konami/iidx/30_resident/extras.md
similarity index 91%
rename from docs/games/bemani/iidx/30_resident/extras.md
rename to docs/games/konami/iidx/30_resident/extras.md
index 3100ced8..72f1efa6 100644
--- a/docs/games/bemani/iidx/30_resident/extras.md
+++ b/docs/games/konami/iidx/30_resident/extras.md
@@ -1,11 +1,7 @@
-
+
# Extra Information
---8<-- "docs/snippets/common/old_guide.md"
-
---8<-- "docs/snippets/common/data_warning.md"
-
-## Standard & Lightning modes
+## Standard and Lightning modes
!!! warning "Lightning mode requires a 120 Hz capable monitor"
@@ -32,6 +28,7 @@
```
- ^^`A`^^ for Standard (LDJ-003, LDJ, 60 Hz)
+ - ^^`E`^^ for Standard (LDJ-012, LDJ, 60 Hz)
- ^^`D`^^ for Lightning (LDJ-010, TDJ, 120 Hz)
## Changing the game's language
@@ -80,7 +77,7 @@
^^**Always keep it up to date**^^ with your game's current version.
```xml
- 2024052100
+ 2023090500
```
The following line determine what remote service URL `spice2x` is supposed to connect to.
diff --git a/docs/games/konami/iidx/30_resident/setup.md b/docs/games/konami/iidx/30_resident/setup.md
new file mode 100644
index 00000000..3ed6d2f1
--- /dev/null
+++ b/docs/games/konami/iidx/30_resident/setup.md
@@ -0,0 +1,231 @@
+
+# Game Setup
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+## Standard and Lightning modes
+
+!!! note ""
+
+ Before proceeding with the setup, it's important to understand the two cabinet types for IIDX:
+
+ - **Lightning (TDJ/LDJ-010)**:
+
+ - Runs at 120 FPS
+ - Requires a 120 Hz main monitor
+ - Optional second touchscreen 60 Hz monitor called a subscreen
+
+ - **Standard/Legacy (LDJ/LDJ-003/LDJ-012)**:
+
+ - Runs at 60 FPS
+ - Requires a 60 Hz main monitor
+ - No subscreen
+
+ The game data comes in three variants based on the `bm2dx.dll` file.
+ You can patch an LDJ dll to run in TDJ mode, but this will disable video recording.
+
+ For simplicity, we'll use "TDJ" for Lightning Mode and "LDJ" for Standard Mode throughout our guides.
+
+## Preparing data
+
+--8<-- "docs/snippets/common/data_readonly.md"
+
+ The **complete game data** should be approximately **95 GB or larger**.
+ If your data is significantly smaller, you likely have an update archive instead of the full game data.
+
+ Here's what the expected data structure should look like:
+
+ ```
+ 📂data
+ 📂dev
+ 📂modules
+ 📂prop
+ ```
+
+--8<-- "docs/snippets/konami/common/data_bad.md"
+
+!!! info "If your data is already up-to-date, you can skip ahead to the [Installing spice2x](#installing-spice2x) section"
+
+## Updating data
+
+!!! danger "Make sure you're using the right update for your current game version"
+
+ IIDX updates have `LDJ` and one or two datecodes in their archive names.
+
+ **Single datecode:** Contains one update (e.g., `LDJ_NewDateCode.7z`)
+ **Two datecodes:** Updates from the older to newer version (e.g., `LDJ_OldDateCode-NewDateCode.rar`)
+
+ A date code should look something like this: `YYYYMMDDXX`
+
+ In the two-datecode example:
+
+ - `OldDateCode` is the older date, the game version required to apply this update
+ - `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
+
+--8<-- "docs/snippets/konami/common/data_update.md"
+
+## Installing spice2x
+
+--8<-- "docs/snippets/konami/common/spice2x64_install.md"
+
+ ``` hl_lines="5-6"
+ 📂data
+ 📂dev
+ 📂modules
+ 📂prop
+ 🌶️spice64.exe
+ 🌶️spicecfg.exe
+ ```
+
+--8<-- "docs/snippets/konami/common/spice2x64_stubs.md"
+
+## Configuring spice2x
+
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
+
+=== "Buttons"
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
+
+--8<-- "docs/snippets/konami/iidx/spicecfg_buttons.md"
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
+
+=== "Analogs"
+
+--8<-- "docs/snippets/konami/iidx/spicecfg_analogs.md"
+
+=== "Overlay"
+
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
+
+=== "Lights"
+
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
+
+=== "Cards"
+
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
+
+=== "Patches"
+
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
+
+=== "API"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "Options"
+
+--8<-- "docs/snippets/konami/iidx/spicecfg_options_disablecams.md"
+
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
+
+--8<-- "docs/snippets/konami/iidx/spicecfg_options_tdj.md"
+
+=== "Advanced"
+
+--8<-- "docs/snippets/konami/iidx/spicecfg_advanced_camhook.md"
+
+=== "Development"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+## Configuring audio
+
+--8<-- "docs/snippets/konami/common/setup_audio.md"
+
+## Connecting to a network
+
+--8<-- "docs/snippets/konami/common/setup_network.md"
+
+## Configuring your game
+
+!!! info "Read through the [Extra Information](extras.md) page"
+
+## Installing VCRedist & DirectX
+
+--8<-- "docs/snippets/common/setup_vcredist_directx.md"
+
+## Before playing
+
+--8<-- "docs/snippets/common/before_playing.md"
+
+## First launch
+
+!!! tip ""
+
+ If you've followed all instructions correctly, you're now finally ready to launch the game!
+
+ **First plug your controller if you have one** and run `spice64.exe`, press `Yes` when it asks for elevated privileges.
+
+ If it's your first time running the game, you'll immediately be greeted with this screen.
+
+
+
+ Press your `Test` key to initialize the backup data, a message will pop up stating it's been initialized.
+
+ Next, you'll get another error.
+
+
+
+ Press your `Test` key again and let the game run for a bit until the monitor check is complete.
+
+ You will now be taken to the service menu.
+
+
+
+ Instructions on how to navigate the menu are shown at the bottom of the screen:
+
+ - Press `1` and `2` to go up and down.
+ - Press `6` to select/execute.
+
+ Start by going up to `CLOCK`.
+
+
+
+ Here, simply select `SAVE AND EXIT` and the clock will be set.
+
+ You'll be back in the service menu.
+
+ Go to `NETWORK OPTIONS` then `SHOP NAME SETTING`.
+
+
+
+
+ You will need to set a shop name.
+
+ - Name your shop to whatever you'd like. Again, navigation instructions are at the bottom of the screen.
+ - Go to `EXIT` then `SAVE AND EXIT`.
+
+
+
+ Select `GAME MODE`.
+
+
+
+!!! success "You're all done! The game should load up properly now"
+
+## Carding in
+
+!!! info "Before carding in, you have the option to change the game's language by pressing your `EFFECT` key"
+
+??? tip "For LDJ (Standard mode)"
+
+ LDJ should accept keypad number binds:
+
+ - Press your `Keypad Insert Card` button.
+ - Enter your code using your keypad binds.
+
+??? tip "For TDJ (Lightning mode)"
+
+ TDJ will ignore keypad number binds, you need to:
+
+ - Press your `Keypad Insert Card` button.
+ - Press your `Toggle Sub Screen` overlay button *(PgUp by default)* to bring up the sub screen.
+ - Enter your code by clicking on the subscreen's keypad.
+ - If your code is accepted, you may now close the overlay.
+
+## Help
+
+--8<-- "docs/snippets/common/help.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/30_resident/troubleshooting.md b/docs/games/konami/iidx/30_resident/troubleshooting.md
new file mode 100644
index 00000000..c570ce91
--- /dev/null
+++ b/docs/games/konami/iidx/30_resident/troubleshooting.md
@@ -0,0 +1,97 @@
+
+# Troubleshooting
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+!!! info "For any issues not covered here, spice2x's [Known issues](https://github.com/spice2x/spice2x.github.io/wiki/Known-issues) page might prove useful"
+
+## Technical problems
+
+### Crashes
+
+!!! info "Riva Tuner Statistics Server (RTSS) and MSI Afterburner are known to cause odd crashes.
If you have them installed, close them both before starting any arcade game"
+
+??? tip "`W:SuperstepSound: Audio device is not available!!!` in logs"
+
+ - Open `log.txt` using an editor that supports `SHIFT-JIS` encoding for Japanese text (like [Notepad++](https://notepad-plus-plus.org/downloads/))
+
+ - Search for `Superstep`
+
+ If you find a line with `Audio device is not available!!!`, it means the game refuses to boot due to a misconfigured or missing audio device.
+ Check the setup guide's **Configuring audio** section as well as our general [Audio guide](/extras/audio.md) to understand the issue better.
+
+??? tip "I'm using a laptop with a hybrid internal+dedicated GPU setup"
+
+ Laptops often have odd issues running data. The game may open on the wrong monitor, run at the wrong resolution or framerate, or simply crashes.
+
+ There is currently no known fix for this, other than maybe playing in windowed mode, or using a desktop PC instead.
+
+### Performance
+
+!!! info "Check out spice2x's [PC optimization](https://github.com/spice2x/spice2x.github.io/wiki/PC-optimization) guide"
+
+??? tip "Game is running too slow/fast / Monitor error 5-1503-0043"
+
+ Your game is likely running at an incorrect framerate. The expected framerates are:
+
+ - Legacy cab mode: 60 FPS
+ - Lightning Model cab mode: 120 FPS
+
+ Try these steps to resolve framerate issues:
+
+ - Make sure that your patch or DLL matches your cab mode
+ - Close any software that can affect framerates (like RTSS)
+ - Close unnecessary background programs
+ - Ensure V-SYNC is not forcefully disabled in your graphics card control panel
+ - For NVIDIA users: Enable `NVIDIA profile optimization (-nvprofile)` in spicecfg's `Options` tab
+
+ If issues persist:
+
+ - Double-check that you followed all steps in the setup guide correctly
+ - Your PC hardware might be insufficient to keep a steady 120 FPS, you can try switching to Legacy cab mode
+ - Your data may be corrupt in one way or another, you could try starting from scratch using trusted data sources
+
+### Audio
+
+!!! info "Check out our [Audio](/extras/audio.md) guide to understand audio modes better"
+
+!!! info "Ensure your default audio device's sample rate is set properly"
+
+ - **44100 Hz** sample rate for **WASAPI Exclusive** and **ASIO**
+ - **48000 Hz** if your game is patched with `Shared Mode WASAPI`
+
+??? tip "I can't change my device's sample rate"
+
+ If you're using gaming peripherals (Logitech/Razer/Steelseries) or external audio devices (audio interfaces/sound bars):
+
+ - Check if you can modify the sample rate in the device's software/control panel
+ - If not, try uninstalling the device's software. This may restore control over Windows audio settings
+
+ If you still can't change the sample rate:
+
+ - Configure the game's audio mode to match your device's current sample rate instead
+ - Try using a different audio device
+
+??? tip "I can't hear anything else than the game"
+
+ Your game's audio is setup to run in WASAPI Exclusive or ASIO modes.
+
+ Check out our [Audio](/extras/audio.md) guide to understand audio modes better.
+
+ If you're using WASAPI Exclusive, you'll want to [patch the game](/extras/patchsp2x.md) with `Shared Mode WASAPI` to hear other applications.
+
+ If you're using ASIO, unless your audio interface mixes WASAPI and ASIO streams when outputting, you'll only be able to hear one application when ASIO is in use.
+ In this case, you'll need to route all audio through software such as [Voicemeeter](https://vb-audio.com/Voicemeeter/banana.htm), and have Voicemeeter output the mix to your ASIO device.
+
+??? tip "Game audio is too quiet"
+
+ When using `TDJ mode` the audio is very quiet by default. To mitigate this, you can use the `Increase Game Volume` patch.
+
+### Subscreen
+
+!!! info "For more in-depth troubleshooting, refer to the spice2x [Subscreen troubleshooting](https://github.com/spice2x/spice2x.github.io/wiki/Configuring-touch-screens-as-subscreen#troubleshooting) page"
+
+??? tip "Touch input isn't being registered"
+
+ If you're using a physical touch screen, make sure to close **all** spice2x overlays, including the FPS counter.
+ If you're using the virtual subscreen, ensure that the `-iidxnativetouch` option is not enabled.
\ No newline at end of file
diff --git a/docs/games/konami/iidx/31_epolis/extras.md b/docs/games/konami/iidx/31_epolis/extras.md
new file mode 100644
index 00000000..68c49797
--- /dev/null
+++ b/docs/games/konami/iidx/31_epolis/extras.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/extras.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/31_epolis/setup.md b/docs/games/konami/iidx/31_epolis/setup.md
new file mode 100644
index 00000000..da04eb41
--- /dev/null
+++ b/docs/games/konami/iidx/31_epolis/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/31_epolis/troubleshooting.md b/docs/games/konami/iidx/31_epolis/troubleshooting.md
new file mode 100644
index 00000000..e4c1d86d
--- /dev/null
+++ b/docs/games/konami/iidx/31_epolis/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/32_pinkycrush/extras.md b/docs/games/konami/iidx/32_pinkycrush/extras.md
new file mode 100644
index 00000000..1b683510
--- /dev/null
+++ b/docs/games/konami/iidx/32_pinkycrush/extras.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/extras.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/32_pinkycrush/setup.md b/docs/games/konami/iidx/32_pinkycrush/setup.md
new file mode 100644
index 00000000..23bdd588
--- /dev/null
+++ b/docs/games/konami/iidx/32_pinkycrush/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/32_pinkycrush/troubleshooting.md b/docs/games/konami/iidx/32_pinkycrush/troubleshooting.md
new file mode 100644
index 00000000..b6a77b60
--- /dev/null
+++ b/docs/games/konami/iidx/32_pinkycrush/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/33_sparkleshower/extras.md b/docs/games/konami/iidx/33_sparkleshower/extras.md
new file mode 100644
index 00000000..ebf5f8b9
--- /dev/null
+++ b/docs/games/konami/iidx/33_sparkleshower/extras.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/extras.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/33_sparkleshower/setup.md b/docs/games/konami/iidx/33_sparkleshower/setup.md
new file mode 100644
index 00000000..da4dd06b
--- /dev/null
+++ b/docs/games/konami/iidx/33_sparkleshower/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/iidx/33_sparkleshower/troubleshooting.md b/docs/games/konami/iidx/33_sparkleshower/troubleshooting.md
new file mode 100644
index 00000000..8d9005ee
--- /dev/null
+++ b/docs/games/konami/iidx/33_sparkleshower/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/iidx/common/31plus/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/iidx/9thstyle/setup.md b/docs/games/konami/iidx/9thstyle/setup.md
similarity index 91%
rename from docs/games/bemani/iidx/9thstyle/setup.md
rename to docs/games/konami/iidx/9thstyle/setup.md
index e5bd594f..3e02f841 100644
--- a/docs/games/bemani/iidx/9thstyle/setup.md
+++ b/docs/games/konami/iidx/9thstyle/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -28,7 +28,7 @@
Pictured below is what your folder should look like. We've removed any files not necessary for **9th style**.
-
+
### Using iidxhook-09.conf
@@ -103,7 +103,7 @@
!!! info "If you don't have a numpad, make sure to tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
-
+
## Connecting to a network
@@ -136,10 +136,10 @@
Below is an example of how both look like.
??? info "Linear"
-
+
??? info "Point"
-
+
It comes down to your own prefrence what you decide on, `Linear` is less sharp but doesn't have pixel perfect edges. `Point` is sharp and is pixel perfect.
@@ -208,14 +208,14 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
-
+
!!! tip ""
The game will automatically bring you into it's service menu.
-
+
!!! tip ""
Instructions on how to navigate the menu are shown at the bottom of the screen.
@@ -225,7 +225,7 @@
Navigate to `CLOCK SETUP`. You do not need to manually change it. Navigate to `SAVE AND EXIT`.
-
+
!!! info "If you'd like to play offline, you can head straight to [Final Notes](#final-notes)"
@@ -234,21 +234,21 @@
!!! tip ""
From the service menu, go to `e-AMUSEMENT OPTIONS` then `e-AMUSEMENT SETTINGS`.
-
+
-
+
!!! tip ""
It'll bring you to this screen, change it so that `e-AMUSEMENT` switches to `ON` and it will look like this:
-
+
-
+
!!! tip ""
We will need to set a `SHOP NAME SETTING` and change our `PREFECTURE` otherwise the game will throw errors at us.
-
+
!!! tip ""
@@ -256,7 +256,7 @@
- Navigate to `EXIT` and select it.
- Change your prefecture once or how many times you'd like, it doesn't matter as long as it's not the default one.
-
+
!!! tip ""
Select `SAVE AND EXIT`. The game will now give you a message, which translated means:
@@ -265,7 +265,7 @@
So, close the game and open it again.
-
+
## Final Notes
diff --git a/docs/games/bemani/iidx/9thstyle/troubleshooting.md b/docs/games/konami/iidx/9thstyle/troubleshooting.md
similarity index 97%
rename from docs/games/bemani/iidx/9thstyle/troubleshooting.md
rename to docs/games/konami/iidx/9thstyle/troubleshooting.md
index e5da6fd0..e1a24057 100644
--- a/docs/games/bemani/iidx/9thstyle/troubleshooting.md
+++ b/docs/games/konami/iidx/9thstyle/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
diff --git a/docs/games/bemani/iidx/common/31plus/extras.md b/docs/games/konami/iidx/common/31plus/extras.md
similarity index 100%
rename from docs/games/bemani/iidx/common/31plus/extras.md
rename to docs/games/konami/iidx/common/31plus/extras.md
diff --git a/docs/games/bemani/iidx/common/31plus/setup.md b/docs/games/konami/iidx/common/31plus/setup.md
similarity index 69%
rename from docs/games/bemani/iidx/common/31plus/setup.md
rename to docs/games/konami/iidx/common/31plus/setup.md
index 16d7c542..06ea51fb 100644
--- a/docs/games/bemani/iidx/common/31plus/setup.md
+++ b/docs/games/konami/iidx/common/31plus/setup.md
@@ -6,7 +6,7 @@
## Standard and Lightning modes
---8<-- "docs/snippets/bemani/iidx/ldj_vs_tdj.md"
+--8<-- "docs/snippets/konami/iidx/ldj_vs_tdj.md"
## Preparing data
@@ -24,7 +24,7 @@
📂prop
```
---8<-- "docs/snippets/bemani/common/data_bad.md"
+--8<-- "docs/snippets/konami/common/data_bad.md"
!!! info "If your data is already up-to-date, you can skip ahead to the [Installing spice2x](#installing-spice2x) section"
@@ -44,11 +44,11 @@
- `OldDateCode` is the older date, the game version required to apply this update
- `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
---8<-- "docs/snippets/bemani/common/data_update.md"
+--8<-- "docs/snippets/konami/common/data_update.md"
## Installing spice2x
---8<-- "docs/snippets/bemani/common/spice2x64_install.md"
+--8<-- "docs/snippets/konami/common/spice2x64_install.md"
``` hl_lines="5-6"
📂data
@@ -59,67 +59,67 @@
🌶️spicecfg.exe
```
---8<-- "docs/snippets/bemani/common/spice2x64_stubs.md"
+--8<-- "docs/snippets/konami/common/spice2x64_stubs.md"
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
---8<-- "docs/snippets/bemani/iidx/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/iidx/spicecfg_buttons.md"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
---8<-- "docs/snippets/bemani/iidx/spicecfg_analogs.md"
+--8<-- "docs/snippets/konami/iidx/spicecfg_analogs.md"
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
---8<-- "docs/snippets/bemani/common/spicecfg_patches.md"
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/iidx/spicecfg_options_disablecams.md"
+--8<-- "docs/snippets/konami/iidx/spicecfg_options_disablecams.md"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
---8<-- "docs/snippets/bemani/iidx/spicecfg_options_tdj.md"
+--8<-- "docs/snippets/konami/iidx/spicecfg_options_tdj.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/iidx/spicecfg_advanced_camhook.md"
+--8<-- "docs/snippets/konami/iidx/spicecfg_advanced_camhook.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Configuring audio
---8<-- "docs/snippets/bemani/common/setup_audio.md"
+--8<-- "docs/snippets/konami/common/setup_audio.md"
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Configuring your game
@@ -143,19 +143,19 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
Press your `Test` key to initialize the backup data, a message will pop up stating it's been initialized.
Next, you'll get another error.
-
+
Press your `Test` key again and let the game run for a bit until the monitor check is complete.
You will now be taken to the service menu.
-
+
Instructions on how to navigate the menu are shown at the bottom of the screen:
@@ -164,7 +164,7 @@
Start by going up to `CLOCK`.
-
+
Here, simply select `SAVE AND EXIT` and the clock will be set.
@@ -172,19 +172,19 @@
Go to `NETWORK OPTIONS` then `SHOP NAME SETTING`.
-
-
+
+
You will need to set a shop name.
- Name your shop to whatever you'd like. Again, navigation instructions are at the bottom of the screen.
- Go to `EXIT` then `SAVE AND EXIT`.
-
+
Select `GAME MODE`.
-
+
!!! success "You're all done! The game should load up properly now"
diff --git a/docs/games/bemani/iidx/common/31plus/troubleshooting.md b/docs/games/konami/iidx/common/31plus/troubleshooting.md
similarity index 100%
rename from docs/games/bemani/iidx/common/31plus/troubleshooting.md
rename to docs/games/konami/iidx/common/31plus/troubleshooting.md
diff --git a/docs/games/konami/jubeat/avenue/setup.md b/docs/games/konami/jubeat/avenue/setup.md
new file mode 100644
index 00000000..11755536
--- /dev/null
+++ b/docs/games/konami/jubeat/avenue/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/jubeat/beyondtheavenue/setup.md b/docs/games/konami/jubeat/beyondtheavenue/setup.md
new file mode 100644
index 00000000..1fc0e079
--- /dev/null
+++ b/docs/games/konami/jubeat/beyondtheavenue/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/bemani/jubeat/common/setup.md b/docs/games/konami/jubeat/common/setup.md
similarity index 80%
rename from docs/games/bemani/jubeat/common/setup.md
rename to docs/games/konami/jubeat/common/setup.md
index fd56353f..a7a481e5 100644
--- a/docs/games/bemani/jubeat/common/setup.md
+++ b/docs/games/konami/jubeat/common/setup.md
@@ -47,11 +47,11 @@
- `OldDateCode` is the older date, the game version required to apply this update
- `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
---8<-- "docs/snippets/bemani/common/data_update.md"
+--8<-- "docs/snippets/konami/common/data_update.md"
## Installing spice2x
---8<-- "docs/snippets/bemani/common/spice2x32_install.md"
+--8<-- "docs/snippets/konami/common/spice2x32_install.md"
``` hl_lines="5-6"
📂data
@@ -62,15 +62,15 @@
🌶️spicecfg.exe
```
---8<-- "docs/snippets/bemani/common/spice2x32_stubs.md"
+--8<-- "docs/snippets/konami/common/spice2x32_stubs.md"
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
!!! tip "Binding your buttons"
@@ -86,43 +86,43 @@
spice2x supports using a touch screen instead of the 16 game buttons. In that case, you don't need to bind these buttons.
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
---8<-- "docs/snippets/bemani/common/spicecfg_patches.md"
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Configuring audio
@@ -139,7 +139,7 @@
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Installing VCRedist & DirectX
@@ -159,7 +159,7 @@
If it's your first time running the game, you'll immediately be greeted with this screen.
-
+
Press your `Test` key to initialize the backup data, another message with the same error will pop up.
Press your `Test` key again to open the service menu.
@@ -170,7 +170,7 @@
Go to `GAME OPTIONS`, then `SHOP SETTINGS`.
-
+
You will need to set a shop name.
diff --git a/docs/games/konami/jubeat/festo/setup.md b/docs/games/konami/jubeat/festo/setup.md
new file mode 100644
index 00000000..73f99db2
--- /dev/null
+++ b/docs/games/konami/jubeat/festo/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/jubeat/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/mfg/setup.md b/docs/games/konami/mfg/setup.md
new file mode 100644
index 00000000..4dbdc3a4
--- /dev/null
+++ b/docs/games/konami/mfg/setup.md
@@ -0,0 +1,110 @@
+
+# Game Setup
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+## Preparing Data
+
+--8<-- "docs/snippets/common/data_readonly.md"
+
+ The **complete game data** should be approximately **5 GB or larger**
+
+ Here's what the expected data structure should look like:
+
+ ```
+ 📂prop
+ 📂modules
+ 📂game
+ 📄game.inf
+ ```
+
+--8<-- "docs/snippets/konami/common/data_bad.md"
+
+## Installing spice2x
+
+--8<-- "docs/snippets/konami/common/spice2x64_install.md"
+
+ ``` hl_lines="5-6"
+ 📂prop
+ 📂modules
+ 📂game
+ 📄game.inf
+ 🌶️spice64.exe
+ 🌶️spicecfg.exe
+ ```
+
+## Configuring spice2x
+
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
+
+=== "Buttons"
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
+
+ !!! tip "Binding your buttons"
+
+ Click on `Bind` or `Naive` then press the key you want associated with the action.
+
+ With your keyboard plugged in, configure your keys for P1 and/or P2:
+
+ - **Maintenance**: `Service, Test`
+
+ Mahjong Fight Girl is a touchscreen game, so it does not need any extra button configuration beyond the above.
+
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
+
+=== "Analogs"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "Overlay"
+
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
+
+=== "Lights"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "Cards"
+
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
+
+=== "Patches"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "API"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "Options"
+
+--8<-- "docs/snippets/konami/common/spicecfg_options.md"
+
+ !!! tip "Choose Cab Type"
+
+ Mahjong Fight Girl has multiple cab types. **HG** is currently the only supported cab type.
+
+=== "Advanced"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+=== "Development"
+
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
+
+## Connecting to a network
+
+--8<-- "docs/snippets/konami/common/setup_network.md"
+
+## Installing VCRedist & DirectX
+
+--8<-- "docs/snippets/common/setup_vcredist_directx.md"
+
+## Before playing
+
+--8<-- "docs/snippets/common/before_playing.md"
+
+## Help
+
+--8<-- "docs/snippets/common/help.md"
diff --git a/docs/games/konami/mfg/troubleshooting.md b/docs/games/konami/mfg/troubleshooting.md
new file mode 100644
index 00000000..68268f25
--- /dev/null
+++ b/docs/games/konami/mfg/troubleshooting.md
@@ -0,0 +1,13 @@
+
+
+# Troubleshooting
+
+--8<-- "docs/snippets/common/data_warning.md"
+
+!!! info "For any issues not covered here, spice2x's [Known issues](https://github.com/spice2x/spice2x.github.io/wiki/Known-issues) page might prove useful"
+
+## Technical problems
+
+??? tip "I can't select anything on screen"
+
+ Make sure your cab type in spicecfg is set to **HG**
\ No newline at end of file
diff --git a/docs/games/bemani/museca/1plushalf/setup.md b/docs/games/konami/museca/1plushalf/setup.md
similarity index 69%
rename from docs/games/bemani/museca/1plushalf/setup.md
rename to docs/games/konami/museca/1plushalf/setup.md
index 88a01db6..4bd5f438 100644
--- a/docs/games/bemani/museca/1plushalf/setup.md
+++ b/docs/games/konami/museca/1plushalf/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/data_warning.md"
@@ -18,11 +18,11 @@
📂prop
```
---8<-- "docs/snippets/bemani/common/data_bad.md"
+--8<-- "docs/snippets/konami/common/data_bad.md"
## Installing spice2x
---8<-- "docs/snippets/bemani/common/spice2x64_install.md"
+--8<-- "docs/snippets/konami/common/spice2x64_install.md"
``` hl_lines="5-6"
📂data
@@ -33,15 +33,15 @@
🌶️spicecfg.exe
```
---8<-- "docs/snippets/bemani/common/spice2x64_stubs.md"
+--8<-- "docs/snippets/konami/common/spice2x64_stubs.md"
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
!!! tip "Binding your buttons"
@@ -57,7 +57,7 @@
- **Disks:** `Disk#- (1 to 5), Disk#+ (1 to 5)` (`Disk#-` is counter-clockwise, while `Disk#+` is clockwise.)
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
@@ -77,49 +77,49 @@
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
---8<-- "docs/snippets/bemani/common/spicecfg_patches.md"
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/common/spicecfg_options.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options.md"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Configuring Audio
---8<-- "docs/snippets/bemani/common/setup_audio_wasapiexcl_only.md"
+--8<-- "docs/snippets/konami/common/setup_audio_wasapiexcl_only.md"
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Monitor Orientation
---8<-- "docs/snippets/bemani/common/display_portraitfirst.md"
+--8<-- "docs/snippets/konami/common/display_portraitfirst.md"
## Installing VCRedist & DirectX
@@ -135,7 +135,7 @@
The game will go through a series of checks, let it run, if you've done everything properly they'll pass.
-
+
If you're seeing this screen, it means you need to press the `Test` button to initialize the game's backup data.
diff --git a/docs/games/bemani/museca/1plushalf/troubleshooting.md b/docs/games/konami/museca/1plushalf/troubleshooting.md
similarity index 96%
rename from docs/games/bemani/museca/1plushalf/troubleshooting.md
rename to docs/games/konami/museca/1plushalf/troubleshooting.md
index 7a953d16..3eda4f20 100644
--- a/docs/games/bemani/museca/1plushalf/troubleshooting.md
+++ b/docs/games/konami/museca/1plushalf/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/data_warning.md"
@@ -35,7 +35,7 @@
- Your PC hardware might be insufficient to keep a steady 60 FPS. Make sure your PC meets the requirements of this game.
- Your data may be corrupt in one way or another, you could try starting from scratch using trusted data sources.
- Your PC may not meet the specifications for MÚSECA. In the arcade, it runs on a Bemani PC (ADE-6291):
+ Your PC may not meet the specifications for MÚSECA. In the arcade, it runs on a Konami PC (ADE-6291):
- CPU: AMD RX-421BD
diff --git a/docs/games/bemani/nostalgia/forte/setup.md b/docs/games/konami/nostalgia/forte/setup.md
similarity index 91%
rename from docs/games/bemani/nostalgia/forte/setup.md
rename to docs/games/konami/nostalgia/forte/setup.md
index 476c6b8e..85bf9dda 100644
--- a/docs/games/bemani/nostalgia/forte/setup.md
+++ b/docs/games/konami/nostalgia/forte/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired 64-bit tools inside the game's main folder and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
## Configuring Your Tools
@@ -55,37 +55,37 @@
If it's your first time running the game, you should be automatically forced into the service menu with lots of scary flashing notifications as pictured below, let's work through them.
-
+
!!! tip ""
Interestingly, only the red flashing ones really take any effort to deal with. You can start by entering and exiting the following menus: `SOUND OPTIONS`, `GAME OPTIONS`, `COIN OPTIONS`, `ECOMODE OPTIONS`, and `NETWORK OPTIONS`.
Once you've done that, enter `CLOCK` and set the clock by hitting `SAVE AND EXIT` as pictured below.
-
+
!!! tip ""
The final menu we must deal with is `VIRTUAL COIN`, enter the menu and select `OPERATION SETTINGS` as seen below.
-
+
!!! tip ""
Once inside this menu, we'll need to deal with all 4 blinking options, let's start by entering the `TAX RATE SETTING` menu, shown below.
-
+
!!! tip ""
Set the tax rate by simply selecting `SAVE AND EXIT` while will take us back into the `OPERATING SETTINGS`. Pictured below is the `TAX RATE SETTING` menu.
-
+
!!! tip ""
Once back inside the `TAX RATE SETTING` menu, we must deal with the three blinking `PATTERN` options. Doing so is effortless, simply enter all three menus one by one and hit `SAVE AND EXIT` just as we did for the `TAX RATE SETTING` in the previous step. Pictured below is the inside of `PATTERN 1`.
-
+
!!! tip ""
After saving and exiting all three `PATTERN` options, you're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
diff --git a/docs/games/bemani/nostalgia/forte/troubleshooting.md b/docs/games/konami/nostalgia/forte/troubleshooting.md
similarity index 93%
rename from docs/games/bemani/nostalgia/forte/troubleshooting.md
rename to docs/games/konami/nostalgia/forte/troubleshooting.md
index a56ff35c..d9beb39f 100644
--- a/docs/games/bemani/nostalgia/forte/troubleshooting.md
+++ b/docs/games/konami/nostalgia/forte/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
@@ -8,7 +8,7 @@
## Hardware Specs
!!! tip ""
- Bemani PC Type 6 (ADE-704A)
+ Konami PC Type 6 (ADE-704A)
Based on an AMD Embedded R Series SoC.
diff --git a/docs/games/bemani/nostalgia/op2/setup.md b/docs/games/konami/nostalgia/op2/setup.md
similarity index 91%
rename from docs/games/bemani/nostalgia/op2/setup.md
rename to docs/games/konami/nostalgia/op2/setup.md
index fb975985..079c269a 100644
--- a/docs/games/bemani/nostalgia/op2/setup.md
+++ b/docs/games/konami/nostalgia/op2/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired 64-bit tools inside the game's main folder and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file whatever you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
## Configuring Your Tools
@@ -55,37 +55,37 @@
If it's your first time running the game, you should be automatically forced into the service menu with lots of scary flashing notifications as pictured below, let's work through them.
-
+
!!! tip ""
Interestingly, only the red flashing ones really take any effort to deal with. You can start by entering and exiting the following menus: `SOUND OPTIONS`, `GAME OPTIONS`, `COIN OPTIONS`, `ECOMODE OPTIONS`, and `NETWORK OPTIONS`.
Once you've done that, enter `CLOCK` and set the clock by hitting `SAVE AND EXIT` as pictured below.
-
+
!!! tip ""
The final menu we must deal with is `VIRTUAL COIN`, enter the menu and select `OPERATION SETTINGS` as seen below.
-
+
!!! tip ""
Once inside this menu, we'll need to deal with all 4 blinking options, let's start by entering the `TAX RATE SETTING` menu, shown below.
-
+
!!! tip ""
Set the tax rate by simply selecting `SAVE AND EXIT` while will take us back into the `OPERATING SETTINGS`. Pictured below is the `TAX RATE SETTING` menu.
-
+
!!! tip ""
Once back inside the `TAX RATE SETTING` menu, we must deal with the three blinking `PATTERN` options. Doing so is effortless, simply enter all three menus one by one and hit `SAVE AND EXIT` just as we did for the `TAX RATE SETTING` in the previous step. Pictured below is the inside of `PATTERN 1`.
-
+
!!! tip ""
After saving and exiting all three `PATTERN` options, you're all done! From the service menu select `GAME MODE` and the game should load ready to be played! Have fun!
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
diff --git a/docs/games/bemani/nostalgia/op2/troubleshooting.md b/docs/games/konami/nostalgia/op2/troubleshooting.md
similarity index 94%
rename from docs/games/bemani/nostalgia/op2/troubleshooting.md
rename to docs/games/konami/nostalgia/op2/troubleshooting.md
index b75f331b..ca7cba18 100644
--- a/docs/games/bemani/nostalgia/op2/troubleshooting.md
+++ b/docs/games/konami/nostalgia/op2/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
@@ -8,7 +8,7 @@
## Hardware Specs
!!! tip ""
- Bemani PC Type 6 (ADE-704A)
+ Konami PC Type 6 (ADE-704A)
Based on an AMD Embedded R Series SoC.
diff --git a/docs/games/bemani/popn/common/setup.md b/docs/games/konami/popn/common/setup.md
similarity index 71%
rename from docs/games/bemani/popn/common/setup.md
rename to docs/games/konami/popn/common/setup.md
index d7c57b8b..302b8d03 100644
--- a/docs/games/bemani/popn/common/setup.md
+++ b/docs/games/konami/popn/common/setup.md
@@ -18,7 +18,7 @@
📂prop
```
---8<-- "docs/snippets/bemani/common/data_bad.md"
+--8<-- "docs/snippets/konami/common/data_bad.md"
!!! info "If your data is already up-to-date, you can skip ahead to the [Installing spice2x](#installing-spice2x) section"
@@ -38,11 +38,11 @@
- `OldDateCode` is the older date, the game version required to apply this update
- `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
---8<-- "docs/snippets/bemani/common/data_update.md"
+--8<-- "docs/snippets/konami/common/data_update.md"
## Installing spice2x
---8<-- "docs/snippets/bemani/common/spice2x32_install.md"
+--8<-- "docs/snippets/konami/common/spice2x32_install.md"
``` hl_lines="5-6"
📂data
@@ -55,11 +55,11 @@
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
!!! tip "Binding your buttons"
@@ -71,23 +71,23 @@
- **Game buttons**: `1 to 9`
- **P1 Keypad**: `1 to 9, Keypad Insert Card`
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
@@ -95,23 +95,23 @@
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Before playing
diff --git a/docs/games/bemani/popn/common/troubleshooting.md b/docs/games/konami/popn/common/troubleshooting.md
similarity index 100%
rename from docs/games/bemani/popn/common/troubleshooting.md
rename to docs/games/konami/popn/common/troubleshooting.md
diff --git a/docs/games/konami/popn/kaimei_riddles/setup.md b/docs/games/konami/popn/kaimei_riddles/setup.md
new file mode 100644
index 00000000..4c993b80
--- /dev/null
+++ b/docs/games/konami/popn/kaimei_riddles/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/kaimei_riddles/troubleshooting.md b/docs/games/konami/popn/kaimei_riddles/troubleshooting.md
new file mode 100644
index 00000000..b77117af
--- /dev/null
+++ b/docs/games/konami/popn/kaimei_riddles/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/peace/setup.md b/docs/games/konami/popn/peace/setup.md
new file mode 100644
index 00000000..77f74c6b
--- /dev/null
+++ b/docs/games/konami/popn/peace/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/peace/troubleshooting.md b/docs/games/konami/popn/peace/troubleshooting.md
new file mode 100644
index 00000000..cd949703
--- /dev/null
+++ b/docs/games/konami/popn/peace/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/unilab/setup.md b/docs/games/konami/popn/unilab/setup.md
new file mode 100644
index 00000000..a0c1e30d
--- /dev/null
+++ b/docs/games/konami/popn/unilab/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/unilab/troubleshooting.md b/docs/games/konami/popn/unilab/troubleshooting.md
new file mode 100644
index 00000000..0c9e0fe3
--- /dev/null
+++ b/docs/games/konami/popn/unilab/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/usaneko/setup.md b/docs/games/konami/popn/usaneko/setup.md
new file mode 100644
index 00000000..d98ffaf8
--- /dev/null
+++ b/docs/games/konami/popn/usaneko/setup.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/setup.md"
\ No newline at end of file
diff --git a/docs/games/konami/popn/usaneko/troubleshooting.md b/docs/games/konami/popn/usaneko/troubleshooting.md
new file mode 100644
index 00000000..e94b60e4
--- /dev/null
+++ b/docs/games/konami/popn/usaneko/troubleshooting.md
@@ -0,0 +1,2 @@
+
+--8<-- "docs/games/konami/popn/common/troubleshooting.md"
\ No newline at end of file
diff --git a/docs/games/bemani/reflecbeat/reflesia/setup.md b/docs/games/konami/reflecbeat/reflesia/setup.md
similarity index 96%
rename from docs/games/bemani/reflecbeat/reflesia/setup.md
rename to docs/games/konami/reflecbeat/reflesia/setup.md
index 0582aff0..0686fdaf 100644
--- a/docs/games/bemani/reflecbeat/reflesia/setup.md
+++ b/docs/games/konami/reflecbeat/reflesia/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -11,7 +11,7 @@
This game still uses DirectSound so we can skip audio related setup needed for other games. After downloading your data, the first thing to do is put your desired 32-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file anything you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
## Configuring Your Tools
@@ -67,4 +67,4 @@
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) and [Error Code](/errorcodes/bemani.md) sections to resolve any issues not seen in this guide.
+ Check out the [Troubleshooting](troubleshooting.md) and [Error Code](/errorcodes/konami.md) sections to resolve any issues not seen in this guide.
diff --git a/docs/games/bemani/reflecbeat/reflesia/troubleshooting.md b/docs/games/konami/reflecbeat/reflesia/troubleshooting.md
similarity index 93%
rename from docs/games/bemani/reflecbeat/reflesia/troubleshooting.md
rename to docs/games/konami/reflecbeat/reflesia/troubleshooting.md
index dbd8aa05..d7439d28 100644
--- a/docs/games/bemani/reflecbeat/reflesia/troubleshooting.md
+++ b/docs/games/konami/reflecbeat/reflesia/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
@@ -8,7 +8,7 @@
## Hardware Specs
!!! tip ""
- Bemani PC (ADE-704A)
+ Konami PC (ADE-704A)
CPU: Intel Celeron B810 1.6GHz
diff --git a/docs/games/bemani/sdvx/4_heavenlyhaven/setup.md b/docs/games/konami/sdvx/4_heavenlyhaven/setup.md
similarity index 93%
rename from docs/games/bemani/sdvx/4_heavenlyhaven/setup.md
rename to docs/games/konami/sdvx/4_heavenlyhaven/setup.md
index 5a37140a..28bff93b 100644
--- a/docs/games/bemani/sdvx/4_heavenlyhaven/setup.md
+++ b/docs/games/konami/sdvx/4_heavenlyhaven/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -11,7 +11,7 @@
This game still uses DirectSound so we can skip audio related setup needed for other games. After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired 32-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file anything you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
### Configuring Your Tools
@@ -37,7 +37,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
### Configuring for an Online Network
@@ -53,7 +53,7 @@
Pictured below, the contents of our `gamestart.bat` file in Notepad++.
-
+
!!! tip ""
@@ -71,4 +71,4 @@
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
diff --git a/docs/games/bemani/sdvx/4_heavenlyhaven/troubleshooting.md b/docs/games/konami/sdvx/4_heavenlyhaven/troubleshooting.md
similarity index 92%
rename from docs/games/bemani/sdvx/4_heavenlyhaven/troubleshooting.md
rename to docs/games/konami/sdvx/4_heavenlyhaven/troubleshooting.md
index af350ef1..b33a2118 100644
--- a/docs/games/bemani/sdvx/4_heavenlyhaven/troubleshooting.md
+++ b/docs/games/konami/sdvx/4_heavenlyhaven/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
@@ -8,7 +8,7 @@
## Hardware Specs
!!! tip ""
- Bemani PC Type 4
+ Konami PC Type 4
CPU: Celeron M 440 1.86GHz
diff --git a/docs/games/bemani/sdvx/5_vividwave/setup.md b/docs/games/konami/sdvx/5_vividwave/setup.md
similarity index 95%
rename from docs/games/bemani/sdvx/5_vividwave/setup.md
rename to docs/games/konami/sdvx/5_vividwave/setup.md
index 57b937c3..c7ee71fc 100644
--- a/docs/games/bemani/sdvx/5_vividwave/setup.md
+++ b/docs/games/konami/sdvx/5_vividwave/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/old_guide.md"
@@ -17,7 +17,7 @@
After downloading your data, the first thing to do is make sure your files aren't set to READ ONLY, make sure to uncheck it from the main folder in the Windows Properties tab if so. Then, put your desired 64-bit tools inside the game's `contents` folder, and to create a `.bat` file. Pictured below is what your folder should look like, feel free to name your `.bat` file anything you desire, for the sake of convenience we've named ours `gamestart.bat`.
-
+
!!! tip ""
Why does this look different than the usual? This installation includes a `modules` folder that Spice automatically detects, keeping things clean and simple. If your version of the game doesn't have this, it probably has the `contents` folder populated with many different dll files such as the main `soundvoltex.dll`. You should still place your tools here if so!
@@ -71,4 +71,4 @@
!!! warning "Have any other errors?"
- Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/bemani.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
+ Check out the [Troubleshooting](troubleshooting.md) section and [Error Code](/errorcodes/konami.md) section to resolve any issues not seen in this guide to greater depth.
\ No newline at end of file
diff --git a/docs/games/bemani/sdvx/5_vividwave/troubleshooting.md b/docs/games/konami/sdvx/5_vividwave/troubleshooting.md
similarity index 97%
rename from docs/games/bemani/sdvx/5_vividwave/troubleshooting.md
rename to docs/games/konami/sdvx/5_vividwave/troubleshooting.md
index aefc3273..dc7621f4 100644
--- a/docs/games/bemani/sdvx/5_vividwave/troubleshooting.md
+++ b/docs/games/konami/sdvx/5_vividwave/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/old_guide.md"
@@ -9,7 +9,7 @@
!!! tip ""
- Bemani PC Type 4
+ Konami PC Type 4
CPU: Intel i3-4300 3.5GHz
diff --git a/docs/games/bemani/sdvx/6_exceedgear/extras.md b/docs/games/konami/sdvx/6_exceedgear/extras.md
similarity index 97%
rename from docs/games/bemani/sdvx/6_exceedgear/extras.md
rename to docs/games/konami/sdvx/6_exceedgear/extras.md
index d95f94da..9dd400fc 100644
--- a/docs/games/bemani/sdvx/6_exceedgear/extras.md
+++ b/docs/games/konami/sdvx/6_exceedgear/extras.md
@@ -1,4 +1,4 @@
-
+
# Extra Information
--8<-- "docs/snippets/common/data_warning.md"
diff --git a/docs/games/bemani/sdvx/6_exceedgear/setup.md b/docs/games/konami/sdvx/6_exceedgear/setup.md
similarity index 67%
rename from docs/games/bemani/sdvx/6_exceedgear/setup.md
rename to docs/games/konami/sdvx/6_exceedgear/setup.md
index 62e6de08..47341639 100644
--- a/docs/games/bemani/sdvx/6_exceedgear/setup.md
+++ b/docs/games/konami/sdvx/6_exceedgear/setup.md
@@ -1,4 +1,4 @@
-
+
# Game Setup
--8<-- "docs/snippets/common/data_warning.md"
@@ -20,13 +20,13 @@
📂prop
```
---8<-- "docs/snippets/bemani/common/data_bad.md"
+--8<-- "docs/snippets/konami/common/data_bad.md"
!!! info "If your data is already up-to-date, you can skip ahead to the [Installing spice2x](#installing-spice2x) section"
## Updating data
-!!! info "For a comprehensive list of all game updates in chronological order, visit [BemaniWiki](https://bemaniwiki.com/?SOUND+VOLTEX+EXCEED+GEAR#sdvxegvernew)"
+!!! info "For a comprehensive list of all game updates in chronological order, visit [KonamiWiki](https://bemaniwiki.com/?SOUND+VOLTEX+EXCEED+GEAR#sdvxegvernew)"
!!! danger "Make sure you're using the right update for your current game version"
@@ -40,11 +40,11 @@
- `OldDateCode` is the older date, the game version required to apply this update
- `NewDateCode` is the newer date, and is the version you'll arrive at after applying the update
---8<-- "docs/snippets/bemani/common/data_update.md"
+--8<-- "docs/snippets/konami/common/data_update.md"
## Installing spice2x
---8<-- "docs/snippets/bemani/common/spice2x64_install.md"
+--8<-- "docs/snippets/konami/common/spice2x64_install.md"
``` hl_lines="6-7"
📂data
@@ -56,65 +56,65 @@
🌶️spicecfg.exe
```
---8<-- "docs/snippets/bemani/common/spice2x64_stubs.md"
+--8<-- "docs/snippets/konami/common/spice2x64_stubs.md"
## Configuring spice2x
---8<-- "docs/snippets/bemani/common/spicecfg_preamble.md"
+--8<-- "docs/snippets/konami/common/spicecfg_preamble.md"
=== "Buttons"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons.md"
---8<-- "docs/snippets/bemani/sdvx/spicecfg_buttons.md"
+--8<-- "docs/snippets/konami/sdvx/spicecfg_buttons.md"
---8<-- "docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md"
+--8<-- "docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md"
=== "Analogs"
---8<-- "docs/snippets/bemani/sdvx/spicecfg_analogs.md"
+--8<-- "docs/snippets/konami/sdvx/spicecfg_analogs.md"
=== "Overlay"
---8<-- "docs/snippets/bemani/common/spicecfg_overlay.md"
+--8<-- "docs/snippets/konami/common/spicecfg_overlay.md"
=== "Lights"
---8<-- "docs/snippets/bemani/common/spicecfg_lights.md"
+--8<-- "docs/snippets/konami/common/spicecfg_lights.md"
=== "Cards"
---8<-- "docs/snippets/bemani/common/spicecfg_cards.md"
+--8<-- "docs/snippets/konami/common/spicecfg_cards.md"
=== "Patches"
---8<-- "docs/snippets/bemani/common/spicecfg_patches.md"
+--8<-- "docs/snippets/konami/common/spicecfg_patches.md"
=== "API"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Options"
---8<-- "docs/snippets/bemani/common/spicecfg_options.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options.md"
---8<-- "docs/snippets/bemani/common/spicecfg_options_nvprofile.md"
+--8<-- "docs/snippets/konami/common/spicecfg_options_nvprofile.md"
=== "Advanced"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
=== "Development"
---8<-- "docs/snippets/bemani/common/spicecfg_nochange.md"
+--8<-- "docs/snippets/konami/common/spicecfg_nochange.md"
## Configuring audio
---8<-- "docs/snippets/bemani/common/setup_audio.md"
+--8<-- "docs/snippets/konami/common/setup_audio.md"
## Connecting to a network
---8<-- "docs/snippets/bemani/common/setup_network.md"
+--8<-- "docs/snippets/konami/common/setup_network.md"
## Configuring your game
@@ -122,7 +122,7 @@
## Monitor Orientation
---8<-- "docs/snippets/bemani/common/display_portraitfirst.md"
+--8<-- "docs/snippets/konami/common/display_portraitfirst.md"
## Installing VCRedist & DirectX
@@ -142,7 +142,7 @@
The game will go through a series of checks, let it run, if you've done everything properly they'll pass.
-
+
If you're seeing this screen, it means you need to calibrate your knobs.
@@ -156,12 +156,12 @@
Select `I/O CHECK` and press `Start`.
-
+
Select `CALIBRATION SETTINGS` and press `Start`.
-
-
+
+
Select `CALIBRATION` and press `Start`.
@@ -175,11 +175,11 @@
- **Slowly turn** your **RIGHT knob counterclockwise** (`VOL-R Left`) until the line says `COUNT = OK` then press `Start`.
- **Slowly turn** your **RIGHT knob clockwise** (`VOL-R Right`) until the line says `COUNT = OK` then press `Start`.
-
+
Select `SAVE AND EXIT` and press `Start`.
-
+
Select `GAME MODE` and press `Start`.
diff --git a/docs/games/bemani/sdvx/6_exceedgear/troubleshooting.md b/docs/games/konami/sdvx/6_exceedgear/troubleshooting.md
similarity index 99%
rename from docs/games/bemani/sdvx/6_exceedgear/troubleshooting.md
rename to docs/games/konami/sdvx/6_exceedgear/troubleshooting.md
index 94663794..fc8e21b5 100644
--- a/docs/games/bemani/sdvx/6_exceedgear/troubleshooting.md
+++ b/docs/games/konami/sdvx/6_exceedgear/troubleshooting.md
@@ -1,4 +1,4 @@
-
+
# Troubleshooting
--8<-- "docs/snippets/common/data_warning.md"
diff --git a/docs/games/namco/taikonijiiro/troubleshooting.md b/docs/games/namco/taikonijiiro/troubleshooting.md
index 4e86e920..212fcdf0 100644
--- a/docs/games/namco/taikonijiiro/troubleshooting.md
+++ b/docs/games/namco/taikonijiiro/troubleshooting.md
@@ -56,11 +56,12 @@
The game needs to be ran at 120 FPS or things will break.
??? tip "If you have a display that supports 120 Hz or higher"
- - Set your display to 120 Hz. You may need to make a custom resolution.
+ - Set your display to 120 Hz. You may need to make a [custom resolution](https://customresolutionutility.net/).
- In `config.toml` set `vsync =` to `true`.
??? tip "If you have a display that is less than 120 Hz"
- - In `config.toml` set `vsync =` to `false` and `windowed =` to `true`.
+ - In `config.toml` set `vsync =` to `false` and `windowed =` to `true`.
+ - Alternatively you can use [RTSS](https://www.guru3d.com/download/rtss-rivatuner-statistics-server-download/).
### My game is not connected to a network but I set one up
@@ -119,4 +120,4 @@
- Inside `config.toml`, set `wasapi_shared =` to `false` and set `asio =` to `true`.
- Change `asio_driver =` to `asio_driver = ""`
- For more information refer to the general [Audio](/extras/audio.md) guide.
\ No newline at end of file
+ For more information refer to the general [Audio](/extras/audio.md) guide.
diff --git a/docs/games/sega/chunithm/chunithm/setup.md b/docs/games/sega/chunithm/chunithm/setup.md
index 8635b8fa..4c0fa03e 100644
--- a/docs/games/sega/chunithm/chunithm/setup.md
+++ b/docs/games/sega/chunithm/chunithm/setup.md
@@ -1,4 +1,4 @@
-
-
---8<-- "docs/games/sega/chunithm/common/chuni/setup_belowcrystal.md"
+!!! warning "Warning"
+ This guide is for the original version of CHUNITHM released in 2015. If you want to run a newer version, please find and follow the right guide.
+--8<-- "docs/games/sega/chunithm/common/chuni/setup_belowcrystal.md"
\ No newline at end of file
diff --git a/docs/games/sega/chunithm/x-verse/c2c.md b/docs/games/sega/chunithm/x-verse/c2c.md
new file mode 100644
index 00000000..bef03e06
--- /dev/null
+++ b/docs/games/sega/chunithm/x-verse/c2c.md
@@ -0,0 +1,3 @@
+
+--8<-- "docs/games/sega/chunithm/common/chusan/c2c.md"
+
diff --git a/docs/games/sega/chunithm/x-verse/controllers.md b/docs/games/sega/chunithm/x-verse/controllers.md
new file mode 100644
index 00000000..2cd7a995
--- /dev/null
+++ b/docs/games/sega/chunithm/x-verse/controllers.md
@@ -0,0 +1,3 @@
+
+--8<-- "docs/games/sega/chunithm/common/chusan/controllers.md"
+
diff --git a/docs/games/sega/chunithm/x-verse/setup.md b/docs/games/sega/chunithm/x-verse/setup.md
new file mode 100644
index 00000000..177a6dc6
--- /dev/null
+++ b/docs/games/sega/chunithm/x-verse/setup.md
@@ -0,0 +1,3 @@
+
+--8<-- "docs/games/sega/chunithm/common/chusan/setup.md"
+
diff --git a/docs/games/sega/chunithm/x-verse/troubleshooting.md b/docs/games/sega/chunithm/x-verse/troubleshooting.md
new file mode 100644
index 00000000..c45d0d80
--- /dev/null
+++ b/docs/games/sega/chunithm/x-verse/troubleshooting.md
@@ -0,0 +1,3 @@
+
+--8<-- "docs/games/sega/chunithm/common/chusan/troubleshooting.md"
+
diff --git a/docs/games/sega/wacca/reverse/setup.md b/docs/games/sega/wacca/reverse/setup.md
index 6bc4454e..928e8d7c 100644
--- a/docs/games/sega/wacca/reverse/setup.md
+++ b/docs/games/sega/wacca/reverse/setup.md
@@ -95,6 +95,18 @@
--8<-- "docs/snippets/common/setup_vcredist_directx.md"
+## OpenSSL Fix (Intel 10th Gen+)
+
+!!! tip ""
+
+ If you have an Intel 10th Gen CPU or newer, add this line below `@echo off` in your `launch.bat` file to apply the OpenSSL fix.
+
+ ``` batch title="launch.bat" hl_lines="2"
+ @echo off
+ set OPENSSL_ia32cap=:~0x20000000
+ [...]
+ ```
+
## Before playing
--8<-- "docs/snippets/common/before_playing.md"
diff --git a/docs/img/bemani/beatstream/animutribe/1.webp b/docs/img/konami/beatstream/animutribe/1.webp
similarity index 100%
rename from docs/img/bemani/beatstream/animutribe/1.webp
rename to docs/img/konami/beatstream/animutribe/1.webp
diff --git a/docs/img/bemani/beatstream/animutribe/logo.webp b/docs/img/konami/beatstream/animutribe/logo.webp
similarity index 100%
rename from docs/img/bemani/beatstream/animutribe/logo.webp
rename to docs/img/konami/beatstream/animutribe/logo.webp
diff --git a/docs/img/bemani/ddr/a20/logo.webp b/docs/img/konami/ddr/a20/logo.webp
similarity index 100%
rename from docs/img/bemani/ddr/a20/logo.webp
rename to docs/img/konami/ddr/a20/logo.webp
diff --git a/docs/img/bemani/ddr/a20plus/logo.webp b/docs/img/konami/ddr/a20plus/logo.webp
similarity index 100%
rename from docs/img/bemani/ddr/a20plus/logo.webp
rename to docs/img/konami/ddr/a20plus/logo.webp
diff --git a/docs/img/bemani/ddr/a3/logo.webp b/docs/img/konami/ddr/a3/logo.webp
similarity index 100%
rename from docs/img/bemani/ddr/a3/logo.webp
rename to docs/img/konami/ddr/a3/logo.webp
diff --git a/docs/img/bemani/ddr/world/logo.webp b/docs/img/konami/ddr/world/logo.webp
similarity index 100%
rename from docs/img/bemani/ddr/world/logo.webp
rename to docs/img/konami/ddr/world/logo.webp
diff --git a/docs/img/bemani/gitadora/exchain/1.webp b/docs/img/konami/gitadora/exchain/1.webp
similarity index 100%
rename from docs/img/bemani/gitadora/exchain/1.webp
rename to docs/img/konami/gitadora/exchain/1.webp
diff --git a/docs/img/bemani/gitadora/exchain/logo.webp b/docs/img/konami/gitadora/exchain/logo.webp
similarity index 100%
rename from docs/img/bemani/gitadora/exchain/logo.webp
rename to docs/img/konami/gitadora/exchain/logo.webp
diff --git a/docs/img/bemani/gitadora/fuzzup/logo.webp b/docs/img/konami/gitadora/fuzzup/logo.webp
similarity index 100%
rename from docs/img/bemani/gitadora/fuzzup/logo.webp
rename to docs/img/konami/gitadora/fuzzup/logo.webp
diff --git a/docs/img/bemani/gitadora/fuzzup/spice.webp b/docs/img/konami/gitadora/fuzzup/spice.webp
similarity index 100%
rename from docs/img/bemani/gitadora/fuzzup/spice.webp
rename to docs/img/konami/gitadora/fuzzup/spice.webp
diff --git a/docs/img/bemani/gitadora/matixx/1.webp b/docs/img/konami/gitadora/matixx/1.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/1.webp
rename to docs/img/konami/gitadora/matixx/1.webp
diff --git a/docs/img/bemani/gitadora/matixx/2d.webp b/docs/img/konami/gitadora/matixx/2d.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/2d.webp
rename to docs/img/konami/gitadora/matixx/2d.webp
diff --git a/docs/img/bemani/gitadora/matixx/2g.webp b/docs/img/konami/gitadora/matixx/2g.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/2g.webp
rename to docs/img/konami/gitadora/matixx/2g.webp
diff --git a/docs/img/bemani/gitadora/matixx/3d.webp b/docs/img/konami/gitadora/matixx/3d.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/3d.webp
rename to docs/img/konami/gitadora/matixx/3d.webp
diff --git a/docs/img/bemani/gitadora/matixx/3g.webp b/docs/img/konami/gitadora/matixx/3g.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/3g.webp
rename to docs/img/konami/gitadora/matixx/3g.webp
diff --git a/docs/img/bemani/gitadora/matixx/4.webp b/docs/img/konami/gitadora/matixx/4.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/4.webp
rename to docs/img/konami/gitadora/matixx/4.webp
diff --git a/docs/img/bemani/gitadora/matixx/5.webp b/docs/img/konami/gitadora/matixx/5.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/5.webp
rename to docs/img/konami/gitadora/matixx/5.webp
diff --git a/docs/img/bemani/gitadora/matixx/6.webp b/docs/img/konami/gitadora/matixx/6.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/6.webp
rename to docs/img/konami/gitadora/matixx/6.webp
diff --git a/docs/img/bemani/gitadora/matixx/7.webp b/docs/img/konami/gitadora/matixx/7.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/7.webp
rename to docs/img/konami/gitadora/matixx/7.webp
diff --git a/docs/img/bemani/gitadora/matixx/8.webp b/docs/img/konami/gitadora/matixx/8.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/8.webp
rename to docs/img/konami/gitadora/matixx/8.webp
diff --git a/docs/img/bemani/gitadora/matixx/9.webp b/docs/img/konami/gitadora/matixx/9.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/9.webp
rename to docs/img/konami/gitadora/matixx/9.webp
diff --git a/docs/img/bemani/gitadora/matixx/logo.webp b/docs/img/konami/gitadora/matixx/logo.webp
similarity index 100%
rename from docs/img/bemani/gitadora/matixx/logo.webp
rename to docs/img/konami/gitadora/matixx/logo.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/1.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/1.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/10.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/10.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/11.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/11.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/12.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/12.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/12.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/2.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/2.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/3.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/3.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/4.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/4.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/5.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/5.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/6.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/6.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/7.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/7.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/8.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/8.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/10thstyle/firstlaunch/9.webp b/docs/img/konami/iidx/10thstyle/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/firstlaunch/9.webp
rename to docs/img/konami/iidx/10thstyle/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/10thstyle/iidx10_linear.webp b/docs/img/konami/iidx/10thstyle/iidx10_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/iidx10_linear.webp
rename to docs/img/konami/iidx/10thstyle/iidx10_linear.webp
diff --git a/docs/img/bemani/iidx/10thstyle/iidx10_point.webp b/docs/img/konami/iidx/10thstyle/iidx10_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/iidx10_point.webp
rename to docs/img/konami/iidx/10thstyle/iidx10_point.webp
diff --git a/docs/img/bemani/iidx/10thstyle/logo.webp b/docs/img/konami/iidx/10thstyle/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/logo.webp
rename to docs/img/konami/iidx/10thstyle/logo.webp
diff --git a/docs/img/bemani/iidx/10thstyle/setup/1.webp b/docs/img/konami/iidx/10thstyle/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/setup/1.webp
rename to docs/img/konami/iidx/10thstyle/setup/1.webp
diff --git a/docs/img/bemani/iidx/10thstyle/setup/2.webp b/docs/img/konami/iidx/10thstyle/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/10thstyle/setup/2.webp
rename to docs/img/konami/iidx/10thstyle/setup/2.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/1.webp b/docs/img/konami/iidx/11_red/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/1.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/10.webp b/docs/img/konami/iidx/11_red/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/10.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/11.webp b/docs/img/konami/iidx/11_red/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/11.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/12.webp b/docs/img/konami/iidx/11_red/firstlaunch/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/12.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/12.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/2.webp b/docs/img/konami/iidx/11_red/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/2.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/3.webp b/docs/img/konami/iidx/11_red/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/3.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/4.webp b/docs/img/konami/iidx/11_red/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/4.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/5.webp b/docs/img/konami/iidx/11_red/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/5.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/6.webp b/docs/img/konami/iidx/11_red/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/6.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/7.webp b/docs/img/konami/iidx/11_red/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/7.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/8.webp b/docs/img/konami/iidx/11_red/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/8.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/11_red/firstlaunch/9.webp b/docs/img/konami/iidx/11_red/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/firstlaunch/9.webp
rename to docs/img/konami/iidx/11_red/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/11_red/iidx11_linear.webp b/docs/img/konami/iidx/11_red/iidx11_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/iidx11_linear.webp
rename to docs/img/konami/iidx/11_red/iidx11_linear.webp
diff --git a/docs/img/bemani/iidx/11_red/iidx11_point.webp b/docs/img/konami/iidx/11_red/iidx11_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/iidx11_point.webp
rename to docs/img/konami/iidx/11_red/iidx11_point.webp
diff --git a/docs/img/bemani/iidx/11_red/logo.webp b/docs/img/konami/iidx/11_red/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/logo.webp
rename to docs/img/konami/iidx/11_red/logo.webp
diff --git a/docs/img/bemani/iidx/11_red/setup/1.webp b/docs/img/konami/iidx/11_red/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/setup/1.webp
rename to docs/img/konami/iidx/11_red/setup/1.webp
diff --git a/docs/img/bemani/iidx/11_red/setup/2.webp b/docs/img/konami/iidx/11_red/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/11_red/setup/2.webp
rename to docs/img/konami/iidx/11_red/setup/2.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/1.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/1.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/10.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/10.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/11.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/11.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/12.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/12.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/12.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/2.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/2.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/3.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/3.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/4.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/4.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/5.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/5.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/6.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/6.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/7.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/7.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/8.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/8.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/12_happysky/firstlaunch/9.webp b/docs/img/konami/iidx/12_happysky/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/firstlaunch/9.webp
rename to docs/img/konami/iidx/12_happysky/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/12_happysky/iidx12_linear.webp b/docs/img/konami/iidx/12_happysky/iidx12_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/iidx12_linear.webp
rename to docs/img/konami/iidx/12_happysky/iidx12_linear.webp
diff --git a/docs/img/bemani/iidx/12_happysky/iidx12_point.webp b/docs/img/konami/iidx/12_happysky/iidx12_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/iidx12_point.webp
rename to docs/img/konami/iidx/12_happysky/iidx12_point.webp
diff --git a/docs/img/bemani/iidx/12_happysky/logo.webp b/docs/img/konami/iidx/12_happysky/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/logo.webp
rename to docs/img/konami/iidx/12_happysky/logo.webp
diff --git a/docs/img/bemani/iidx/12_happysky/setup/1.webp b/docs/img/konami/iidx/12_happysky/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/setup/1.webp
rename to docs/img/konami/iidx/12_happysky/setup/1.webp
diff --git a/docs/img/bemani/iidx/12_happysky/setup/2.webp b/docs/img/konami/iidx/12_happysky/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/12_happysky/setup/2.webp
rename to docs/img/konami/iidx/12_happysky/setup/2.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/1.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/1.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/10.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/10.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/11.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/11.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/12.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/12.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/12.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/2.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/2.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/3.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/3.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/4.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/4.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/5.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/5.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/6.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/6.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/7.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/7.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/8.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/8.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/13_distorted/firstlaunch/9.webp b/docs/img/konami/iidx/13_distorted/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/firstlaunch/9.webp
rename to docs/img/konami/iidx/13_distorted/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/13_distorted/iidx13_linear.webp b/docs/img/konami/iidx/13_distorted/iidx13_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/iidx13_linear.webp
rename to docs/img/konami/iidx/13_distorted/iidx13_linear.webp
diff --git a/docs/img/bemani/iidx/13_distorted/iidx13_point.webp b/docs/img/konami/iidx/13_distorted/iidx13_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/iidx13_point.webp
rename to docs/img/konami/iidx/13_distorted/iidx13_point.webp
diff --git a/docs/img/bemani/iidx/13_distorted/logo.webp b/docs/img/konami/iidx/13_distorted/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/logo.webp
rename to docs/img/konami/iidx/13_distorted/logo.webp
diff --git a/docs/img/bemani/iidx/13_distorted/setup/1.webp b/docs/img/konami/iidx/13_distorted/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/setup/1.webp
rename to docs/img/konami/iidx/13_distorted/setup/1.webp
diff --git a/docs/img/bemani/iidx/13_distorted/setup/2.webp b/docs/img/konami/iidx/13_distorted/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/13_distorted/setup/2.webp
rename to docs/img/konami/iidx/13_distorted/setup/2.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/1.webp b/docs/img/konami/iidx/14_gold/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/1.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/10.webp b/docs/img/konami/iidx/14_gold/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/10.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/11.webp b/docs/img/konami/iidx/14_gold/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/11.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/12.webp b/docs/img/konami/iidx/14_gold/firstlaunch/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/12.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/12.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/13.webp b/docs/img/konami/iidx/14_gold/firstlaunch/13.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/13.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/13.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/2.webp b/docs/img/konami/iidx/14_gold/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/2.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/3.webp b/docs/img/konami/iidx/14_gold/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/3.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/4.webp b/docs/img/konami/iidx/14_gold/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/4.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/5.webp b/docs/img/konami/iidx/14_gold/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/5.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/6.webp b/docs/img/konami/iidx/14_gold/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/6.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/7.webp b/docs/img/konami/iidx/14_gold/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/7.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/8.webp b/docs/img/konami/iidx/14_gold/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/8.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/14_gold/firstlaunch/9.webp b/docs/img/konami/iidx/14_gold/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/firstlaunch/9.webp
rename to docs/img/konami/iidx/14_gold/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/14_gold/iidx14_linear.webp b/docs/img/konami/iidx/14_gold/iidx14_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/iidx14_linear.webp
rename to docs/img/konami/iidx/14_gold/iidx14_linear.webp
diff --git a/docs/img/bemani/iidx/14_gold/iidx14_point.webp b/docs/img/konami/iidx/14_gold/iidx14_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/iidx14_point.webp
rename to docs/img/konami/iidx/14_gold/iidx14_point.webp
diff --git a/docs/img/bemani/iidx/14_gold/logo.webp b/docs/img/konami/iidx/14_gold/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/logo.webp
rename to docs/img/konami/iidx/14_gold/logo.webp
diff --git a/docs/img/bemani/iidx/14_gold/setup/1.webp b/docs/img/konami/iidx/14_gold/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/setup/1.webp
rename to docs/img/konami/iidx/14_gold/setup/1.webp
diff --git a/docs/img/bemani/iidx/14_gold/setup/2.webp b/docs/img/konami/iidx/14_gold/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/14_gold/setup/2.webp
rename to docs/img/konami/iidx/14_gold/setup/2.webp
diff --git a/docs/img/konami/iidx/16_empress/11.webp b/docs/img/konami/iidx/16_empress/11.webp
new file mode 100644
index 00000000..f6bcf407
Binary files /dev/null and b/docs/img/konami/iidx/16_empress/11.webp differ
diff --git a/docs/img/konami/iidx/16_empress/logo.webp b/docs/img/konami/iidx/16_empress/logo.webp
new file mode 100644
index 00000000..003bd599
Binary files /dev/null and b/docs/img/konami/iidx/16_empress/logo.webp differ
diff --git a/docs/img/bemani/iidx/24_sinobuz/data.webp b/docs/img/konami/iidx/24_sinobuz/data.webp
similarity index 100%
rename from docs/img/bemani/iidx/24_sinobuz/data.webp
rename to docs/img/konami/iidx/24_sinobuz/data.webp
diff --git a/docs/img/bemani/iidx/24_sinobuz/logo.webp b/docs/img/konami/iidx/24_sinobuz/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/24_sinobuz/logo.webp
rename to docs/img/konami/iidx/24_sinobuz/logo.webp
diff --git a/docs/img/bemani/iidx/24_sinobuz/spice2xdata.webp b/docs/img/konami/iidx/24_sinobuz/spice2xdata.webp
similarity index 100%
rename from docs/img/bemani/iidx/24_sinobuz/spice2xdata.webp
rename to docs/img/konami/iidx/24_sinobuz/spice2xdata.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/1.webp b/docs/img/konami/iidx/25_cannonballers/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/1.webp
rename to docs/img/konami/iidx/25_cannonballers/1.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/10.webp b/docs/img/konami/iidx/25_cannonballers/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/10.webp
rename to docs/img/konami/iidx/25_cannonballers/10.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/11.webp b/docs/img/konami/iidx/25_cannonballers/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/11.webp
rename to docs/img/konami/iidx/25_cannonballers/11.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/12.webp b/docs/img/konami/iidx/25_cannonballers/12.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/12.webp
rename to docs/img/konami/iidx/25_cannonballers/12.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/13.webp b/docs/img/konami/iidx/25_cannonballers/13.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/13.webp
rename to docs/img/konami/iidx/25_cannonballers/13.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/1a.webp b/docs/img/konami/iidx/25_cannonballers/1a.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/1a.webp
rename to docs/img/konami/iidx/25_cannonballers/1a.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/2.webp b/docs/img/konami/iidx/25_cannonballers/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/2.webp
rename to docs/img/konami/iidx/25_cannonballers/2.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/3.webp b/docs/img/konami/iidx/25_cannonballers/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/3.webp
rename to docs/img/konami/iidx/25_cannonballers/3.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/4.webp b/docs/img/konami/iidx/25_cannonballers/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/4.webp
rename to docs/img/konami/iidx/25_cannonballers/4.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/5.webp b/docs/img/konami/iidx/25_cannonballers/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/5.webp
rename to docs/img/konami/iidx/25_cannonballers/5.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/6.webp b/docs/img/konami/iidx/25_cannonballers/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/6.webp
rename to docs/img/konami/iidx/25_cannonballers/6.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/7.webp b/docs/img/konami/iidx/25_cannonballers/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/7.webp
rename to docs/img/konami/iidx/25_cannonballers/7.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/8.webp b/docs/img/konami/iidx/25_cannonballers/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/8.webp
rename to docs/img/konami/iidx/25_cannonballers/8.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/9.webp b/docs/img/konami/iidx/25_cannonballers/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/9.webp
rename to docs/img/konami/iidx/25_cannonballers/9.webp
diff --git a/docs/img/bemani/iidx/25_cannonballers/logo.webp b/docs/img/konami/iidx/25_cannonballers/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/25_cannonballers/logo.webp
rename to docs/img/konami/iidx/25_cannonballers/logo.webp
diff --git a/docs/img/bemani/iidx/26_rootage/1.webp b/docs/img/konami/iidx/26_rootage/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/26_rootage/1.webp
rename to docs/img/konami/iidx/26_rootage/1.webp
diff --git a/docs/img/bemani/iidx/26_rootage/logo.webp b/docs/img/konami/iidx/26_rootage/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/26_rootage/logo.webp
rename to docs/img/konami/iidx/26_rootage/logo.webp
diff --git a/docs/img/bemani/iidx/27_heroicverse/1.webp b/docs/img/konami/iidx/27_heroicverse/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/27_heroicverse/1.webp
rename to docs/img/konami/iidx/27_heroicverse/1.webp
diff --git a/docs/img/bemani/iidx/27_heroicverse/cfg_ea.webp b/docs/img/konami/iidx/27_heroicverse/cfg_ea.webp
similarity index 100%
rename from docs/img/bemani/iidx/27_heroicverse/cfg_ea.webp
rename to docs/img/konami/iidx/27_heroicverse/cfg_ea.webp
diff --git a/docs/img/bemani/iidx/27_heroicverse/cfg_on.webp b/docs/img/konami/iidx/27_heroicverse/cfg_on.webp
similarity index 100%
rename from docs/img/bemani/iidx/27_heroicverse/cfg_on.webp
rename to docs/img/konami/iidx/27_heroicverse/cfg_on.webp
diff --git a/docs/img/bemani/iidx/27_heroicverse/logo.webp b/docs/img/konami/iidx/27_heroicverse/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/27_heroicverse/logo.webp
rename to docs/img/konami/iidx/27_heroicverse/logo.webp
diff --git a/docs/img/bemani/iidx/30_resident/logo.webp b/docs/img/konami/iidx/30_resident/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/30_resident/logo.webp
rename to docs/img/konami/iidx/30_resident/logo.webp
diff --git a/docs/img/bemani/iidx/31_epolis/logo.webp b/docs/img/konami/iidx/31_epolis/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/31_epolis/logo.webp
rename to docs/img/konami/iidx/31_epolis/logo.webp
diff --git a/docs/img/bemani/iidx/32_pinkycrush/logo.webp b/docs/img/konami/iidx/32_pinkycrush/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/32_pinkycrush/logo.webp
rename to docs/img/konami/iidx/32_pinkycrush/logo.webp
diff --git a/docs/img/konami/iidx/33_sparkleshower/logo.webp b/docs/img/konami/iidx/33_sparkleshower/logo.webp
new file mode 100644
index 00000000..79277505
Binary files /dev/null and b/docs/img/konami/iidx/33_sparkleshower/logo.webp differ
diff --git a/docs/img/bemani/iidx/9thstyle/9th_linear.webp b/docs/img/konami/iidx/9thstyle/9th_linear.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/9th_linear.webp
rename to docs/img/konami/iidx/9thstyle/9th_linear.webp
diff --git a/docs/img/bemani/iidx/9thstyle/9th_point.webp b/docs/img/konami/iidx/9thstyle/9th_point.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/9th_point.webp
rename to docs/img/konami/iidx/9thstyle/9th_point.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/1.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/1.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/10.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/10.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/11.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/11.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/11.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/11.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/2.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/2.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/3.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/3.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/4.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/4.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/5.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/5.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/6.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/6.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/7.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/7.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/8.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/8.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/9thstyle/firstlaunch/9.webp b/docs/img/konami/iidx/9thstyle/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/firstlaunch/9.webp
rename to docs/img/konami/iidx/9thstyle/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/9thstyle/logo.webp b/docs/img/konami/iidx/9thstyle/logo.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/logo.webp
rename to docs/img/konami/iidx/9thstyle/logo.webp
diff --git a/docs/img/bemani/iidx/9thstyle/setup/1.webp b/docs/img/konami/iidx/9thstyle/setup/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/setup/1.webp
rename to docs/img/konami/iidx/9thstyle/setup/1.webp
diff --git a/docs/img/bemani/iidx/9thstyle/setup/2.webp b/docs/img/konami/iidx/9thstyle/setup/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/9thstyle/setup/2.webp
rename to docs/img/konami/iidx/9thstyle/setup/2.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/1.webp b/docs/img/konami/iidx/common/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/1.webp
rename to docs/img/konami/iidx/common/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/2.webp b/docs/img/konami/iidx/common/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/2.webp
rename to docs/img/konami/iidx/common/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/3.webp b/docs/img/konami/iidx/common/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/3.webp
rename to docs/img/konami/iidx/common/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/4.webp b/docs/img/konami/iidx/common/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/4.webp
rename to docs/img/konami/iidx/common/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/5.webp b/docs/img/konami/iidx/common/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/5.webp
rename to docs/img/konami/iidx/common/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/6.webp b/docs/img/konami/iidx/common/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/6.webp
rename to docs/img/konami/iidx/common/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/7.webp b/docs/img/konami/iidx/common/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/7.webp
rename to docs/img/konami/iidx/common/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/common/firstlaunch/gameoptions/1.webp b/docs/img/konami/iidx/common/firstlaunch/gameoptions/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/firstlaunch/gameoptions/1.webp
rename to docs/img/konami/iidx/common/firstlaunch/gameoptions/1.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/1.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/1.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/1.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/1.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/10.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/10.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/10.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/10.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/2.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/2.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/2.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/2.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/3.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/3.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/3.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/3.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/4.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/4.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/4.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/4.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/5.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/5.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/5.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/5.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/6.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/6.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/6.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/6.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/7.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/7.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/7.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/7.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/8.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/8.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/8.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/8.webp
diff --git a/docs/img/bemani/iidx/common/oldhd/firstlaunch/9.webp b/docs/img/konami/iidx/common/oldhd/firstlaunch/9.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/oldhd/firstlaunch/9.webp
rename to docs/img/konami/iidx/common/oldhd/firstlaunch/9.webp
diff --git a/docs/img/bemani/iidx/common/setup/data.webp b/docs/img/konami/iidx/common/setup/data.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/setup/data.webp
rename to docs/img/konami/iidx/common/setup/data.webp
diff --git a/docs/img/bemani/iidx/common/setup/spice2x64data.webp b/docs/img/konami/iidx/common/setup/spice2x64data.webp
similarity index 100%
rename from docs/img/bemani/iidx/common/setup/spice2x64data.webp
rename to docs/img/konami/iidx/common/setup/spice2x64data.webp
diff --git a/docs/img/bemani/jubeat/avenue/logo.webp b/docs/img/konami/jubeat/avenue/logo.webp
similarity index 100%
rename from docs/img/bemani/jubeat/avenue/logo.webp
rename to docs/img/konami/jubeat/avenue/logo.webp
diff --git a/docs/img/bemani/jubeat/beyondtheavenue/logo.webp b/docs/img/konami/jubeat/beyondtheavenue/logo.webp
similarity index 100%
rename from docs/img/bemani/jubeat/beyondtheavenue/logo.webp
rename to docs/img/konami/jubeat/beyondtheavenue/logo.webp
diff --git a/docs/img/bemani/jubeat/common/firstlaunch/backup_data_error.webp b/docs/img/konami/jubeat/common/firstlaunch/backup_data_error.webp
similarity index 100%
rename from docs/img/bemani/jubeat/common/firstlaunch/backup_data_error.webp
rename to docs/img/konami/jubeat/common/firstlaunch/backup_data_error.webp
diff --git a/docs/img/bemani/jubeat/common/firstlaunch/shop_settings.webp b/docs/img/konami/jubeat/common/firstlaunch/shop_settings.webp
similarity index 100%
rename from docs/img/bemani/jubeat/common/firstlaunch/shop_settings.webp
rename to docs/img/konami/jubeat/common/firstlaunch/shop_settings.webp
diff --git a/docs/img/bemani/jubeat/festo/logo.webp b/docs/img/konami/jubeat/festo/logo.webp
similarity index 100%
rename from docs/img/bemani/jubeat/festo/logo.webp
rename to docs/img/konami/jubeat/festo/logo.webp
diff --git a/docs/img/konami/mfg/logo.webp b/docs/img/konami/mfg/logo.webp
new file mode 100644
index 00000000..ccc9c061
Binary files /dev/null and b/docs/img/konami/mfg/logo.webp differ
diff --git a/docs/img/bemani/museca/backupdata.webp b/docs/img/konami/museca/backupdata.webp
similarity index 100%
rename from docs/img/bemani/museca/backupdata.webp
rename to docs/img/konami/museca/backupdata.webp
diff --git a/docs/img/bemani/museca/logo.webp b/docs/img/konami/museca/logo.webp
similarity index 100%
rename from docs/img/bemani/museca/logo.webp
rename to docs/img/konami/museca/logo.webp
diff --git a/docs/img/bemani/nostalgia/common/1.webp b/docs/img/konami/nostalgia/common/1.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/1.webp
rename to docs/img/konami/nostalgia/common/1.webp
diff --git a/docs/img/bemani/nostalgia/common/2.webp b/docs/img/konami/nostalgia/common/2.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/2.webp
rename to docs/img/konami/nostalgia/common/2.webp
diff --git a/docs/img/bemani/nostalgia/common/3.webp b/docs/img/konami/nostalgia/common/3.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/3.webp
rename to docs/img/konami/nostalgia/common/3.webp
diff --git a/docs/img/bemani/nostalgia/common/4.webp b/docs/img/konami/nostalgia/common/4.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/4.webp
rename to docs/img/konami/nostalgia/common/4.webp
diff --git a/docs/img/bemani/nostalgia/common/5.webp b/docs/img/konami/nostalgia/common/5.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/5.webp
rename to docs/img/konami/nostalgia/common/5.webp
diff --git a/docs/img/bemani/nostalgia/common/6.webp b/docs/img/konami/nostalgia/common/6.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/6.webp
rename to docs/img/konami/nostalgia/common/6.webp
diff --git a/docs/img/bemani/nostalgia/common/7.webp b/docs/img/konami/nostalgia/common/7.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/7.webp
rename to docs/img/konami/nostalgia/common/7.webp
diff --git a/docs/img/bemani/nostalgia/common/8.webp b/docs/img/konami/nostalgia/common/8.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/common/8.webp
rename to docs/img/konami/nostalgia/common/8.webp
diff --git a/docs/img/bemani/nostalgia/forte/logo.webp b/docs/img/konami/nostalgia/forte/logo.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/forte/logo.webp
rename to docs/img/konami/nostalgia/forte/logo.webp
diff --git a/docs/img/bemani/nostalgia/op2/logo.webp b/docs/img/konami/nostalgia/op2/logo.webp
similarity index 100%
rename from docs/img/bemani/nostalgia/op2/logo.webp
rename to docs/img/konami/nostalgia/op2/logo.webp
diff --git a/docs/img/bemani/popn/kaimei_riddles/logo.webp b/docs/img/konami/popn/kaimei_riddles/logo.webp
similarity index 100%
rename from docs/img/bemani/popn/kaimei_riddles/logo.webp
rename to docs/img/konami/popn/kaimei_riddles/logo.webp
diff --git a/docs/img/bemani/popn/peace/logo.webp b/docs/img/konami/popn/peace/logo.webp
similarity index 100%
rename from docs/img/bemani/popn/peace/logo.webp
rename to docs/img/konami/popn/peace/logo.webp
diff --git a/docs/img/bemani/popn/unilab/logo.webp b/docs/img/konami/popn/unilab/logo.webp
similarity index 100%
rename from docs/img/bemani/popn/unilab/logo.webp
rename to docs/img/konami/popn/unilab/logo.webp
diff --git a/docs/img/bemani/popn/usaneko/logo.webp b/docs/img/konami/popn/usaneko/logo.webp
similarity index 100%
rename from docs/img/bemani/popn/usaneko/logo.webp
rename to docs/img/konami/popn/usaneko/logo.webp
diff --git a/docs/img/bemani/reflecbeat/reflesia/data.webp b/docs/img/konami/reflecbeat/reflesia/data.webp
similarity index 100%
rename from docs/img/bemani/reflecbeat/reflesia/data.webp
rename to docs/img/konami/reflecbeat/reflesia/data.webp
diff --git a/docs/img/bemani/reflecbeat/reflesia/logo.webp b/docs/img/konami/reflecbeat/reflesia/logo.webp
similarity index 100%
rename from docs/img/bemani/reflecbeat/reflesia/logo.webp
rename to docs/img/konami/reflecbeat/reflesia/logo.webp
diff --git a/docs/img/bemani/sdvx/4_heavenlyhaven/logo.webp b/docs/img/konami/sdvx/4_heavenlyhaven/logo.webp
similarity index 100%
rename from docs/img/bemani/sdvx/4_heavenlyhaven/logo.webp
rename to docs/img/konami/sdvx/4_heavenlyhaven/logo.webp
diff --git a/docs/img/bemani/sdvx/4_heavenlyhaven/setup/1.webp b/docs/img/konami/sdvx/4_heavenlyhaven/setup/1.webp
similarity index 100%
rename from docs/img/bemani/sdvx/4_heavenlyhaven/setup/1.webp
rename to docs/img/konami/sdvx/4_heavenlyhaven/setup/1.webp
diff --git a/docs/img/bemani/sdvx/4_heavenlyhaven/setup/2.webp b/docs/img/konami/sdvx/4_heavenlyhaven/setup/2.webp
similarity index 100%
rename from docs/img/bemani/sdvx/4_heavenlyhaven/setup/2.webp
rename to docs/img/konami/sdvx/4_heavenlyhaven/setup/2.webp
diff --git a/docs/img/bemani/sdvx/4_heavenlyhaven/setup/3.webp b/docs/img/konami/sdvx/4_heavenlyhaven/setup/3.webp
similarity index 100%
rename from docs/img/bemani/sdvx/4_heavenlyhaven/setup/3.webp
rename to docs/img/konami/sdvx/4_heavenlyhaven/setup/3.webp
diff --git a/docs/img/bemani/sdvx/5_vividwave/1.webp b/docs/img/konami/sdvx/5_vividwave/1.webp
similarity index 100%
rename from docs/img/bemani/sdvx/5_vividwave/1.webp
rename to docs/img/konami/sdvx/5_vividwave/1.webp
diff --git a/docs/img/bemani/sdvx/5_vividwave/logo.webp b/docs/img/konami/sdvx/5_vividwave/logo.webp
similarity index 100%
rename from docs/img/bemani/sdvx/5_vividwave/logo.webp
rename to docs/img/konami/sdvx/5_vividwave/logo.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/1.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/1.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/1.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/1.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/2.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/2.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/2.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/2.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/3.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/3.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/3.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/3.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/4.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/4.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/4.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/4.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/5.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/5.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/5.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/5.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/calibration/6.webp b/docs/img/konami/sdvx/6_exceedgear/calibration/6.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/calibration/6.webp
rename to docs/img/konami/sdvx/6_exceedgear/calibration/6.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/logo.webp b/docs/img/konami/sdvx/6_exceedgear/logo.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/logo.webp
rename to docs/img/konami/sdvx/6_exceedgear/logo.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/setup/data.webp b/docs/img/konami/sdvx/6_exceedgear/setup/data.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/setup/data.webp
rename to docs/img/konami/sdvx/6_exceedgear/setup/data.webp
diff --git a/docs/img/bemani/sdvx/6_exceedgear/setup/dllamd.webp b/docs/img/konami/sdvx/6_exceedgear/setup/dllamd.webp
similarity index 100%
rename from docs/img/bemani/sdvx/6_exceedgear/setup/dllamd.webp
rename to docs/img/konami/sdvx/6_exceedgear/setup/dllamd.webp
diff --git a/docs/img/sega/chunithm/x-verse/logo.webp b/docs/img/sega/chunithm/x-verse/logo.webp
new file mode 100644
index 00000000..0743eb21
Binary files /dev/null and b/docs/img/sega/chunithm/x-verse/logo.webp differ
diff --git a/docs/resources.md b/docs/resources.md
index bc9ae7c1..491e2b6c 100644
--- a/docs/resources.md
+++ b/docs/resources.md
@@ -1,6 +1,7 @@
# Resources
## spice2x Patchers
+
!!! tip "See [spice2x Patching](./extras/patchsp2x.md)"
- **TWO-TORIAL** - `https://sp2x.two-torial.xyz/` - **Our [open-source](https://github.com/two-torial/sp2xpatcher) patcher for spice2x compatible games**
@@ -42,6 +43,7 @@
- [beatmania.app](https://beatmania.app/!/) - IIDX INFINITAS difficulty tier list
- [atwiki](https://w.atwiki.jp/bemani2sp/sp/) - IIDX wiki in JP (includes tier lists)
- [textage.cc](https://textage.cc/score/) - Chart viewing resource
+ - [QPro Viewer by DJ HITOMI](https://qpro.inf.li/) - QPRO customization viewer
- [DJ DAO IIDX troubleshooting guide](https://github.com/minsang-github/rhythmgame-docs/wiki/DJ-DAO-IIDX-controller-troubleshooting) - Step-by-step guide for FPS, FP7, PEE, RES, RED controllers
## SDVX
@@ -53,6 +55,7 @@
- [SDVX Tier Lists](https://sdvx.maya2silence.com/) - SDVX difficulty tier lists
- [sdvx.in](https://sdvx.in/) - Worse looking alternative to SDVX Index (but also has other games available at the top)
- [SDVX Unlock Guide](https://docs.google.com/spreadsheets/d/1VBYWSUaKqHUOyfCtvkHFYBSnEPwxhTh8-m4UlU8zUL0/) - Translated guide for unlocks
+ - [SDVX Konasute on Steam Deck](https://sdvx.burrito.software/) - Guide to getting Konasute working on a Steam Deck
## GITADORA
@@ -64,15 +67,22 @@
## CHUNITHM
!!! tip ""
+
- [sdvx.in](https://sdvx.in/chunithm.html) - Chart viewer for CHUNITHM
- [CHUNITHM Humen](https://www.youtube.com/@chunithm_humen) - Screen captures of all CHUNITHM charts
- Codex's [English Chunithm Guide](https://chunithm.org) -
Handy CHUNITHM resource for players of all skill levels
-## O.N.G.E.K.I.
+## O.N.G.E.K.I
!!! tip ""
- - [sdvx.in](https://sdvx.in/ongeki.html) – Chart viewer for O.N.G.E.K.I
- - [O.N.G.E.K.I. Humen](https://www.youtube.com/@ongeki_humen) and [MLN Rev](https://www.youtube.com/@MLN_Rev) – Screen captures of all O.N.G.E.K.I. charts
- - Lilyshy's [English O.N.G.E.K.I. Guide](https://docs.google.com/document/d/1HKCW7DWjYRnVjCmPzrQwDKC0wKTi41X-Y-dP1-ygliU/view) –
- Handy O.N.G.E.K.I. resource for players of all skill levels
+
+ - [sdvx.in](https://sdvx.in/ongeki.html) - Chart viewer for O.N.G.E.K.I
+ - [O.N.G.E.K.I. Humen](https://www.youtube.com/@ongeki_humen) and [MLN Rev](https://www.youtube.com/@MLN_Rev) - Screen captures of all O.N.G.E.K.I. charts
+ - Lilyshy's [English O.N.G.E.K.I. Guide](https://docs.google.com/document/d/1HKCW7DWjYRnVjCmPzrQwDKC0wKTi41X-Y-dP1-ygliU/view) - Handy O.N.G.E.K.I. resource for players of all skill levels
+
+## Polaris Chord
+
+!!! tip ""
+ - [Polaris Touch](http://girlsband.party/polaris-touch.html) - Much like Brokenithm, but adapted for Polaris Chord
+ - [Polaris Touch Godot](https://github.com/GEEKiDoS/polaris-touch-godot) - Like Polaris Touch, but as a native Android app
\ No newline at end of file
diff --git a/docs/snippets/bemani/common/spice2x32_stubs.md b/docs/snippets/bemani/common/spice2x32_stubs.md
deleted file mode 100644
index a23c9afa..00000000
--- a/docs/snippets/bemani/common/spice2x32_stubs.md
+++ /dev/null
@@ -1,6 +0,0 @@
-??? warning "Additional steps for AMD graphics cards"
-
- Since the BEMANI games are designed for NVIDIA GPU's, AMD users need additional files:
-
- - Locate the `spice2x\stubs\32\` folder in the spice2x archive
- - Extract all `.dll` files from there into your game's `modules` folder
\ No newline at end of file
diff --git a/docs/snippets/bemani/common/spice2x64_stubs.md b/docs/snippets/bemani/common/spice2x64_stubs.md
deleted file mode 100644
index 74a9dd46..00000000
--- a/docs/snippets/bemani/common/spice2x64_stubs.md
+++ /dev/null
@@ -1,6 +0,0 @@
-??? warning "Additional steps for AMD graphics cards"
-
- Since BEMANI games are designed for NVIDIA GPU's, AMD users need additional files:
-
- - Locate the `spice2x\stubs\64\` folder in the spice2x archive
- - Extract all `.dll` files from there into your game's `modules` folder
\ No newline at end of file
diff --git a/docs/snippets/bemani/ddr/spicecfg_buttons.md b/docs/snippets/bemani/ddr/spicecfg_buttons.md
deleted file mode 100644
index 44b240b7..00000000
--- a/docs/snippets/bemani/ddr/spicecfg_buttons.md
+++ /dev/null
@@ -1,10 +0,0 @@
- !!! tip "Binding your buttons"
-
- Click on `Bind` or `Naive` then press the key you want associated with the action.
-
- With your controller and/or keyboard plugged in, configure your keys for P1 and/or P2:
-
- - **Maintenance**: `Service, Test`
- - **Game buttons**: `Up, Down, Left, Right`
- - **Menu buttons**: ` Start, Up, Down, Left, Right`
- - **Keypad**: `Keypad Insert Card`, `1 to 9`
\ No newline at end of file
diff --git a/docs/snippets/konami/common/btools_cards.md b/docs/snippets/konami/common/btools_cards.md
new file mode 100644
index 00000000..c2f1a6f0
--- /dev/null
+++ b/docs/snippets/konami/common/btools_cards.md
@@ -0,0 +1,17 @@
+ !!! info "This tab lets you configure which cards are used to save your game profile to"
+
+ !!! warning "If you haven't generated a card number before, you can grab one from [here](https://kawashi.ro/card)"
+
+ !!! tip ""
+
+ Now we will set up our PIN pad and card.
+
+ - Click on `Keyboard device` for whichever player's card reader you want to use
+ - You may or may not have more than one option. To figure out which one is your actual keyboard, select a device inside that list and press a button on the numpad
+ - Once you have found your correct device, the `Keypad status` will change **(the number and location of the number does not matter, it only matters that it changed)**
+ - Create a `.txt` file in a location that is easily accessible, and name it however you like
+ - Inside the file, paste in your card number. Example: `E0045812F8AFB2DE`
+ - Point to the file you created by clicking `Browse...` and selecting it
+
+ !!! info "If you don't have a numpad, tick `Use top keyboard row for PIN pad input`. This will also change the `Card In` button to `Backspace`"
+
diff --git a/docs/snippets/konami/common/btools_lights.md b/docs/snippets/konami/common/btools_lights.md
new file mode 100644
index 00000000..4777c20d
--- /dev/null
+++ b/docs/snippets/konami/common/btools_lights.md
@@ -0,0 +1,8 @@
+ !!! info "This tab allows you to configure controller lights to sync with the game"
+ Not all controllers support this, but it does not affect gameplay and is completely optional.
+
+ !!! tip ""
+
+ - In `Device`, pick your controller
+ - In `Game Light`, select the corresponding button that will be used for that light
+ - Repeat for your other lights
\ No newline at end of file
diff --git a/docs/snippets/bemani/common/cpu_avx2.md b/docs/snippets/konami/common/cpu_avx2.md
similarity index 100%
rename from docs/snippets/bemani/common/cpu_avx2.md
rename to docs/snippets/konami/common/cpu_avx2.md
diff --git a/docs/snippets/bemani/common/data_bad.md b/docs/snippets/konami/common/data_bad.md
similarity index 100%
rename from docs/snippets/bemani/common/data_bad.md
rename to docs/snippets/konami/common/data_bad.md
diff --git a/docs/snippets/bemani/common/data_update.md b/docs/snippets/konami/common/data_update.md
similarity index 100%
rename from docs/snippets/bemani/common/data_update.md
rename to docs/snippets/konami/common/data_update.md
diff --git a/docs/snippets/bemani/common/display_portraitfirst.md b/docs/snippets/konami/common/display_portraitfirst.md
similarity index 100%
rename from docs/snippets/bemani/common/display_portraitfirst.md
rename to docs/snippets/konami/common/display_portraitfirst.md
diff --git a/docs/snippets/bemani/common/setup_audio.md b/docs/snippets/konami/common/setup_audio.md
similarity index 100%
rename from docs/snippets/bemani/common/setup_audio.md
rename to docs/snippets/konami/common/setup_audio.md
diff --git a/docs/snippets/bemani/common/setup_audio_wasapiexcl_only.md b/docs/snippets/konami/common/setup_audio_wasapiexcl_only.md
similarity index 100%
rename from docs/snippets/bemani/common/setup_audio_wasapiexcl_only.md
rename to docs/snippets/konami/common/setup_audio_wasapiexcl_only.md
diff --git a/docs/snippets/bemani/common/setup_network.md b/docs/snippets/konami/common/setup_network.md
similarity index 100%
rename from docs/snippets/bemani/common/setup_network.md
rename to docs/snippets/konami/common/setup_network.md
diff --git a/docs/snippets/bemani/common/spice2x32_install.md b/docs/snippets/konami/common/spice2x32_install.md
similarity index 100%
rename from docs/snippets/bemani/common/spice2x32_install.md
rename to docs/snippets/konami/common/spice2x32_install.md
diff --git a/docs/snippets/konami/common/spice2x32_stubs.md b/docs/snippets/konami/common/spice2x32_stubs.md
new file mode 100644
index 00000000..02e0d439
--- /dev/null
+++ b/docs/snippets/konami/common/spice2x32_stubs.md
@@ -0,0 +1,6 @@
+??? warning "Additional steps for AMD and Intel graphics cards"
+
+ Since KONAMI games are designed for NVIDIA GPU's, AMD and Intel users need additional files:
+
+ - Locate the `spice2x\stubs\32\` folder in the spice2x archive
+ - Extract all `.dll` files from there into your game's `modules` folder
\ No newline at end of file
diff --git a/docs/snippets/bemani/common/spice2x64_install.md b/docs/snippets/konami/common/spice2x64_install.md
similarity index 100%
rename from docs/snippets/bemani/common/spice2x64_install.md
rename to docs/snippets/konami/common/spice2x64_install.md
diff --git a/docs/snippets/konami/common/spice2x64_stubs.md b/docs/snippets/konami/common/spice2x64_stubs.md
new file mode 100644
index 00000000..84a6eb48
--- /dev/null
+++ b/docs/snippets/konami/common/spice2x64_stubs.md
@@ -0,0 +1,6 @@
+??? warning "Additional steps for AMD and Intel graphics cards"
+
+ Since KONAMI games are designed for NVIDIA GPU's, AMD and Intel users need additional files:
+
+ - Locate the `spice2x\stubs\64\` folder in the spice2x archive
+ - Extract all `.dll` files from there into your game's `modules` folder
\ No newline at end of file
diff --git a/docs/snippets/bemani/common/spicecfg_buttons.md b/docs/snippets/konami/common/spicecfg_buttons.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_buttons.md
rename to docs/snippets/konami/common/spicecfg_buttons.md
diff --git a/docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md b/docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_buttons_additionalinfo.md
rename to docs/snippets/konami/common/spicecfg_buttons_additionalinfo.md
diff --git a/docs/snippets/bemani/common/spicecfg_cards.md b/docs/snippets/konami/common/spicecfg_cards.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_cards.md
rename to docs/snippets/konami/common/spicecfg_cards.md
diff --git a/docs/snippets/bemani/common/spicecfg_lights.md b/docs/snippets/konami/common/spicecfg_lights.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_lights.md
rename to docs/snippets/konami/common/spicecfg_lights.md
diff --git a/docs/snippets/bemani/common/spicecfg_nochange.md b/docs/snippets/konami/common/spicecfg_nochange.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_nochange.md
rename to docs/snippets/konami/common/spicecfg_nochange.md
diff --git a/docs/snippets/bemani/common/spicecfg_options_nvprofile.md b/docs/snippets/konami/common/spicecfg_options_nvprofile.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_options_nvprofile.md
rename to docs/snippets/konami/common/spicecfg_options_nvprofile.md
diff --git a/docs/snippets/bemani/common/spicecfg_overlay.md b/docs/snippets/konami/common/spicecfg_overlay.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_overlay.md
rename to docs/snippets/konami/common/spicecfg_overlay.md
diff --git a/docs/snippets/bemani/common/spicecfg_patches.md b/docs/snippets/konami/common/spicecfg_patches.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_patches.md
rename to docs/snippets/konami/common/spicecfg_patches.md
diff --git a/docs/snippets/bemani/common/spicecfg_preamble.md b/docs/snippets/konami/common/spicecfg_preamble.md
similarity index 100%
rename from docs/snippets/bemani/common/spicecfg_preamble.md
rename to docs/snippets/konami/common/spicecfg_preamble.md
diff --git a/docs/snippets/konami/iidx/btools_analogs.md b/docs/snippets/konami/iidx/btools_analogs.md
new file mode 100644
index 00000000..f5aae17b
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_analogs.md
@@ -0,0 +1,13 @@
+ !!! info "This tab is used to bind analog controls like the turntable"
+
+ !!! warning "Ignore this tab if you play with a keyboard"
+
+ !!! tip "Bind your controller's turntable"
+
+ With a controller rather than binding buttons to `TT+` and `TT-`, you need to:
+
+ - Head to the `Analogs` tab at the top
+ - In `Device`, pick your controller
+ - In `Control`, pick whichever one corresponds to the turntable
+ - Turn your turntable ensuring that the preview turns along with it
+ - Click `OK`, leaving the rest of the settings alone
\ No newline at end of file
diff --git a/docs/snippets/konami/iidx/btools_buttons.md b/docs/snippets/konami/iidx/btools_buttons.md
new file mode 100644
index 00000000..5337c2b3
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_buttons.md
@@ -0,0 +1,15 @@
+ !!! info "This tab is used to bind your keyboard and controller buttons"
+
+ !!! tip ""
+
+ Double click on the right on a button that you wish to bind, then press the key you want associated with the action.
+
+ With your controller and/or keyboard plugged in, configure your keys for:
+
+ - **Maintenance**: `Service, Test`
+ - **P1 Game buttons**: `1 to 7, Start, EFFECT, VEFX`
+ - **P1 Keypad**: `Keypad Insert Card`
+
+ **Only if** you're playing using a keyboard:
+
+ - **Turntable**: `TT+, TT-` **and optionally** `TT+/-` which alternates between `TT+` and `TT-` on each press.
\ No newline at end of file
diff --git a/docs/snippets/konami/iidx/btools_clvsd.md b/docs/snippets/konami/iidx/btools_clvsd.md
new file mode 100644
index 00000000..df71ddc5
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_clvsd.md
@@ -0,0 +1,18 @@
+!!! tip ""
+
+ For background movies to work, you need to install and register a codec.
+
+ This also applies for IIDX 12 to 18, if you'd done it before you shouldn't need to again and may skip this step.
+
+ - Inside `bemanitools-supplement-vx.x.zip` locate and open `iidx.zip`
+
+ - Inside `iidx\misc\`, extract `CLVSD.ax` to any directory where the file can stay long term
+ As an example we will be using your Documents folder, but it really could be anywhere you prefer.
+
+ - Open a command prompt as ***administrator***, and run `regsvr32 "CHOSEN_PATH\CLVSD.ax"`
+ For the Documents folder, the command would be `regsvr32 "C:\Users\YOUR_USERNAME\Documents\CLVSD.ax"`
+
+ You should get confirmation that the file has been registered successfully.
+
+ If an error occurs, you most likely didn't start your command prompt as administrator, or the location to CLVSD.ax was incorrect.
+
diff --git a/docs/snippets/konami/iidx/btools_connecting_network.md b/docs/snippets/konami/iidx/btools_connecting_network.md
new file mode 100644
index 00000000..ed1808e6
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_connecting_network.md
@@ -0,0 +1,42 @@
+!!! danger "Pick one or the other, not both!"
+
+??? tip "Option 1: Remote (Online Network)"
+
+ Remote networks typically require an invitation to join.
+ You'll need to connect with members of the community who can provide you with an invite.
+
+ Your network should provide you with the necessary information to proceed:
+
+ - Open `iidxhook-xx.conf` (xx being your game version) with a text editor
+
+ - In the line `eamuse.server=localhost:80`, replace `localhost:80` with your provided network url
+
+ - In the lines `eamuse.pcbid=XXXXXXXXXXXXXXXXXXXX` **and** `eamuse.eamid=XXXXXXXXXXXXXXXXXXXX`, replace the part after `=` with your provided PCBID
+
+ - Example:
+ ```
+ # URL (e.g. http://my.eamuse.server:80/whatever) or IPV4 (e.g. 127.0.0.1:80) of the target eamuse server. The port is optional but defaults to 80.
+ eamuse.server=http://be.ma.ni/
+
+ # PCBID
+ eamuse.pcbid=ABMYPRECIOUSPCBIDCDE
+
+ # EAMID
+ eamuse.eamid=ABMYPRECIOUSPCBIDCDE
+ ```
+
+??? tip "Option 2: Local e-amuse Emulator (Asphyxia)"
+
+ For instructions on setting up Asphyxia, please refer to our [Asphyxia setup guide](/extras/asphyxia.md).
+
+ After Asphyxia is setup with the proper plugin for your game:
+
+ - Open `iidxhook-xx.conf` (xx being your game version) with a text editor
+
+ - In the line `eamuse.server=localhost:80`, replace `localhost:80` to point to your asphyxia server, typically `localhost:8083`
+
+ - Example:
+ ```
+ # URL (e.g. http://my.eamuse.server:80/whatever) or IPV4 (e.g. 127.0.0.1:80) of the target eamuse server. The port is optional but defaults to 80.
+ eamuse.server=localhost:8083
+ ```
\ No newline at end of file
diff --git a/docs/snippets/konami/iidx/btools_d3d8to9.md b/docs/snippets/konami/iidx/btools_d3d8to9.md
new file mode 100644
index 00000000..ff0bdf73
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_d3d8to9.md
@@ -0,0 +1,9 @@
+!!! tip ""
+
+ - Download the latest Bemanitools supplements release [here](https://github.com/djhackersdev/bemanitools-supplement/releases/latest)
+
+ - Inside `bemanitools-supplement-vx.x.zip` locate `misc.zip`
+
+ - Inside `misc\d3d8to9\`, extract `d3d8.dll` to your revision directory
+
+ This lets you configure graphics options inside `iidxhook-xx.conf` (xx being your game version number)
diff --git a/docs/snippets/konami/iidx/btools_graphics.md b/docs/snippets/konami/iidx/btools_graphics.md
new file mode 100644
index 00000000..d2b29d6f
--- /dev/null
+++ b/docs/snippets/konami/iidx/btools_graphics.md
@@ -0,0 +1,26 @@
+!!! tip ""
+
+ - Open your `iidxhook-xx.conf` (xx being your game version)
+
+ - Locate and change the options we're interested in:
+
+ ```
+ gfx.framed=false # Only matters if windowed. False for borderless, True for decorations (title bar, etc..)
+ gfx.frame_rate_limit=0.0 # Set this to 59.95
+ gfx.windowed=false # False for fullscreen, True for windowed
+ gfx.window_width=0 # Set to your desired game width (recommended: monitor width)
+ gfx.window_height=0 # Set to your desired game height (recommended: monitor height)
+ gfx.scale_back_buffer_width=0 # Set to your desired game width (recommended: monitor width)
+ gfx.scale_back_buffer_height=0 # Set to your desired game height (recommended: monitor height)
+ gfx.scale_back_buffer_filter=none # Set to point or linear (pick one from examples below)
+ ```
+
+ Here are visual examples of the two filter options:
+
+ ??? info "point (sharp, pixel perfect)"
+
+
+
+ ??? info "linear (less sharp, not pixel perfect)"
+
+
diff --git a/docs/snippets/bemani/iidx/ldj_vs_tdj.md b/docs/snippets/konami/iidx/ldj_vs_tdj.md
similarity index 100%
rename from docs/snippets/bemani/iidx/ldj_vs_tdj.md
rename to docs/snippets/konami/iidx/ldj_vs_tdj.md
diff --git a/docs/snippets/bemani/iidx/spicecfg_advanced_camhook.md b/docs/snippets/konami/iidx/spicecfg_advanced_camhook.md
similarity index 100%
rename from docs/snippets/bemani/iidx/spicecfg_advanced_camhook.md
rename to docs/snippets/konami/iidx/spicecfg_advanced_camhook.md
diff --git a/docs/snippets/bemani/iidx/spicecfg_analogs.md b/docs/snippets/konami/iidx/spicecfg_analogs.md
similarity index 100%
rename from docs/snippets/bemani/iidx/spicecfg_analogs.md
rename to docs/snippets/konami/iidx/spicecfg_analogs.md
diff --git a/docs/snippets/bemani/iidx/spicecfg_buttons.md b/docs/snippets/konami/iidx/spicecfg_buttons.md
similarity index 100%
rename from docs/snippets/bemani/iidx/spicecfg_buttons.md
rename to docs/snippets/konami/iidx/spicecfg_buttons.md
diff --git a/docs/snippets/bemani/iidx/spicecfg_options_disablecams.md b/docs/snippets/konami/iidx/spicecfg_options_disablecams.md
similarity index 100%
rename from docs/snippets/bemani/iidx/spicecfg_options_disablecams.md
rename to docs/snippets/konami/iidx/spicecfg_options_disablecams.md
diff --git a/docs/snippets/bemani/iidx/spicecfg_options_tdj.md b/docs/snippets/konami/iidx/spicecfg_options_tdj.md
similarity index 100%
rename from docs/snippets/bemani/iidx/spicecfg_options_tdj.md
rename to docs/snippets/konami/iidx/spicecfg_options_tdj.md
diff --git a/docs/snippets/bemani/sdvx/spicecfg_analogs.md b/docs/snippets/konami/sdvx/spicecfg_analogs.md
similarity index 100%
rename from docs/snippets/bemani/sdvx/spicecfg_analogs.md
rename to docs/snippets/konami/sdvx/spicecfg_analogs.md
diff --git a/docs/snippets/bemani/sdvx/spicecfg_buttons.md b/docs/snippets/konami/sdvx/spicecfg_buttons.md
similarity index 100%
rename from docs/snippets/bemani/sdvx/spicecfg_buttons.md
rename to docs/snippets/konami/sdvx/spicecfg_buttons.md
diff --git a/mkdocs.yml b/mkdocs.yml
index fed0d526..f7adb780 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -8,288 +8,305 @@ repo_name: GitHub
nav:
- Home: index.md
- Games:
- - BEMANI:
- - "beatmania IIDX":
- - "9th style":
- - "Game Setup": "games/bemani/iidx/9thstyle/setup.md"
- - "Troubleshooting": "games/bemani/iidx/9thstyle/troubleshooting.md"
- - "10th style":
- - "Game Setup": "games/bemani/iidx/10thstyle/setup.md"
- - "Troubleshooting": "games/bemani/iidx/10thstyle/troubleshooting.md"
- - "11 RED":
- - "Game Setup": "games/bemani/iidx/11_red/setup.md"
- - "Troubleshooting": "games/bemani/iidx/11_red/troubleshooting.md"
- - "12 HAPPY SKY":
- - "Game Setup": "games/bemani/iidx/12_happysky/setup.md"
- - "Troubleshooting": "games/bemani/iidx/12_happysky/troubleshooting.md"
- - "13 DistorteD":
- - "Game Setup": "games/bemani/iidx/13_distorted/setup.md"
- - "Troubleshooting": "games/bemani/iidx/13_distorted/troubleshooting.md"
- - "14 GOLD":
- - "Game Setup": "games/bemani/iidx/14_gold/setup.md"
- - "Troubleshooting": "games/bemani/iidx/14_gold/troubleshooting.md"
- - "24 SINOBUZ":
- - "Game Setup": "games/bemani/iidx/24_sinobuz/setup.md"
- - "Extra Information": "games/bemani/iidx/24_sinobuz/extras.md"
- - "Troubleshooting": "games/bemani/iidx/24_sinobuz/troubleshooting.md"
- - "25 CANNON BALLERS":
- - "Game Setup": "games/bemani/iidx/25_cannonballers/setup.md"
- - "Troubleshooting": "games/bemani/iidx/25_cannonballers/troubleshooting.md"
- - "26 Rootage":
- - "Game Setup": "games/bemani/iidx/26_rootage/setup.md"
- - "Troubleshooting": "games/bemani/iidx/26_rootage/troubleshooting.md"
- - "27 HEROIC VERSE":
- - "Game Setup": "games/bemani/iidx/27_heroicverse/setup.md"
- - "Extra Information": "games/bemani/iidx/27_heroicverse/extras.md"
- - "Troubleshooting": "games/bemani/iidx/27_heroicverse/troubleshooting.md"
- - "30 RESIDENT":
- - "Game Setup": "games/bemani/iidx/30_resident/setup.md"
- - "Extra Information": "games/bemani/iidx/30_resident/extras.md"
- - "Troubleshooting": "games/bemani/iidx/30_resident/troubleshooting.md"
- - "31 EPOLIS":
- - "Game Setup": "games/bemani/iidx/31_epolis/setup.md"
- - "Extra Information": "games/bemani/iidx/31_epolis/extras.md"
- - "Troubleshooting": "games/bemani/iidx/31_epolis/troubleshooting.md"
- - "32 Pinky Crush":
- - "Game Setup": "games/bemani/iidx/32_pinkycrush/setup.md"
- - "Extra Information": "games/bemani/iidx/32_pinkycrush/extras.md"
- - "Troubleshooting": "games/bemani/iidx/32_pinkycrush/troubleshooting.md"
- - "Sound Voltex":
- - "IV HEAVENLY HAVEN":
- - "Game Setup": "games/bemani/sdvx/4_heavenlyhaven/setup.md"
- - "Troubleshooting": "games/bemani/sdvx/4_heavenlyhaven/troubleshooting.md"
- - "V VIVID WAVE":
- - "Game Setup": "games/bemani/sdvx/5_vividwave/setup.md"
- - "Troubleshooting": "games/bemani/sdvx/5_vividwave/troubleshooting.md"
- - "VI EXCEED GEAR":
- - "Game Setup": "games/bemani/sdvx/6_exceedgear/setup.md"
- - "Extra Information": "games/bemani/sdvx/6_exceedgear/extras.md"
- - "Troubleshooting": "games/bemani/sdvx/6_exceedgear/troubleshooting.md"
- - "pop'n music":
- - "Usaneko":
- - "Game Setup": "games/bemani/popn/usaneko/setup.md"
- - "Troubleshooting": "games/bemani/popn/usaneko/troubleshooting.md"
- - "peace":
- - "Game Setup": "games/bemani/popn/peace/setup.md"
- - "Troubleshooting": "games/bemani/popn/peace/troubleshooting.md"
- - "Kaimei Riddles":
- - "Game Setup": "games/bemani/popn/kaimei_riddles/setup.md"
- - "Troubleshooting": "games/bemani/popn/kaimei_riddles/troubleshooting.md"
- - "UniLab":
- - "Game Setup": "games/bemani/popn/unilab/setup.md"
- - "Troubleshooting": "games/bemani/popn/unilab/troubleshooting.md"
- - "Dance Dance Revolution":
- - "A20":
- - "Game Setup": "games/bemani/ddr/a20/setup.md"
- - "Troubleshooting": "games/bemani/ddr/a20/troubleshooting.md"
- - "A20 PLUS":
- - "Game Setup": "games/bemani/ddr/a20plus/setup.md"
- - "Troubleshooting": "games/bemani/ddr/a20plus/troubleshooting.md"
- - "A3":
- - "Game Setup": "games/bemani/ddr/a3/setup.md"
- - "Troubleshooting": "games/bemani/ddr/a3/troubleshooting.md"
- - "WORLD":
- - "Game Setup": "games/bemani/ddr/world/setup.md"
- - "Troubleshooting": "games/bemani/ddr/world/troubleshooting.md"
- - "jubeat":
- - "festo":
- - "Game Setup": "games/bemani/jubeat/festo/setup.md"
- - "Ave.":
- - "Game Setup": "games/bemani/jubeat/avenue/setup.md"
- - "beyond the Ave.":
- - "Game Setup": "games/bemani/jubeat/beyondtheavenue/setup.md"
- - "GITADORA":
- - "Matixx":
- - "Game Setup": "games/bemani/gitadora/matixx/setup.md"
- - "Troubleshooting": "games/bemani/gitadora/matixx/troubleshooting.md"
- - "EXCHAIN":
- - "Game Setup": "games/bemani/gitadora/exchain/setup.md"
- - "Troubleshooting": "games/bemani/gitadora/exchain/troubleshooting.md"
- - "Fuzz-Up":
- - "Game Setup": "games/bemani/gitadora/fuzzup/setup.md"
- - "Troubleshooting": "games/bemani/gitadora/fuzzup/troubleshooting.md"
- - "Reflec Beat":
- - "悠久のリフレシア (Reflesia)":
- - "Game Setup": "games/bemani/reflecbeat/reflesia/setup.md"
- - "Troubleshooting": "games/bemani/reflecbeat/reflesia/troubleshooting.md"
- - "NOSTALGIA":
- - "FORTE":
- - "Game Setup": "games/bemani/nostalgia/forte/setup.md"
- - "Troubleshooting": "games/bemani/nostalgia/forte/troubleshooting.md"
- - "Op.2":
- - "Game Setup": "games/bemani/nostalgia/op2/setup.md"
- - "Troubleshooting": "games/bemani/nostalgia/op2/troubleshooting.md"
- - "BeatStream":
- - "アニムトライヴ (Animutribe)":
- - "Game Setup": "games/bemani/beatstream/animutribe/setup.md"
- - "Troubleshooting": "games/bemani/beatstream/animutribe/troubleshooting.md"
- - "MÚSECA":
- - "MÚSECA 1+1/2":
- - "Game Setup": "games/bemani/museca/1plushalf/setup.md"
- - "Troubleshooting": "games/bemani/museca/1plushalf/troubleshooting.md"
- - SEGA:
- - "CHUNITHM":
- - "CHUNITHM":
- - "Game Setup": "games/sega/chunithm/chunithm/setup.md"
- - "Controllers": "games/sega/chunithm/chunithm/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/chunithm/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/chunithm/troubleshooting.md"
- - "PLUS":
- - "Game Setup": "games/sega/chunithm/plus/setup.md"
- - "Controllers": "games/sega/chunithm/plus/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/plus/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/plus/troubleshooting.md"
- - "AIR":
- - "Game Setup": "games/sega/chunithm/air/setup.md"
- - "Controllers": "games/sega/chunithm/air/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/air/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/air/troubleshooting.md"
- - "AIR PLUS":
- - "Game Setup": "games/sega/chunithm/airplus/setup.md"
- - "Controllers": "games/sega/chunithm/airplus/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/airplus/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/airplus/troubleshooting.md"
- - "STAR":
- - "Game Setup": "games/sega/chunithm/star/setup.md"
- - "Controllers": "games/sega/chunithm/star/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/star/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/star/troubleshooting.md"
- - "STAR PLUS":
- - "Game Setup": "games/sega/chunithm/starplus/setup.md"
- - "Controllers": "games/sega/chunithm/starplus/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/starplus/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/starplus/troubleshooting.md"
- - "AMAZON":
- - "Game Setup": "games/sega/chunithm/amazon/setup.md"
- - "Controllers": "games/sega/chunithm/amazon/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/amazon/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/amazon/troubleshooting.md"
- - "AMAZON PLUS":
- - "Game Setup": "games/sega/chunithm/amazonplus/setup.md"
- - "Controllers": "games/sega/chunithm/amazonplus/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/amazonplus/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/amazonplus/troubleshooting.md"
- - "CRYSTAL":
- - "Game Setup": "games/sega/chunithm/crystal/setup.md"
- - "Controllers": "games/sega/chunithm/crystal/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/crystal/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/crystal/troubleshooting.md"
- - "CRYSTAL PLUS":
- - "Game Setup": "games/sega/chunithm/crystalplus/setup.md"
- - "Controllers": "games/sega/chunithm/crystalplus/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/crystalplus/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/crystalplus/troubleshooting.md"
- - "PARADISE":
- - "Game Setup": "games/sega/chunithm/paradise/setup.md"
- - "Controllers": "games/sega/chunithm/paradise/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/paradise/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/paradise/troubleshooting.md"
- - "PARADISE LOST":
- - "Game Setup": "games/sega/chunithm/paradiselost/setup.md"
- - "Controllers": "games/sega/chunithm/paradiselost/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/paradiselost/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/paradiselost/troubleshooting.md"
- - "NEW":
- - "Game Setup": "games/sega/chunithm/new/setup.md"
- - "Controllers": "games/sega/chunithm/new/controllers.md"
- - "Cab-to-Cab": "games/sega/chunithm/new/c2c.md"
- - "Troubleshooting": "games/sega/chunithm/new/troubleshooting.md"
- - "NEW PLUS":
- - "Game Setup": "games/sega/chunithm/newplus/setup.md"
- - "Controllers": "games/sega/chunithm/newplus/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/newplus/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/newplus/c2c.md"
- - "SUN":
- - "Game Setup": "games/sega/chunithm/sun/setup.md"
- - "Controllers": "games/sega/chunithm/sun/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/sun/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/sun/c2c.md"
- - "SUN PLUS":
- - "Game Setup": "games/sega/chunithm/sunplus/setup.md"
- - "Controllers": "games/sega/chunithm/sunplus/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/sunplus/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/sunplus/c2c.md"
- - "LUMINOUS":
- - "Game Setup": "games/sega/chunithm/luminous/setup.md"
- - "Controllers": "games/sega/chunithm/luminous/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/luminous/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/luminous/c2c.md"
- - "LUMINOUS PLUS":
- - "Game Setup": "games/sega/chunithm/luminousplus/setup.md"
- - "Controllers": "games/sega/chunithm/luminousplus/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/luminousplus/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/luminousplus/c2c.md"
- - "VERSE":
- - "Game Setup": "games/sega/chunithm/verse/setup.md"
- - "Controllers": "games/sega/chunithm/verse/controllers.md"
- - "Troubleshooting": "games/sega/chunithm/verse/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/chunithm/verse/c2c.md"
- - "maimai DX":
- - "BUDDiES":
- - "Game Setup": "games/sega/maimaidx/buddies/setup.md"
- - "Controllers": "games/sega/maimaidx/buddies/controllers.md"
- - "Troubleshooting": "games/sega/maimaidx/buddies/troubleshooting.md"
- - "BUDDiES PLUS":
- - "Game Setup": "games/sega/maimaidx/buddiesplus/setup.md"
- - "Controllers": "games/sega/maimaidx/buddiesplus/controllers.md"
- - "Troubleshooting": "games/sega/maimaidx/buddiesplus/troubleshooting.md"
- - "PRiSM":
- - "Game Setup": "games/sega/maimaidx/prism/setup.md"
- - "Controllers": "games/sega/maimaidx/prism/controllers.md"
- - "Troubleshooting": "games/sega/maimaidx/prism/troubleshooting.md"
- - "PRiSM PLUS":
- - "Game Setup": "games/sega/maimaidx/prismplus/setup.md"
- - "Controllers": "games/sega/maimaidx/prismplus/controllers.md"
- - "Troubleshooting": "games/sega/maimaidx/prismplus/troubleshooting.md"
- - "CiRCLE":
- - "Game Setup": "games/sega/maimaidx/circle/setup.md"
- - "Controllers": "games/sega/maimaidx/circle/controllers.md"
- - "Troubleshooting": "games/sega/maimaidx/circle/troubleshooting.md"
- - "O.N.G.E.K.I.":
- - "bright MEMORY":
- - "Game Setup": "games/sega/ongeki/brightmemory/setup.md"
- - "Controllers": "games/sega/ongeki/brightmemory/controllers.md"
- - "Troubleshooting": "games/sega/ongeki/brightmemory/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/ongeki/brightmemory/c2c.md"
- - "Re:Fresh":
- - "Game Setup": "games/sega/ongeki/refresh/setup.md"
- - "Controllers": "games/sega/ongeki/refresh/controllers.md"
- - "Troubleshooting": "games/sega/ongeki/refresh/troubleshooting.md"
- - "Cab-to-Cab": "games/sega/ongeki/refresh/c2c.md"
- - "WACCA":
- - "Reverse":
- - "Game Setup": "games/sega/wacca/reverse/setup.md"
- - "Controllers": "games/sega/wacca/reverse/controllers.md"
- - NAMCO:
- - "Taiko no Tatsujin: Nijiiro":
- - "Game Setup": "games/namco/taikonijiiro/setup.md"
- - "Troubleshooting": "games/namco/taikonijiiro/troubleshooting.md"
- - TAITO:
- - "Tetote X Connect":
- - "Game Setup": "games/taito/tetoteconnect/setup.md"
+ - KONAMI:
+ - "beatmania IIDX":
+ - "9th style":
+ - "Game Setup": "games/konami/iidx/9thstyle/setup.md"
+ - "Troubleshooting": "games/konami/iidx/9thstyle/troubleshooting.md"
+ - "10th style":
+ - "Game Setup": "games/konami/iidx/10thstyle/setup.md"
+ - "Troubleshooting": "games/konami/iidx/10thstyle/troubleshooting.md"
+ - "11 RED":
+ - "Game Setup": "games/konami/iidx/11_red/setup.md"
+ - "Troubleshooting": "games/konami/iidx/11_red/troubleshooting.md"
+ - "12 HAPPY SKY":
+ - "Game Setup": "games/konami/iidx/12_happysky/setup.md"
+ - "Troubleshooting": "games/konami/iidx/12_happysky/troubleshooting.md"
+ - "13 DistorteD":
+ - "Game Setup": "games/konami/iidx/13_distorted/setup.md"
+ - "Troubleshooting": "games/konami/iidx/13_distorted/troubleshooting.md"
+ - "14 GOLD":
+ - "Game Setup": "games/konami/iidx/14_gold/setup.md"
+ - "Troubleshooting": "games/konami/iidx/14_gold/troubleshooting.md"
+ - "16 EMPRESS":
+ - "Game Setup": "games/konami/iidx/16_empress/setup.md"
+ - "Extra Information": "games/konami/iidx/16_empress/extras.md"
+ - "Troubleshooting": "games/konami/iidx/16_empress/troubleshooting.md"
+ - "24 SINOBUZ":
+ - "Game Setup": "games/konami/iidx/24_sinobuz/setup.md"
+ - "Extra Information": "games/konami/iidx/24_sinobuz/extras.md"
+ - "Troubleshooting": "games/konami/iidx/24_sinobuz/troubleshooting.md"
+ - "25 CANNON BALLERS":
+ - "Game Setup": "games/konami/iidx/25_cannonballers/setup.md"
+ - "Troubleshooting": "games/konami/iidx/25_cannonballers/troubleshooting.md"
+ - "26 Rootage":
+ - "Game Setup": "games/konami/iidx/26_rootage/setup.md"
+ - "Troubleshooting": "games/konami/iidx/26_rootage/troubleshooting.md"
+ - "27 HEROIC VERSE":
+ - "Game Setup": "games/konami/iidx/27_heroicverse/setup.md"
+ - "Extra Information": "games/konami/iidx/27_heroicverse/extras.md"
+ - "Troubleshooting": "games/konami/iidx/27_heroicverse/troubleshooting.md"
+ - "30 RESIDENT":
+ - "Game Setup": "games/konami/iidx/30_resident/setup.md"
+ - "Extra Information": "games/konami/iidx/30_resident/extras.md"
+ - "Troubleshooting": "games/konami/iidx/30_resident/troubleshooting.md"
+ - "31 EPOLIS":
+ - "Game Setup": "games/konami/iidx/31_epolis/setup.md"
+ - "Extra Information": "games/konami/iidx/31_epolis/extras.md"
+ - "Troubleshooting": "games/konami/iidx/31_epolis/troubleshooting.md"
+ - "32 Pinky Crush":
+ - "Game Setup": "games/konami/iidx/32_pinkycrush/setup.md"
+ - "Extra Information": "games/konami/iidx/32_pinkycrush/extras.md"
+ - "Troubleshooting": "games/konami/iidx/32_pinkycrush/troubleshooting.md"
+ - "33 Sparkle Shower":
+ - "Game Setup": "games/konami/iidx/33_sparkleshower/setup.md"
+ - "Extra Information": "games/konami/iidx/33_sparkleshower/extras.md"
+ - "Troubleshooting": "games/konami/iidx/33_sparkleshower/troubleshooting.md"
+ - "Sound Voltex":
+ - "IV HEAVENLY HAVEN":
+ - "Game Setup": "games/konami/sdvx/4_heavenlyhaven/setup.md"
+ - "Troubleshooting": "games/konami/sdvx/4_heavenlyhaven/troubleshooting.md"
+ - "V VIVID WAVE":
+ - "Game Setup": "games/konami/sdvx/5_vividwave/setup.md"
+ - "Troubleshooting": "games/konami/sdvx/5_vividwave/troubleshooting.md"
+ - "VI EXCEED GEAR":
+ - "Game Setup": "games/konami/sdvx/6_exceedgear/setup.md"
+ - "Extra Information": "games/konami/sdvx/6_exceedgear/extras.md"
+ - "Troubleshooting": "games/konami/sdvx/6_exceedgear/troubleshooting.md"
+ - "pop'n music":
+ - "Usaneko":
+ - "Game Setup": "games/konami/popn/usaneko/setup.md"
+ - "Troubleshooting": "games/konami/popn/usaneko/troubleshooting.md"
+ - "peace":
+ - "Game Setup": "games/konami/popn/peace/setup.md"
+ - "Troubleshooting": "games/konami/popn/peace/troubleshooting.md"
+ - "Kaimei Riddles":
+ - "Game Setup": "games/konami/popn/kaimei_riddles/setup.md"
+ - "Troubleshooting": "games/konami/popn/kaimei_riddles/troubleshooting.md"
+ - "UniLab":
+ - "Game Setup": "games/konami/popn/unilab/setup.md"
+ - "Troubleshooting": "games/konami/popn/unilab/troubleshooting.md"
+ - "Dance Dance Revolution":
+ - "A20":
+ - "Game Setup": "games/konami/ddr/a20/setup.md"
+ - "Troubleshooting": "games/konami/ddr/a20/troubleshooting.md"
+ - "A20 PLUS":
+ - "Game Setup": "games/konami/ddr/a20plus/setup.md"
+ - "Troubleshooting": "games/konami/ddr/a20plus/troubleshooting.md"
+ - "A3":
+ - "Game Setup": "games/konami/ddr/a3/setup.md"
+ - "Troubleshooting": "games/konami/ddr/a3/troubleshooting.md"
+ - "WORLD":
+ - "Game Setup": "games/konami/ddr/world/setup.md"
+ - "Troubleshooting": "games/konami/ddr/world/troubleshooting.md"
+ - "jubeat":
+ - "festo":
+ - "Game Setup": "games/konami/jubeat/festo/setup.md"
+ - "Ave.":
+ - "Game Setup": "games/konami/jubeat/avenue/setup.md"
+ - "beyond the Ave.":
+ - "Game Setup": "games/konami/jubeat/beyondtheavenue/setup.md"
+ - "GITADORA":
+ - "Matixx":
+ - "Game Setup": "games/konami/gitadora/matixx/setup.md"
+ - "Troubleshooting": "games/konami/gitadora/matixx/troubleshooting.md"
+ - "EXCHAIN":
+ - "Game Setup": "games/konami/gitadora/exchain/setup.md"
+ - "Troubleshooting": "games/konami/gitadora/exchain/troubleshooting.md"
+ - "Fuzz-Up":
+ - "Game Setup": "games/konami/gitadora/fuzzup/setup.md"
+ - "Troubleshooting": "games/konami/gitadora/fuzzup/troubleshooting.md"
+ - "Reflec Beat":
+ - "悠久のリフレシア (Reflesia)":
+ - "Game Setup": "games/konami/reflecbeat/reflesia/setup.md"
+ - "Troubleshooting": "games/konami/reflecbeat/reflesia/troubleshooting.md"
+ - "NOSTALGIA":
+ - "FORTE":
+ - "Game Setup": "games/konami/nostalgia/forte/setup.md"
+ - "Troubleshooting": "games/konami/nostalgia/forte/troubleshooting.md"
+ - "Op.2":
+ - "Game Setup": "games/konami/nostalgia/op2/setup.md"
+ - "Troubleshooting": "games/konami/nostalgia/op2/troubleshooting.md"
+ - "BeatStream":
+ - "アニムトライヴ (Animutribe)":
+ - "Game Setup": "games/konami/beatstream/animutribe/setup.md"
+ - "Troubleshooting": "games/konami/beatstream/animutribe/troubleshooting.md"
+ - "MÚSECA":
+ - "MÚSECA 1+1/2":
+ - "Game Setup": "games/konami/museca/1plushalf/setup.md"
+ - "Troubleshooting": "games/konami/museca/1plushalf/troubleshooting.md"
+ - "Mahjong Fight Girl":
+ - "Game Setup": "games/konami/mfg/setup.md"
+ - "Troubleshooting": "games/konami/mfg/troubleshooting.md"
+ - SEGA:
+ - "CHUNITHM":
+ - "CHUNITHM":
+ - "Game Setup": "games/sega/chunithm/chunithm/setup.md"
+ - "Controllers": "games/sega/chunithm/chunithm/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/chunithm/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/chunithm/troubleshooting.md"
+ - "PLUS":
+ - "Game Setup": "games/sega/chunithm/plus/setup.md"
+ - "Controllers": "games/sega/chunithm/plus/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/plus/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/plus/troubleshooting.md"
+ - "AIR":
+ - "Game Setup": "games/sega/chunithm/air/setup.md"
+ - "Controllers": "games/sega/chunithm/air/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/air/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/air/troubleshooting.md"
+ - "AIR PLUS":
+ - "Game Setup": "games/sega/chunithm/airplus/setup.md"
+ - "Controllers": "games/sega/chunithm/airplus/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/airplus/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/airplus/troubleshooting.md"
+ - "STAR":
+ - "Game Setup": "games/sega/chunithm/star/setup.md"
+ - "Controllers": "games/sega/chunithm/star/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/star/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/star/troubleshooting.md"
+ - "STAR PLUS":
+ - "Game Setup": "games/sega/chunithm/starplus/setup.md"
+ - "Controllers": "games/sega/chunithm/starplus/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/starplus/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/starplus/troubleshooting.md"
+ - "AMAZON":
+ - "Game Setup": "games/sega/chunithm/amazon/setup.md"
+ - "Controllers": "games/sega/chunithm/amazon/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/amazon/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/amazon/troubleshooting.md"
+ - "AMAZON PLUS":
+ - "Game Setup": "games/sega/chunithm/amazonplus/setup.md"
+ - "Controllers": "games/sega/chunithm/amazonplus/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/amazonplus/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/amazonplus/troubleshooting.md"
+ - "CRYSTAL":
+ - "Game Setup": "games/sega/chunithm/crystal/setup.md"
+ - "Controllers": "games/sega/chunithm/crystal/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/crystal/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/crystal/troubleshooting.md"
+ - "CRYSTAL PLUS":
+ - "Game Setup": "games/sega/chunithm/crystalplus/setup.md"
+ - "Controllers": "games/sega/chunithm/crystalplus/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/crystalplus/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/crystalplus/troubleshooting.md"
+ - "PARADISE":
+ - "Game Setup": "games/sega/chunithm/paradise/setup.md"
+ - "Controllers": "games/sega/chunithm/paradise/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/paradise/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/paradise/troubleshooting.md"
+ - "PARADISE LOST":
+ - "Game Setup": "games/sega/chunithm/paradiselost/setup.md"
+ - "Controllers": "games/sega/chunithm/paradiselost/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/paradiselost/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/paradiselost/troubleshooting.md"
+ - "NEW":
+ - "Game Setup": "games/sega/chunithm/new/setup.md"
+ - "Controllers": "games/sega/chunithm/new/controllers.md"
+ - "Cab-to-Cab": "games/sega/chunithm/new/c2c.md"
+ - "Troubleshooting": "games/sega/chunithm/new/troubleshooting.md"
+ - "NEW PLUS":
+ - "Game Setup": "games/sega/chunithm/newplus/setup.md"
+ - "Controllers": "games/sega/chunithm/newplus/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/newplus/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/newplus/c2c.md"
+ - "SUN":
+ - "Game Setup": "games/sega/chunithm/sun/setup.md"
+ - "Controllers": "games/sega/chunithm/sun/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/sun/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/sun/c2c.md"
+ - "SUN PLUS":
+ - "Game Setup": "games/sega/chunithm/sunplus/setup.md"
+ - "Controllers": "games/sega/chunithm/sunplus/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/sunplus/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/sunplus/c2c.md"
+ - "LUMINOUS":
+ - "Game Setup": "games/sega/chunithm/luminous/setup.md"
+ - "Controllers": "games/sega/chunithm/luminous/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/luminous/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/luminous/c2c.md"
+ - "LUMINOUS PLUS":
+ - "Game Setup": "games/sega/chunithm/luminousplus/setup.md"
+ - "Controllers": "games/sega/chunithm/luminousplus/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/luminousplus/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/luminousplus/c2c.md"
+ - "VERSE":
+ - "Game Setup": "games/sega/chunithm/verse/setup.md"
+ - "Controllers": "games/sega/chunithm/verse/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/verse/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/verse/c2c.md"
+ - "X-VERSE":
+ - "Game Setup": "games/sega/chunithm/x-verse/setup.md"
+ - "Controllers": "games/sega/chunithm/x-verse/controllers.md"
+ - "Troubleshooting": "games/sega/chunithm/x-verse/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/chunithm/x-verse/c2c.md"
+ - "maimai DX":
+ - "BUDDiES":
+ - "Game Setup": "games/sega/maimaidx/buddies/setup.md"
+ - "Controllers": "games/sega/maimaidx/buddies/controllers.md"
+ - "Troubleshooting": "games/sega/maimaidx/buddies/troubleshooting.md"
+ - "BUDDiES PLUS":
+ - "Game Setup": "games/sega/maimaidx/buddiesplus/setup.md"
+ - "Controllers": "games/sega/maimaidx/buddiesplus/controllers.md"
+ - "Troubleshooting": "games/sega/maimaidx/buddiesplus/troubleshooting.md"
+ - "PRiSM":
+ - "Game Setup": "games/sega/maimaidx/prism/setup.md"
+ - "Controllers": "games/sega/maimaidx/prism/controllers.md"
+ - "Troubleshooting": "games/sega/maimaidx/prism/troubleshooting.md"
+ - "PRiSM PLUS":
+ - "Game Setup": "games/sega/maimaidx/prismplus/setup.md"
+ - "Controllers": "games/sega/maimaidx/prismplus/controllers.md"
+ - "Troubleshooting": "games/sega/maimaidx/prismplus/troubleshooting.md"
+ - "CiRCLE":
+ - "Game Setup": "games/sega/maimaidx/circle/setup.md"
+ - "Controllers": "games/sega/maimaidx/circle/controllers.md"
+ - "Troubleshooting": "games/sega/maimaidx/circle/troubleshooting.md"
+ - "O.N.G.E.K.I.":
+ - "bright MEMORY":
+ - "Game Setup": "games/sega/ongeki/brightmemory/setup.md"
+ - "Controllers": "games/sega/ongeki/brightmemory/controllers.md"
+ - "Troubleshooting": "games/sega/ongeki/brightmemory/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/ongeki/brightmemory/c2c.md"
+ - "Re:Fresh":
+ - "Game Setup": "games/sega/ongeki/refresh/setup.md"
+ - "Controllers": "games/sega/ongeki/refresh/controllers.md"
+ - "Troubleshooting": "games/sega/ongeki/refresh/troubleshooting.md"
+ - "Cab-to-Cab": "games/sega/ongeki/refresh/c2c.md"
+ - "WACCA":
+ - "Reverse":
+ - "Game Setup": "games/sega/wacca/reverse/setup.md"
+ - "Controllers": "games/sega/wacca/reverse/controllers.md"
+ - NAMCO:
+ - "Taiko no Tatsujin: Nijiiro":
+ - "Game Setup": "games/namco/taikonijiiro/setup.md"
+ - "Troubleshooting": "games/namco/taikonijiiro/troubleshooting.md"
+ - TAITO:
+ - "Tetote X Connect":
+ - "Game Setup": "games/taito/tetoteconnect/setup.md"
- Error Codes:
- - BEMANI: "errorcodes/bemani.md"
- - SEGA: "errorcodes/sega.md"
+ - KONAMI: "errorcodes/konami.md"
+ - SEGA: "errorcodes/sega.md"
- Game Patching:
- - "Using spice2x": "extras/patchsp2x.md"
- - "Using Web": "extras/patchweb.md"
- - "Manually": "extras/hexguide.md"
+ - "Using spice2x": "extras/patchsp2x.md"
+ - "Using Web": "extras/patchweb.md"
+ - "Manually": "extras/hexguide.md"
- Extras:
- - "Asphyxia": "extras/asphyxia.md"
- - "Audio": "extras/audio.md"
- - "Cab-to-Cab (ZeroTier)": "extras/zerotier.md"
- - "Controllers": "extras/controllers.md"
- - "Modding (Bemani)": "extras/datamods.md"
- - "Modding (Unity)": "extras/unity.md"
+ - "Asphyxia": "extras/asphyxia.md"
+ - "Audio": "extras/audio.md"
+ - "Cab-to-Cab (ZeroTier)": "extras/zerotier.md"
+ - "Controllers": "extras/controllers.md"
+ - "Modding (Konami)": "extras/datamods.md"
+ - "Modding (Unity)": "extras/unity.md"
+ - "Linux (Konami)": "extras/linux_konami.md"
- Other Resources: resources.md
not_in_nav: |
snippets
- games/bemani/iidx/common
- games/bemani/sdvx/common
- games/bemani/ddr/common
- games/bemani/popn/common
- games/bemani/jubeat/common
+ games/konami/iidx/common
+ games/konami/sdvx/common
+ games/konami/ddr/common
+ games/konami/popn/common
+ games/konami/jubeat/common
games/sega/chunithm/common
games/sega/maimaidx/common
games/sega/ongeki/common
@@ -332,13 +349,12 @@ theme:
name: Switch to system preference
features:
- content.code.annotate
+ - content.code.copy
markdown_extensions:
- # Core Extensions
- admonition
- attr_list
- md_in_html
- # Code
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
@@ -346,14 +362,12 @@ markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- # Content
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- # Text Formatting
- pymdownx.caret
- pymdownx.critic
- pymdownx.keys
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 00000000..1442a3a3
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,11 @@
+[project]
+name = "two-torial"
+version = "0.1.0"
+requires-python = ">=3.13"
+dependencies = [
+ "click==8.2.1", # Pinned due to recent versions breaking hot reload during development
+ "fontawesome-markdown>=0.2.6",
+ "mkdocs>=1.6.1",
+ "mkdocs-git-revision-date-localized-plugin>=1.4.7",
+ "mkdocs-material>=9.6.21",
+]
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index c4f40a9b..00000000
--- a/requirements.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-mkdocs
-fontawesome-markdown
-mkdocs-material
-mkdocs-git-revision-date-localized-plugin
\ No newline at end of file
diff --git a/uv.lock b/uv.lock
new file mode 100644
index 00000000..06782249
--- /dev/null
+++ b/uv.lock
@@ -0,0 +1,518 @@
+version = 1
+revision = 3
+requires-python = ">=3.13"
+
+[[package]]
+name = "babel"
+version = "2.17.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852, upload-time = "2025-02-01T15:17:41.026Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537, upload-time = "2025-02-01T15:17:37.39Z" },
+]
+
+[[package]]
+name = "backrefs"
+version = "5.9"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/eb/a7/312f673df6a79003279e1f55619abbe7daebbb87c17c976ddc0345c04c7b/backrefs-5.9.tar.gz", hash = "sha256:808548cb708d66b82ee231f962cb36faaf4f2baab032f2fbb783e9c2fdddaa59", size = 5765857, upload-time = "2025-06-22T19:34:13.97Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/19/4d/798dc1f30468134906575156c089c492cf79b5a5fd373f07fe26c4d046bf/backrefs-5.9-py310-none-any.whl", hash = "sha256:db8e8ba0e9de81fcd635f440deab5ae5f2591b54ac1ebe0550a2ca063488cd9f", size = 380267, upload-time = "2025-06-22T19:34:05.252Z" },
+ { url = "https://files.pythonhosted.org/packages/55/07/f0b3375bf0d06014e9787797e6b7cc02b38ac9ff9726ccfe834d94e9991e/backrefs-5.9-py311-none-any.whl", hash = "sha256:6907635edebbe9b2dc3de3a2befff44d74f30a4562adbb8b36f21252ea19c5cf", size = 392072, upload-time = "2025-06-22T19:34:06.743Z" },
+ { url = "https://files.pythonhosted.org/packages/9d/12/4f345407259dd60a0997107758ba3f221cf89a9b5a0f8ed5b961aef97253/backrefs-5.9-py312-none-any.whl", hash = "sha256:7fdf9771f63e6028d7fee7e0c497c81abda597ea45d6b8f89e8ad76994f5befa", size = 397947, upload-time = "2025-06-22T19:34:08.172Z" },
+ { url = "https://files.pythonhosted.org/packages/10/bf/fa31834dc27a7f05e5290eae47c82690edc3a7b37d58f7fb35a1bdbf355b/backrefs-5.9-py313-none-any.whl", hash = "sha256:cc37b19fa219e93ff825ed1fed8879e47b4d89aa7a1884860e2db64ccd7c676b", size = 399843, upload-time = "2025-06-22T19:34:09.68Z" },
+ { url = "https://files.pythonhosted.org/packages/fc/24/b29af34b2c9c41645a9f4ff117bae860291780d73880f449e0b5d948c070/backrefs-5.9-py314-none-any.whl", hash = "sha256:df5e169836cc8acb5e440ebae9aad4bf9d15e226d3bad049cf3f6a5c20cc8dc9", size = 411762, upload-time = "2025-06-22T19:34:11.037Z" },
+ { url = "https://files.pythonhosted.org/packages/41/ff/392bff89415399a979be4a65357a41d92729ae8580a66073d8ec8d810f98/backrefs-5.9-py39-none-any.whl", hash = "sha256:f48ee18f6252b8f5777a22a00a09a85de0ca931658f1dd96d4406a34f3748c60", size = 380265, upload-time = "2025-06-22T19:34:12.405Z" },
+]
+
+[[package]]
+name = "certifi"
+version = "2025.10.5"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/4c/5b/b6ce21586237c77ce67d01dc5507039d444b630dd76611bbca2d8e5dcd91/certifi-2025.10.5.tar.gz", hash = "sha256:47c09d31ccf2acf0be3f701ea53595ee7e0b8fa08801c6624be771df09ae7b43", size = 164519, upload-time = "2025-10-05T04:12:15.808Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl", hash = "sha256:0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de", size = 163286, upload-time = "2025-10-05T04:12:14.03Z" },
+]
+
+[[package]]
+name = "charset-normalizer"
+version = "3.4.3"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload-time = "2025-08-09T07:57:28.46Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe", size = 205326, upload-time = "2025-08-09T07:56:24.721Z" },
+ { url = "https://files.pythonhosted.org/packages/71/11/98a04c3c97dd34e49c7d247083af03645ca3730809a5509443f3c37f7c99/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8", size = 146008, upload-time = "2025-08-09T07:56:26.004Z" },
+ { url = "https://files.pythonhosted.org/packages/60/f5/4659a4cb3c4ec146bec80c32d8bb16033752574c20b1252ee842a95d1a1e/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9", size = 159196, upload-time = "2025-08-09T07:56:27.25Z" },
+ { url = "https://files.pythonhosted.org/packages/86/9e/f552f7a00611f168b9a5865a1414179b2c6de8235a4fa40189f6f79a1753/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31", size = 156819, upload-time = "2025-08-09T07:56:28.515Z" },
+ { url = "https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f", size = 151350, upload-time = "2025-08-09T07:56:29.716Z" },
+ { url = "https://files.pythonhosted.org/packages/c2/a9/3865b02c56f300a6f94fc631ef54f0a8a29da74fb45a773dfd3dcd380af7/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927", size = 148644, upload-time = "2025-08-09T07:56:30.984Z" },
+ { url = "https://files.pythonhosted.org/packages/77/d9/cbcf1a2a5c7d7856f11e7ac2d782aec12bdfea60d104e60e0aa1c97849dc/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9", size = 160468, upload-time = "2025-08-09T07:56:32.252Z" },
+ { url = "https://files.pythonhosted.org/packages/f6/42/6f45efee8697b89fda4d50580f292b8f7f9306cb2971d4b53f8914e4d890/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5", size = 158187, upload-time = "2025-08-09T07:56:33.481Z" },
+ { url = "https://files.pythonhosted.org/packages/70/99/f1c3bdcfaa9c45b3ce96f70b14f070411366fa19549c1d4832c935d8e2c3/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc", size = 152699, upload-time = "2025-08-09T07:56:34.739Z" },
+ { url = "https://files.pythonhosted.org/packages/a3/ad/b0081f2f99a4b194bcbb1934ef3b12aa4d9702ced80a37026b7607c72e58/charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce", size = 99580, upload-time = "2025-08-09T07:56:35.981Z" },
+ { url = "https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef", size = 107366, upload-time = "2025-08-09T07:56:37.339Z" },
+ { url = "https://files.pythonhosted.org/packages/8e/91/b5a06ad970ddc7a0e513112d40113e834638f4ca1120eb727a249fb2715e/charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15", size = 204342, upload-time = "2025-08-09T07:56:38.687Z" },
+ { url = "https://files.pythonhosted.org/packages/ce/ec/1edc30a377f0a02689342f214455c3f6c2fbedd896a1d2f856c002fc3062/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db", size = 145995, upload-time = "2025-08-09T07:56:40.048Z" },
+ { url = "https://files.pythonhosted.org/packages/17/e5/5e67ab85e6d22b04641acb5399c8684f4d37caf7558a53859f0283a650e9/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d", size = 158640, upload-time = "2025-08-09T07:56:41.311Z" },
+ { url = "https://files.pythonhosted.org/packages/f1/e5/38421987f6c697ee3722981289d554957c4be652f963d71c5e46a262e135/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096", size = 156636, upload-time = "2025-08-09T07:56:43.195Z" },
+ { url = "https://files.pythonhosted.org/packages/a0/e4/5a075de8daa3ec0745a9a3b54467e0c2967daaaf2cec04c845f73493e9a1/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa", size = 150939, upload-time = "2025-08-09T07:56:44.819Z" },
+ { url = "https://files.pythonhosted.org/packages/02/f7/3611b32318b30974131db62b4043f335861d4d9b49adc6d57c1149cc49d4/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049", size = 148580, upload-time = "2025-08-09T07:56:46.684Z" },
+ { url = "https://files.pythonhosted.org/packages/7e/61/19b36f4bd67f2793ab6a99b979b4e4f3d8fc754cbdffb805335df4337126/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0", size = 159870, upload-time = "2025-08-09T07:56:47.941Z" },
+ { url = "https://files.pythonhosted.org/packages/06/57/84722eefdd338c04cf3030ada66889298eaedf3e7a30a624201e0cbe424a/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92", size = 157797, upload-time = "2025-08-09T07:56:49.756Z" },
+ { url = "https://files.pythonhosted.org/packages/72/2a/aff5dd112b2f14bcc3462c312dce5445806bfc8ab3a7328555da95330e4b/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16", size = 152224, upload-time = "2025-08-09T07:56:51.369Z" },
+ { url = "https://files.pythonhosted.org/packages/b7/8c/9839225320046ed279c6e839d51f028342eb77c91c89b8ef2549f951f3ec/charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce", size = 100086, upload-time = "2025-08-09T07:56:52.722Z" },
+ { url = "https://files.pythonhosted.org/packages/ee/7a/36fbcf646e41f710ce0a563c1c9a343c6edf9be80786edeb15b6f62e17db/charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c", size = 107400, upload-time = "2025-08-09T07:56:55.172Z" },
+ { url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload-time = "2025-08-09T07:57:26.864Z" },
+]
+
+[[package]]
+name = "click"
+version = "8.2.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "colorama", marker = "sys_platform == 'win32'" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/60/6c/8ca2efa64cf75a977a0d7fac081354553ebe483345c734fb6b6515d96bbc/click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202", size = 286342, upload-time = "2025-05-20T23:19:49.832Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b", size = 102215, upload-time = "2025-05-20T23:19:47.796Z" },
+]
+
+[[package]]
+name = "colorama"
+version = "0.4.6"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
+]
+
+[[package]]
+name = "fontawesome-markdown"
+version = "0.2.6"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "markdown" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/c7/29/cbd664c42a119ee14d73a6991e4689beec529313ada5c4586c9c33f72e2b/fontawesome-markdown-0.2.6.tar.gz", hash = "sha256:95a12f1629a595afc4aabc886ffdb8b5fa0ae8f77e8f3437b7b1942d91f91f4b", size = 5762, upload-time = "2016-12-05T14:27:19.682Z" }
+
+[[package]]
+name = "ghp-import"
+version = "2.1.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "python-dateutil" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343", size = 10943, upload-time = "2022-05-02T15:47:16.11Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", size = 11034, upload-time = "2022-05-02T15:47:14.552Z" },
+]
+
+[[package]]
+name = "gitdb"
+version = "4.0.12"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "smmap" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" },
+]
+
+[[package]]
+name = "gitpython"
+version = "3.1.45"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "gitdb" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/9a/c8/dd58967d119baab745caec2f9d853297cec1989ec1d63f677d3880632b88/gitpython-3.1.45.tar.gz", hash = "sha256:85b0ee964ceddf211c41b9f27a49086010a190fd8132a24e21f362a4b36a791c", size = 215076, upload-time = "2025-07-24T03:45:54.871Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl", hash = "sha256:8908cb2e02fb3b93b7eb0f2827125cb699869470432cc885f019b8fd0fccff77", size = 208168, upload-time = "2025-07-24T03:45:52.517Z" },
+]
+
+[[package]]
+name = "idna"
+version = "3.10"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" },
+]
+
+[[package]]
+name = "jinja2"
+version = "3.1.6"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "markupsafe" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
+]
+
+[[package]]
+name = "markdown"
+version = "3.9"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/8d/37/02347f6d6d8279247a5837082ebc26fc0d5aaeaf75aa013fcbb433c777ab/markdown-3.9.tar.gz", hash = "sha256:d2900fe1782bd33bdbbd56859defef70c2e78fc46668f8eb9df3128138f2cb6a", size = 364585, upload-time = "2025-09-04T20:25:22.885Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/70/ae/44c4a6a4cbb496d93c6257954260fe3a6e91b7bed2240e5dad2a717f5111/markdown-3.9-py3-none-any.whl", hash = "sha256:9f4d91ed810864ea88a6f32c07ba8bee1346c0cc1f6b1f9f6c822f2a9667d280", size = 107441, upload-time = "2025-09-04T20:25:21.784Z" },
+]
+
+[[package]]
+name = "markupsafe"
+version = "3.0.3"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" },
+ { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" },
+ { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" },
+ { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" },
+ { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" },
+ { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" },
+ { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" },
+ { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" },
+ { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" },
+ { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" },
+ { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" },
+ { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" },
+ { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" },
+ { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" },
+ { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" },
+ { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" },
+ { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" },
+ { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" },
+ { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" },
+ { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" },
+ { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" },
+ { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" },
+ { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" },
+ { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" },
+ { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" },
+ { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" },
+ { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" },
+ { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" },
+ { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" },
+ { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" },
+ { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" },
+ { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" },
+ { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" },
+ { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" },
+ { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" },
+ { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" },
+ { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" },
+ { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" },
+ { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" },
+ { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" },
+ { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" },
+ { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" },
+ { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" },
+ { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" },
+]
+
+[[package]]
+name = "mergedeep"
+version = "1.3.4"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/3a/41/580bb4006e3ed0361b8151a01d324fb03f420815446c7def45d02f74c270/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", size = 4661, upload-time = "2021-02-05T18:55:30.623Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354, upload-time = "2021-02-05T18:55:29.583Z" },
+]
+
+[[package]]
+name = "mkdocs"
+version = "1.6.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "click" },
+ { name = "colorama", marker = "sys_platform == 'win32'" },
+ { name = "ghp-import" },
+ { name = "jinja2" },
+ { name = "markdown" },
+ { name = "markupsafe" },
+ { name = "mergedeep" },
+ { name = "mkdocs-get-deps" },
+ { name = "packaging" },
+ { name = "pathspec" },
+ { name = "pyyaml" },
+ { name = "pyyaml-env-tag" },
+ { name = "watchdog" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/bc/c6/bbd4f061bd16b378247f12953ffcb04786a618ce5e904b8c5a01a0309061/mkdocs-1.6.1.tar.gz", hash = "sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2", size = 3889159, upload-time = "2024-08-30T12:24:06.899Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl", hash = "sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e", size = 3864451, upload-time = "2024-08-30T12:24:05.054Z" },
+]
+
+[[package]]
+name = "mkdocs-get-deps"
+version = "0.2.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "mergedeep" },
+ { name = "platformdirs" },
+ { name = "pyyaml" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/98/f5/ed29cd50067784976f25ed0ed6fcd3c2ce9eb90650aa3b2796ddf7b6870b/mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c", size = 10239, upload-time = "2023-11-20T17:51:09.981Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134", size = 9521, upload-time = "2023-11-20T17:51:08.587Z" },
+]
+
+[[package]]
+name = "mkdocs-git-revision-date-localized-plugin"
+version = "1.4.7"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "babel" },
+ { name = "gitpython" },
+ { name = "mkdocs" },
+ { name = "pytz" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/5e/f8/a17ec39a4fc314d40cc96afdc1d401e393ebd4f42309d454cc940a2cf38a/mkdocs_git_revision_date_localized_plugin-1.4.7.tar.gz", hash = "sha256:10a49eff1e1c3cb766e054b9d8360c904ce4fe8c33ac3f6cc083ac6459c91953", size = 450473, upload-time = "2025-05-28T18:26:20.697Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/53/b6/106fcc15287e7228658fbd0ad9e8b0d775becced0a089cc39984641f4a0f/mkdocs_git_revision_date_localized_plugin-1.4.7-py3-none-any.whl", hash = "sha256:056c0a90242409148f1dc94d5c9d2c25b5b8ddd8de45489fa38f7fa7ccad2bc4", size = 25382, upload-time = "2025-05-28T18:26:18.907Z" },
+]
+
+[[package]]
+name = "mkdocs-material"
+version = "9.6.21"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "babel" },
+ { name = "backrefs" },
+ { name = "colorama" },
+ { name = "jinja2" },
+ { name = "markdown" },
+ { name = "mkdocs" },
+ { name = "mkdocs-material-extensions" },
+ { name = "paginate" },
+ { name = "pygments" },
+ { name = "pymdown-extensions" },
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/ff/d5/ab83ca9aa314954b0a9e8849780bdd01866a3cfcb15ffb7e3a61ca06ff0b/mkdocs_material-9.6.21.tar.gz", hash = "sha256:b01aa6d2731322438056f360f0e623d3faae981f8f2d8c68b1b973f4f2657870", size = 4043097, upload-time = "2025-09-30T19:11:27.517Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/cf/4f/98681c2030375fe9b057dbfb9008b68f46c07dddf583f4df09bf8075e37f/mkdocs_material-9.6.21-py3-none-any.whl", hash = "sha256:aa6a5ab6fb4f6d381588ac51da8782a4d3757cb3d1b174f81a2ec126e1f22c92", size = 9203097, upload-time = "2025-09-30T19:11:24.063Z" },
+]
+
+[[package]]
+name = "mkdocs-material-extensions"
+version = "1.3.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/79/9b/9b4c96d6593b2a541e1cb8b34899a6d021d208bb357042823d4d2cabdbe7/mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443", size = 11847, upload-time = "2023-11-22T19:09:45.208Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31", size = 8728, upload-time = "2023-11-22T19:09:43.465Z" },
+]
+
+[[package]]
+name = "packaging"
+version = "25.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" },
+]
+
+[[package]]
+name = "paginate"
+version = "0.5.7"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/ec/46/68dde5b6bc00c1296ec6466ab27dddede6aec9af1b99090e1107091b3b84/paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945", size = 19252, upload-time = "2024-08-25T14:17:24.139Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591", size = 13746, upload-time = "2024-08-25T14:17:22.55Z" },
+]
+
+[[package]]
+name = "pathspec"
+version = "0.12.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" },
+]
+
+[[package]]
+name = "platformdirs"
+version = "4.4.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" },
+]
+
+[[package]]
+name = "pygments"
+version = "2.19.2"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" },
+]
+
+[[package]]
+name = "pymdown-extensions"
+version = "10.16.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "markdown" },
+ { name = "pyyaml" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/55/b3/6d2b3f149bc5413b0a29761c2c5832d8ce904a1d7f621e86616d96f505cc/pymdown_extensions-10.16.1.tar.gz", hash = "sha256:aace82bcccba3efc03e25d584e6a22d27a8e17caa3f4dd9f207e49b787aa9a91", size = 853277, upload-time = "2025-07-28T16:19:34.167Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/e4/06/43084e6cbd4b3bc0e80f6be743b2e79fbc6eed8de9ad8c629939fa55d972/pymdown_extensions-10.16.1-py3-none-any.whl", hash = "sha256:d6ba157a6c03146a7fb122b2b9a121300056384eafeec9c9f9e584adfdb2a32d", size = 266178, upload-time = "2025-07-28T16:19:31.401Z" },
+]
+
+[[package]]
+name = "python-dateutil"
+version = "2.9.0.post0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "six" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
+]
+
+[[package]]
+name = "pytz"
+version = "2025.2"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" },
+]
+
+[[package]]
+name = "pyyaml"
+version = "6.0.3"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" },
+ { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" },
+ { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" },
+ { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" },
+ { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" },
+ { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" },
+ { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" },
+ { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" },
+ { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" },
+ { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" },
+ { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" },
+ { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" },
+ { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" },
+ { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" },
+ { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" },
+ { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" },
+ { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" },
+ { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" },
+ { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" },
+ { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" },
+ { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" },
+ { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" },
+ { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" },
+ { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" },
+ { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" },
+ { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" },
+ { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" },
+ { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" },
+]
+
+[[package]]
+name = "pyyaml-env-tag"
+version = "1.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyyaml" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/eb/2e/79c822141bfd05a853236b504869ebc6b70159afc570e1d5a20641782eaa/pyyaml_env_tag-1.1.tar.gz", hash = "sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff", size = 5737, upload-time = "2025-05-13T15:24:01.64Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl", hash = "sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04", size = 4722, upload-time = "2025-05-13T15:23:59.629Z" },
+]
+
+[[package]]
+name = "requests"
+version = "2.32.5"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "certifi" },
+ { name = "charset-normalizer" },
+ { name = "idna" },
+ { name = "urllib3" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
+]
+
+[[package]]
+name = "six"
+version = "1.17.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
+]
+
+[[package]]
+name = "smmap"
+version = "5.0.2"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz", hash = "sha256:26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5", size = 22329, upload-time = "2025-01-02T07:14:40.909Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl", hash = "sha256:b30115f0def7d7531d22a0fb6502488d879e75b260a9db4d0819cfb25403af5e", size = 24303, upload-time = "2025-01-02T07:14:38.724Z" },
+]
+
+[[package]]
+name = "two-torial"
+version = "0.1.0"
+source = { virtual = "." }
+dependencies = [
+ { name = "click" },
+ { name = "fontawesome-markdown" },
+ { name = "mkdocs" },
+ { name = "mkdocs-git-revision-date-localized-plugin" },
+ { name = "mkdocs-material" },
+]
+
+[package.metadata]
+requires-dist = [
+ { name = "click", specifier = "==8.2.1" },
+ { name = "fontawesome-markdown", specifier = ">=0.2.6" },
+ { name = "mkdocs", specifier = ">=1.6.1" },
+ { name = "mkdocs-git-revision-date-localized-plugin", specifier = ">=1.4.7" },
+ { name = "mkdocs-material", specifier = ">=9.6.21" },
+]
+
+[[package]]
+name = "urllib3"
+version = "2.5.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" },
+]
+
+[[package]]
+name = "watchdog"
+version = "6.0.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/68/98/b0345cabdce2041a01293ba483333582891a3bd5769b08eceb0d406056ef/watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c", size = 96480, upload-time = "2024-11-01T14:06:42.952Z" },
+ { url = "https://files.pythonhosted.org/packages/85/83/cdf13902c626b28eedef7ec4f10745c52aad8a8fe7eb04ed7b1f111ca20e/watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134", size = 88451, upload-time = "2024-11-01T14:06:45.084Z" },
+ { url = "https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b", size = 89057, upload-time = "2024-11-01T14:06:47.324Z" },
+ { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" },
+ { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" },
+ { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" },
+ { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" },
+ { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" },
+ { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" },
+ { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" },
+ { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" },
+ { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" },
+ { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" },
+]