diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 80035aa3..38a88d9c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,109 +1,14 @@ # Contributing to RetroBIOS -## Types of contributions +## Add a BIOS file -- **Add a BIOS file** - a great way to get started. Fork, add the file, open a PR. -- **Create an emulator profile** - document what a core actually loads from source code. See the [profiling guide](https://abdess.github.io/retrobios/wiki/profiling/). -- **Add a platform** - integrate a new frontend (scraper + YAML config). See [adding a platform](https://abdess.github.io/retrobios/wiki/adding-a-platform/). -- **Add or fix a scraper** - parse upstream sources for BIOS requirements. See [adding a scraper](https://abdess.github.io/retrobios/wiki/adding-a-scraper/). -- **Fix a bug or improve tooling** - Python scripts in `scripts/`, single dependency (`pyyaml`). +1. Fork this repository +2. Place the file in `bios/Manufacturer/Console/filename` +3. Variants (alternate hashes): `bios/Manufacturer/Console/.variants/` +4. Create a Pull Request - checksums are verified automatically -## Local setup +## File conventions -```bash -git clone https://github.com/Abdess/retrobios.git -cd retrobios -pip install pyyaml - -# run tests -python -m unittest tests.test_e2e -v - -# run full pipeline (DB + verify + packs + consistency check) -python scripts/pipeline.py --offline -``` - -Requires Python 3.10 or later. - -## Adding a BIOS file - -1. Place the file in `bios/Manufacturer/Console/filename`. -2. Alternate versions (different hash, same purpose) go in `bios/Manufacturer/Console/.variants/`. -3. Files over 50 MB go as assets on the `large-files` GitHub release (git handles them better that way). -4. RPG Maker and ScummVM directories are excluded from deduplication - please keep their structure as-is. -5. Open a pull request. CI validates checksums automatically and posts a report. - -## Commit conventions - -Format: `type: description` (50 characters max, lowercase start). - -Allowed types: `feat`, `refactor`, `chore`, `docs`, `fix`. - -``` -feat: add panasonic 3do bios files -docs: update architecture diagram -fix: resolve truncated md5 matching -chore: remove unused test fixtures -refactor: extract hash logic to common.py -``` - -Keep messages factual. No marketing language, no superfluous adjectives. - -## Code and documentation quality - -The codebase runs on Python 3.10+ with a single dependency (`pyyaml`). All modules -include `from __future__ import annotations` at the top. Type hints on every function -signature, `pathlib` instead of `os.path`, and dataclasses where a plain class would -just hold attributes. - -On performance: O(1) or O(n) algorithms are preferred. If something needs O(n^2), a -comment explaining why helps future readers. List comprehensions over explicit loops, -generators when iterating large datasets, and standard default arguments -(`def f(items=None)` over `def f(items=[])`). - -File I/O uses context managers. ZIP extraction goes through `safe_extract_zip()` in -`common.py`, which prevents zip-slip path traversal. - -The code stays lean. Comments that describe *why* age better than comments that -restate *what*. Unused variables can be deleted rather than renamed with an underscore. - -The same spirit applies to documentation and emulator profiles. Straightforward -language, honest labels ("untested" when something is untested). - -When a bug is spotted while working on something else, fixing it in the same PR -keeps things tidy. Features ideally ship complete in one pass: code, tests, a -passing pipeline run, and any documentation updates together. - -## Pull request process - -CI runs four checks on every PR: - -| Check | What it does | -|-------|-------------| -| `validate-bios` | hashes changed BIOS files against the database, posts a validation report | -| `validate-configs` | schema-validates platform YAML configs | -| `run-tests` | runs the full E2E test suite | -| `label-pr` | auto-labels the PR based on changed file paths | - -All four checks must pass. One maintainer approval is required before merge. - -## Project philosophy - -This repository is an archive. The goal is a complete collection of every file a -user needs to run every supported console in an emulator, with zero friction. That -scope goes beyond BIOS ROMs: firmware updates, system fonts, data files, encryption -keys, hiscore databases, anything the emulator loads from disk rather than generating -itself. In a hundred years the pack should still work out of the box. - -Licensing considerations are secondary to completeness. If an emulator needs a -file to function, the file belongs in the collection. The project's legal position is -documented in the FAQ section of the site. - -Integrity matters. Every file, hash, and metadata field is cross-checked -against the emulator's source code. Upstream references like System.dat, -`.info` files, and wiki pages are valuable and generally accurate, though -they can occasionally fall out of date. When an upstream source and the -code disagree, the code at runtime is the tiebreaker. - -## Documentation - -Full reference docs, profiling guides, and architecture details are on the [documentation site](https://abdess.github.io/retrobios/). +- Files >50 MB go in GitHub release assets (`large-files` release) +- RPG Maker and ScummVM directories are excluded from deduplication +- See the [documentation site](https://abdess.github.io/retrobios/) for full details diff --git a/README.md b/README.md index c43a96e7..27771518 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Complete BIOS and firmware packs for Batocera, BizHawk, EmuDeck, Lakka, Recalbox, RetroArch, RetroBat, RetroDECK, RetroPie, and RomM. -**7,241** verified files across **396** systems, ready to extract into your emulator's BIOS directory. +**7,293** verified files across **396** systems, ready to extract into your emulator's BIOS directory. ## Quick Install @@ -46,8 +46,8 @@ Each file is checked against the emulator's source code to match what the code a - **10 platforms** supported with platform-specific verification - **329 emulators** profiled from source (RetroArch cores + standalone) - **396 systems** covered (NES, SNES, PlayStation, Saturn, Dreamcast, ...) -- **7,241 files** verified with MD5, SHA1, CRC32 checksums -- **8144 MB** total collection size +- **7,293 files** verified with MD5, SHA1, CRC32 checksums +- **8710 MB** total collection size ## Supported systems @@ -59,15 +59,15 @@ Full list with per-file details: **[https://abdess.github.io/retrobios/](https:/ | Platform | Coverage | Verified | Untested | Missing | |----------|----------|----------|----------|---------| -| Batocera | 356/362 (98.3%) | 349 | 7 | 6 | +| Batocera | 361/362 (99.7%) | 354 | 7 | 1 | | BizHawk | 118/118 (100.0%) | 118 | 0 | 0 | | EmuDeck | 161/161 (100.0%) | 161 | 0 | 0 | -| Lakka | 442/448 (98.7%) | 442 | 0 | 6 | +| Lakka | 443/448 (98.9%) | 443 | 0 | 5 | | Recalbox | 277/346 (80.1%) | 274 | 3 | 69 | -| RetroArch | 442/448 (98.7%) | 442 | 0 | 6 | +| RetroArch | 443/448 (98.9%) | 443 | 0 | 5 | | RetroBat | 339/339 (100.0%) | 335 | 4 | 0 | | RetroDECK | 1960/2006 (97.7%) | 1934 | 26 | 46 | -| RetroPie | 442/448 (98.7%) | 442 | 0 | 6 | +| RetroPie | 443/448 (98.9%) | 443 | 0 | 5 | | RomM | 372/374 (99.5%) | 372 | 0 | 2 | ## Build your own pack @@ -130,4 +130,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. This repository provides BIOS files for personal backup and archival purposes. -*Auto-generated on 2026-03-30T20:16:27Z* +*Auto-generated on 2026-03-30T23:36:52Z* diff --git a/database.json b/database.json index 9e121b01..2e8604fe 100644 --- a/database.json +++ b/database.json @@ -1,7 +1,7 @@ { - "generated_at": "2026-03-30T13:15:58Z", - "total_files": 7241, - "total_size": 8540057243, + "generated_at": "2026-03-30T23:11:20Z", + "total_files": 7293, + "total_size": 9133482744, "files": { "520d3d1b5897800af47f92efd2444a26b7a7dead": { "path": "bios/3DO Company/3DO/3do_arcade_saot.bin", @@ -613,6 +613,36 @@ "crc32": "ce7144f6", "adler32": "8f297b47" }, + "afd060e6f35faf3bb0146fa889fc787adf56330a": { + "path": "bios/Apple/Apple II/DiskII/boot-13.rom", + "name": "boot-13.rom", + "size": 256, + "sha1": "afd060e6f35faf3bb0146fa889fc787adf56330a", + "md5": "4f80448507cf43ab40c17ac08d89e278", + "sha256": "2d2599521fc5763d4e8c308c2ee7c5c4d5c93785b8fb9a4f7d0381dfd5eb60b6", + "crc32": "d34eb2ff", + "adler32": "477d7ced" + }, + "e3d6d1c30653572b49ecc2dc54ce073978411a04": { + "path": "bios/Apple/Apple II/DiskII/state-machine-13.rom", + "name": "state-machine-13.rom", + "size": 256, + "sha1": "e3d6d1c30653572b49ecc2dc54ce073978411a04", + "md5": "897b0edef70b440133c99f65a507ebb6", + "sha256": "383c55f5333cbfde39dd41528186631e5aca2eddfec30716344f03b6a4d44655", + "crc32": "62e22620", + "adler32": "3fd367f6" + }, + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4": { + "path": "bios/Apple/Apple II/DiskII/state-machine-16.rom", + "name": "state-machine-16.rom", + "size": 256, + "sha1": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", + "md5": "5f1be0c1cdff26f5956eef9643911886", + "sha256": "e5e30615040567c1e7a2d21599681f8dac820edbdcda177b816a64d74b3a12f2", + "crc32": "b72a2c70", + "adler32": "d77768f6" + }, "e8af33c0904b422841080a5ee25935f5ea1f3781": { "path": "bios/Apple/Apple II/a2cffa02.zip", "name": "a2cffa02.zip", @@ -793,26 +823,6 @@ "crc32": "665cd50f", "adler32": "39cd4d98" }, - "afd060e6f35faf3bb0146fa889fc787adf56330a": { - "path": "bios/Apple/Apple II/disk2-13boot.rom", - "name": "disk2-13boot.rom", - "size": 256, - "sha1": "afd060e6f35faf3bb0146fa889fc787adf56330a", - "md5": "4f80448507cf43ab40c17ac08d89e278", - "sha256": "2d2599521fc5763d4e8c308c2ee7c5c4d5c93785b8fb9a4f7d0381dfd5eb60b6", - "crc32": "d34eb2ff", - "adler32": "477d7ced" - }, - "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4": { - "path": "bios/Apple/Apple II/disk2-16seq.rom", - "name": "disk2-16seq.rom", - "size": 256, - "sha1": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", - "md5": "5f1be0c1cdff26f5956eef9643911886", - "sha256": "e5e30615040567c1e7a2d21599681f8dac820edbdcda177b816a64d74b3a12f2", - "crc32": "b72a2c70", - "adler32": "d77768f6" - }, "a57f14469867ce0d0865995a645b69f41a0ea718": { "path": "bios/Apple/Apple II/votrsc01.zip", "name": "votrsc01.zip", @@ -12163,6 +12173,26 @@ "crc32": "7b9b529f", "adler32": "5d47a8ba" }, + "49248415d2f678ccdbd605b4b50197f81a0fff4d": { + "path": "bios/Arcade/MAME/astrocdl.zip", + "name": "astrocdl.zip", + "size": 6805, + "sha1": "49248415d2f678ccdbd605b4b50197f81a0fff4d", + "md5": "e7997c98fe7032510aa662979da2704c", + "sha256": "7e831730407fd06f613a3518c6328576c5b6dae967da839553305c95b320e1d5", + "crc32": "9b925dd3", + "adler32": "47bd2e0e" + }, + "cab478fe47eddc3969587e3d3f1f6f1fce51b1f2": { + "path": "bios/Arcade/MAME/astrocdw.zip", + "name": "astrocdw.zip", + "size": 6807, + "sha1": "cab478fe47eddc3969587e3d3f1f6f1fce51b1f2", + "md5": "998e0001cab4bb7353aaec0666efe0cc", + "sha256": "a1b61187d3128e7c14b34c57218a25de8c21d4275eca7e1623ca3f0bd18e15f3", + "crc32": "907bb881", + "adler32": "d6bd232d" + }, "010e3c7b17b4339fce7770f6f9b2e030e0437939": { "path": "bios/Arcade/MAME/at_mb.zip", "name": "at_mb.zip", @@ -12243,6 +12273,16 @@ "crc32": "189d94de", "adler32": "4dab0a56" }, + "f887abc58aa8faf448ee7126d670454e0cbd7f79": { + "path": "bios/Arcade/MAME/atombbc.zip", + "name": "atombbc.zip", + "size": 15974, + "sha1": "f887abc58aa8faf448ee7126d670454e0cbd7f79", + "md5": "2824962ec1a10bd879c6ee53be4e31a9", + "sha256": "ee04e21e52af9b5fd8c3f477d372e00ffe41a65afb66168dd5b7676dd5db6b7a", + "crc32": "a869351b", + "adler32": "119082ed" + }, "46d212f27a00d020beedf6cb49736813a6250dfe": { "path": "bios/Arcade/MAME/ax208.zip", "name": "ax208.zip", @@ -12873,6 +12913,16 @@ "crc32": "43289857", "adler32": "75d96a6e" }, + "4aa3cec86fb5eb0cec7d7b3c8ddfe28b7f1c7963": { + "path": "bios/Arcade/MAME/bk0010.zip", + "name": "bk0010.zip", + "size": 74578, + "sha1": "4aa3cec86fb5eb0cec7d7b3c8ddfe28b7f1c7963", + "md5": "233afba787da52646b3465d14f502e80", + "sha256": "b849f2cb6b11fb334e858dd3722dbb6b46174019d77cf72ab0ad978896068697", + "crc32": "69a54c3d", + "adler32": "aad1c053" + }, "aa6603948bc0458b386145581224352cc83054bb": { "path": "bios/Arcade/MAME/bk_altpro.zip", "name": "bk_altpro.zip", @@ -13193,6 +13243,16 @@ "crc32": "350c295e", "adler32": "70b236b8" }, + "b9c1f8b63e6a8709c06855413a21057bfd9d0a3b": { + "path": "bios/Arcade/MAME/cgenienz.zip", + "name": "cgenienz.zip", + "size": 35162, + "sha1": "b9c1f8b63e6a8709c06855413a21057bfd9d0a3b", + "md5": "8034be2e325af651ea05a9c2bf1f846e", + "sha256": "b84b7dc919b498d12a773cf670a30abd9f5ba678176862573000931b5355aabf", + "crc32": "6ba5821c", + "adler32": "85873dbf" + }, "ea1faf0f32a10d35e854d29e79b2324a6f8d081f": { "path": "bios/Arcade/MAME/cheat.7z", "name": "cheat.7z", @@ -13603,6 +13663,16 @@ "crc32": "c711330c", "adler32": "f6eef73b" }, + "8ed5ef5dbad5ef5b338381d8fed35d2282eab5ee": { + "path": "bios/Arcade/MAME/cp500.zip", + "name": "cp500.zip", + "size": 14661, + "sha1": "8ed5ef5dbad5ef5b338381d8fed35d2282eab5ee", + "md5": "9cc6dc7e13fc40107d9ae9ee41e75c55", + "sha256": "ba9fea618b2ed3b2708447a534c3b358c944e2c9a7eadc84c8f3aa281d56862e", + "crc32": "15d46860", + "adler32": "20998e41" + }, "8c5570f83750a5c2e8e0429eada3118faeb9be9a": { "path": "bios/Arcade/MAME/cpc_ddi1.zip", "name": "cpc_ddi1.zip", @@ -14053,6 +14123,16 @@ "crc32": "2ad688a1", "adler32": "9d8bc81f" }, + "b87f161a5e1e7090b15571ea1abc0bfda4acb7e2": { + "path": "bios/Arcade/MAME/eg3003.zip", + "name": "eg3003.zip", + "size": 13284, + "sha1": "b87f161a5e1e7090b15571ea1abc0bfda4acb7e2", + "md5": "e2b1a6d7017dad20463d7a9511915d07", + "sha256": "1ac0016192bd2d2feec8ce8d37e7d2ea2cc17129d49eef58e695e792a06d4c64", + "crc32": "86f19498", + "adler32": "a0075f24" + }, "385af98e27f03a788acbdfeb0d741056068eee1b": { "path": "bios/Arcade/MAME/eispc_kb.zip", "name": "eispc_kb.zip", @@ -14413,6 +14493,26 @@ "crc32": "78e4e714", "adler32": "5be18b5f" }, + "8ca22512518251dcede5dd5e34dfc911272d5283": { + "path": "bios/Arcade/MAME/fmnew7.zip", + "name": "fmnew7.zip", + "size": 26815, + "sha1": "8ca22512518251dcede5dd5e34dfc911272d5283", + "md5": "e094cd7e72cf9f63b006d040874a09c3", + "sha256": "881d1c93c3248be658cdc2c7d0c37751e4d03670d3bf9c0d0ff69662b2b0ea97", + "crc32": "41e1d3b6", + "adler32": "90e010e1" + }, + "324f9faf482d9fd208111bd6ce60edcc6cb62e44": { + "path": "bios/Arcade/MAME/fnvision.zip", + "name": "fnvision.zip", + "size": 1798, + "sha1": "324f9faf482d9fd208111bd6ce60edcc6cb62e44", + "md5": "0306212a5e8928dbd7cfe1bb89b2605c", + "sha256": "c440645ce980491103d207c13c0f7c2480b397dd9b683e2492fb7d114abd1aec", + "crc32": "12202620", + "adler32": "28285f42" + }, "aa8c5b8bd3c95b74cec03016dbe96071e619c497": { "path": "bios/Arcade/MAME/freedom220_kbd.zip", "name": "freedom220_kbd.zip", @@ -14433,6 +14533,16 @@ "crc32": "9e5a01ac", "adler32": "54a4f26c" }, + "82053430ba53e1e49f9d4646336999a938bb2b2c": { + "path": "bios/Arcade/MAME/galgames.zip", + "name": "galgames.zip", + "size": 28838, + "sha1": "82053430ba53e1e49f9d4646336999a938bb2b2c", + "md5": "829d73fce607b5413ab7c745406a4725", + "sha256": "cce1b9eeb51e54695cdffddc19fe5db4b209db58968cac6674b7fe698e69c6f1", + "crc32": "bf1a7822", + "adler32": "da311f49" + }, "f138c8df3637b804a0e5f2007af583b01c338554": { "path": "bios/Arcade/MAME/galgbios.zip", "name": "galgbios.zip", @@ -22513,6 +22623,36 @@ "crc32": "3711eb81", "adler32": "188c50d2" }, + "22ab75af32534678b1f17d429d5303528a7391de": { + "path": "bios/Arcade/MAME/ht108064.zip", + "name": "ht108064.zip", + "size": 9670, + "sha1": "22ab75af32534678b1f17d429d5303528a7391de", + "md5": "c1089c7554af37c5e092772c293273ef", + "sha256": "873939317ad9855025dfd080a2ef40400b262db6ebde02c21244c19c24292101", + "crc32": "01cb516a", + "adler32": "384d650b" + }, + "c5b2972ccb2fa533080f031d2efe5d406e582bb3": { + "path": "bios/Arcade/MAME/ht1080z.zip", + "name": "ht1080z.zip", + "size": 2168, + "sha1": "c5b2972ccb2fa533080f031d2efe5d406e582bb3", + "md5": "0d3b441b33388f42ac34a173f5487ad4", + "sha256": "a4b3310283b395680f59f08b09afe4ff854c0c8ec3d9ac57ea4bebcf1f25201f", + "crc32": "5e558ee5", + "adler32": "8e8166c2" + }, + "679bd7e5d46cbb6ad90d2b7d8646025aaa140d72": { + "path": "bios/Arcade/MAME/ht1080z2.zip", + "name": "ht1080z2.zip", + "size": 4318, + "sha1": "679bd7e5d46cbb6ad90d2b7d8646025aaa140d72", + "md5": "b7e83c2402cfbe59df6ffec8b03ef35d", + "sha256": "c0ea0075a8917387ca2897044e81185b9bb72744e01a4acfb2bf504a7000bd4b", + "crc32": "cdc5b4fd", + "adler32": "035f24ef" + }, "b6f646f43e239770122498ee4a57e5b813065c31": { "path": "bios/Arcade/MAME/human_interface.zip", "name": "human_interface.zip", @@ -22923,6 +23063,16 @@ "crc32": "925e8e01", "adler32": "a9b7580c" }, + "a1cb447855e4f9afc6e786fc36c9c11003210af7": { + "path": "bios/Arcade/MAME/lasr2001.zip", + "name": "lasr2001.zip", + "size": 12613, + "sha1": "a1cb447855e4f9afc6e786fc36c9c11003210af7", + "md5": "885f16aac5e4687cb0cbe2e65577783e", + "sha256": "d5e1cb1b1d5f1e25ee2e1b2e8d4148e4f54cf1e0a40e0e8d28aca0cc6ca3f512", + "crc32": "9447ed5b", + "adler32": "e0ae92c4" + }, "e7f951f7ea420c21a541dd57652949e4763353b0": { "path": "bios/Arcade/MAME/lc7985.zip", "name": "lc7985.zip", @@ -23153,6 +23303,16 @@ "crc32": "1b608bab", "adler32": "267e1fbe" }, + "5525769b842e301e4833553dd14e9ff29d4ab264": { + "path": "bios/Arcade/MAME/manager.zip", + "name": "manager.zip", + "size": 16564, + "sha1": "5525769b842e301e4833553dd14e9ff29d4ab264", + "md5": "4a19e5ac7653f7a0cb031381f7b6f877", + "sha256": "6c50bf3d6896c3547ba8f14f493275b47e60495658053659891ac89393a5ed91", + "crc32": "b474c90b", + "adler32": "26f7e107" + }, "8542b67124c552629ec3b4ebca5035d8db64b799": { "path": "bios/Arcade/MAME/maxaflex.zip", "name": "maxaflex.zip", @@ -24043,6 +24203,36 @@ "crc32": "4371fffc", "adler32": "dcce8182" }, + "1315246777bd061ed66051ba6141b4128d682f3c": { + "path": "bios/Arcade/MAME/pc6601.zip", + "name": "pc6601.zip", + "size": 59236, + "sha1": "1315246777bd061ed66051ba6141b4128d682f3c", + "md5": "8505da9f9a5cd36e7c39305d633d2249", + "sha256": "bd10cc7aeaf173a88bffbb6ace660a33810ae93093dd26eb1ca1cf99511b098f", + "crc32": "3f3cec58", + "adler32": "641d9e47" + }, + "645f9a7029d4e70e29853d45b85f9ebb09d716b3": { + "path": "bios/Arcade/MAME/pc6601sr.zip", + "name": "pc6601sr.zip", + "size": 152053, + "sha1": "645f9a7029d4e70e29853d45b85f9ebb09d716b3", + "md5": "b44064acf69845e923198e8808c2cf69", + "sha256": "e7519514ca6c7b9d4056fac965f687a2ac6691960eab42fa2a4b01262e2016d3", + "crc32": "73ca5c80", + "adler32": "cc41c35d" + }, + "007704fa0bc202851affae38f268487694bcae6e": { + "path": "bios/Arcade/MAME/pc8001.zip", + "name": "pc8001.zip", + "size": 60721, + "sha1": "007704fa0bc202851affae38f268487694bcae6e", + "md5": "a29b86c7ba159db7d8d016eddcd6b339", + "sha256": "c2eceeb416956391a0e54b4a66850d5156919aa7c38dee9523a19489b9a39952", + "crc32": "f551e87b", + "adler32": "e63ed389" + }, "f8df6719d8c35874be45aebb5277569aaff85363": { "path": "bios/Arcade/MAME/pc80s31.zip", "name": "pc80s31.zip", @@ -24973,6 +25163,16 @@ "crc32": "0c711f73", "adler32": "a51c83e8" }, + "f503a1df5c3ef68f508e6bb43fa19df0bed6116d": { + "path": "bios/Arcade/MAME/prophet2.zip", + "name": "prophet2.zip", + "size": 9806, + "sha1": "f503a1df5c3ef68f508e6bb43fa19df0bed6116d", + "md5": "87d44f0847f95f4ff62bf22be6b4fb21", + "sha256": "ef8f1ba01b054acc99cb0f09ee5a9aa2d6c15dbe077dac30d4a493471ae95421", + "crc32": "587bf1b0", + "adler32": "0eaaa487" + }, "ecaa559a7f32799822a2194c491d113c5cf5ba16": { "path": "bios/Arcade/MAME/ps2_keybc.zip", "name": "ps2_keybc.zip", @@ -26133,6 +26333,16 @@ "crc32": "79c0950e", "adler32": "873be7eb" }, + "acd9eaa3f155db4826b7e3416f600a30d54d10b1": { + "path": "bios/Arcade/MAME/sys80.zip", + "name": "sys80.zip", + "size": 3280, + "sha1": "acd9eaa3f155db4826b7e3416f600a30d54d10b1", + "md5": "f07ceb354dc7c7e17dc1476179ab8028", + "sha256": "516237ba0450ff504985d559ca9a210fe2ceb835b3f1dea64f31ce06c97cd247", + "crc32": "979be4ad", + "adler32": "c130f8af" + }, "66caf13d6819b16eff03a14e3623c8c25b94742c": { "path": "bios/Arcade/MAME/systemy2.zip", "name": "systemy2.zip", @@ -26283,6 +26493,16 @@ "crc32": "b5f08546", "adler32": "0fe236e4" }, + "c048ec4dd720b91f5f273c8ffbf6d1bc9aeeb13f": { + "path": "bios/Arcade/MAME/ti99_4.zip", + "name": "ti99_4.zip", + "size": 21606, + "sha1": "c048ec4dd720b91f5f273c8ffbf6d1bc9aeeb13f", + "md5": "107b41e3b01d6cba058e1deb72cbb27e", + "sha256": "1abf27dde59f57f0e0a1f6df5856a35b96de40a7f4218cc33d5103b3af57e64c", + "crc32": "b91b5783", + "adler32": "9acc901c" + }, "84c9ee5295a695c56513e50f138220b92588a7bc": { "path": "bios/Arcade/MAME/ti99_arcturus.zip", "name": "ti99_arcturus.zip", @@ -26403,6 +26623,16 @@ "crc32": "00527749", "adler32": "8c16f91b" }, + "9418ce6ac477bb91191d602b3ea661a34b7dac15": { + "path": "bios/Arcade/MAME/trs80l2.zip", + "name": "trs80l2.zip", + "size": 26298, + "sha1": "9418ce6ac477bb91191d602b3ea661a34b7dac15", + "md5": "283c9586f093d164b2390b3ead55c683", + "sha256": "f5440c7317270f83e53d34720b590ad00c80a2caf7699205ee17c1b2b3d9826c", + "crc32": "95931cfb", + "adler32": "2bdb306f" + }, "d644853823fd1d4d3285560342aadcdfb54236eb": { "path": "bios/Arcade/MAME/tsvme104.zip", "name": "tsvme104.zip", @@ -26433,6 +26663,16 @@ "crc32": "f83345ae", "adler32": "23ca8978" }, + "4e4a5d910f3ca6b933196294b0f8a82331128057": { + "path": "bios/Arcade/MAME/tvc64.zip", + "name": "tvc64.zip", + "size": 49774, + "sha1": "4e4a5d910f3ca6b933196294b0f8a82331128057", + "md5": "f27faec40d209404f5ff8dccf0fc9815", + "sha256": "6bbfe6e42835e91fee4af81feda60246d94b0c3a6871645d46411fc45fd6ea14", + "crc32": "487f0ac0", + "adler32": "9a0ea3cc" + }, "47fa5cba07a5bb8e8df156d37cff9a6eb2d74c8a": { "path": "bios/Arcade/MAME/tvga9000.zip", "name": "tvga9000.zip", @@ -29323,6 +29563,26 @@ "crc32": "4be07cb4", "adler32": "3f6e962c" }, + "3477c14e0c79faa445224dad16534f04ed143e44": { + "path": "bios/Commodore/C64/Commodore1540/1540.bin", + "name": "1540.bin", + "size": 16384, + "sha1": "3477c14e0c79faa445224dad16534f04ed143e44", + "md5": "87e849da3c87549848550fe4dd4d1aae", + "sha256": "a966e3ff6fd2db7b8f6d57e4d105c589a92e88a6705201215604ac864cc3c27f", + "crc32": "718d42b1", + "adler32": "9a3f5fe8" + }, + "f88ca9c3c9d1d383f4d348db54095c77f8597a11": { + "path": "bios/Commodore/C64/Commodore1540/1541.bin", + "name": "1541.bin", + "size": 16384, + "sha1": "f88ca9c3c9d1d383f4d348db54095c77f8597a11", + "md5": "29c8952140550858d8108cda2d2ec985", + "sha256": "df1dad21d992ebb2ddc7be49b4a8a31bc5d22909977b1c3b40096a0304340f6f", + "crc32": "fb760019", + "adler32": "505259ee" + }, "942c2150123dc30f40b3df6086132ef0a3c43948": { "path": "bios/Commodore/C64/JiffyDOS_SX-64.bin", "name": "JiffyDOS_SX-64.bin", @@ -29343,16 +29603,6 @@ "crc32": "6ec94629", "adler32": "045b2dda" }, - "3477c14e0c79faa445224dad16534f04ed143e44": { - "path": "bios/Commodore/C64/dos1540", - "name": "dos1540", - "size": 16384, - "sha1": "3477c14e0c79faa445224dad16534f04ed143e44", - "md5": "87e849da3c87549848550fe4dd4d1aae", - "sha256": "a966e3ff6fd2db7b8f6d57e4d105c589a92e88a6705201215604ac864cc3c27f", - "crc32": "718d42b1", - "adler32": "9a3f5fe8" - }, "0c61ba58269baf2b8aadf3bbc4648c7a5a6d2128": { "path": "bios/Commodore/C64/dos2000", "name": "dos2000", @@ -29403,6 +29653,66 @@ "crc32": "be5ef7bd", "adler32": "c8229a05" }, + "97814dab9d757fe5a3a61d357a9a81da588a9783": { + "path": "bios/Commodore/Plus4/kernal.318004-03.bin", + "name": "kernal.318004-03.bin", + "size": 16384, + "sha1": "97814dab9d757fe5a3a61d357a9a81da588a9783", + "md5": "4b4c383206fc5dcf8e3de1ae9fb1686b", + "sha256": "dd33af9b31a51a51ff7d6f0761af053bb815505407dd20af15ed1d6b1faffc07", + "crc32": "77bab934", + "adler32": "ef6e0e3d" + }, + "514ad3c29d01a2c0a3b143d9c1d4143b1912b793": { + "path": "bios/Commodore/Plus4/kernal.318004-04.bin", + "name": "kernal.318004-04.bin", + "size": 16384, + "sha1": "514ad3c29d01a2c0a3b143d9c1d4143b1912b793", + "md5": "971cdd88b12b568cea7582e3a1341fd3", + "sha256": "eff66bb46d6689f08607592be9520c36c8c519e1b910978fea94e013bc14aa00", + "crc32": "be54ed79", + "adler32": "d32f0d3e" + }, + "5013759f133c9b09ebe646a9b20beee08a3a0830": { + "path": "bios/Commodore/VIC-20/characters-danish.bin", + "name": "characters-danish.bin", + "size": 4096, + "sha1": "5013759f133c9b09ebe646a9b20beee08a3a0830", + "md5": "83ac5ba89ea13ef6a76cdf3d9cca2f10", + "sha256": "01e40b9b264a4445d040c76db45e6bf8a0ef357031ce0ca721eceb08f18222bc", + "crc32": "7fc11454", + "adler32": "2399f86a" + }, + "f403f0b0ce5922bd61bbd768bdd6f0b38e648c9f": { + "path": "bios/Commodore/VIC-20/characters-swedish.bin", + "name": "characters-swedish.bin", + "size": 4096, + "sha1": "f403f0b0ce5922bd61bbd768bdd6f0b38e648c9f", + "md5": "2ac2e47425b4ebccf47ccad0acac5a7b", + "sha256": "9bc60ed85cac554e66a1ad770124a92f6dbeb0ed8139ec5e294e2ba759722c53", + "crc32": "d808551d", + "adler32": "6896f888" + }, + "5b82e88293cf15992f0a53f45f8c807183a765a1": { + "path": "bios/Commodore/VIC-20/kernel-danish.bin", + "name": "kernel-danish.bin", + "size": 8192, + "sha1": "5b82e88293cf15992f0a53f45f8c807183a765a1", + "md5": "99dddc5a6877b2105e8c197edd1ac3c3", + "sha256": "d687a068c59d6002bedc0ea4e1ca88535795684860e8f4c6220dbe99f23cd985", + "crc32": "02adaf16", + "adler32": "7e66982a" + }, + "cb3e2f6e661ea7f567977751846ce9ad524651a3": { + "path": "bios/Commodore/VIC-20/kernel-swedish.bin", + "name": "kernel-swedish.bin", + "size": 8192, + "sha1": "cb3e2f6e661ea7f567977751846ce9ad524651a3", + "md5": "a65d65a8c3c287981a8205f6692d32bd", + "sha256": "15af4a4d5f474e2847272b32ed2b067ae6d201df41faa12e7d0541b343184cfa", + "crc32": "b2a60662", + "adler32": "078d7763" + }, "cc108f6c1c388df614afa7f0e959caccf0cec97a": { "path": "bios/DOS/DOSBox/.variants/bass.dll.cc108f6c", "name": "bass.dll", @@ -31413,6 +31723,36 @@ "crc32": "0636e0be", "adler32": "0ca77de6" }, + "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c": { + "path": "bios/IBM/PC Compatible/PCCompatible/BIOS_5170_15NOV85_U27_61X9266_27256.BIN", + "name": "BIOS_5170_15NOV85_U27_61X9266_27256.BIN", + "size": 32768, + "sha1": "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c", + "md5": "8fe9a1da712d95b7ca8851039124a704", + "sha256": "3b921a451d78efcd91232a01cd6936d6ba12dad4374466655aff8ef3a5dc764e", + "crc32": "4995be7a", + "adler32": "2597a959" + }, + "22ed4e2be9f948682891e2fd056a97dbea01203c": { + "path": "bios/IBM/PC Compatible/PCCompatible/BIOS_5170_15NOV85_U47_61X9265_27256.BIN", + "name": "BIOS_5170_15NOV85_U47_61X9265_27256.BIN", + "size": 32768, + "sha1": "22ed4e2be9f948682891e2fd056a97dbea01203c", + "md5": "7dd7daa849487cd449af617ad2fc0aa9", + "sha256": "aec1759a8245d50be93c9b081ab1ac7de58dd8141f603c7745ae66d2d4c29e4d", + "crc32": "c32713e4", + "adler32": "1cdedc39" + }, + "07449ebca18f979b9ab748582b736e402f2bf940": { + "path": "bios/IBM/PC Compatible/PCCompatible/ibm-basic-1.10.rom", + "name": "ibm-basic-1.10.rom", + "size": 32768, + "sha1": "07449ebca18f979b9ab748582b736e402f2bf940", + "md5": "eb28f0e8d3f641f2b58a3677b3b998cc", + "sha256": "3033d1a54c99d7e2aa1fc7c8c2e51a56ae1b61bf4e70e8aa580f43c43e37a63e", + "crc32": "ebacb791", + "adler32": "28d7e867" + }, "997bae5e5a190c5bb3b1fb9e7e3e75b2da88cb27": { "path": "bios/Id Software/Doom/.variants/DOOM.WAD.997bae5e", "name": "DOOM.WAD", @@ -36773,6 +37113,16 @@ "crc32": "fa0a90f4", "adler32": "358b4f09" }, + "b48f44194fe918aaaec5298861479512b581d661": { + "path": "bios/Nintendo/DS/dsi_nand.bin", + "name": "dsi_nand.bin", + "size": 251658304, + "sha1": "b48f44194fe918aaaec5298861479512b581d661", + "md5": "dfafb1908da8f527df7a372e649b50be", + "sha256": "f57d9bf00529bec35d58404faff029a193fd2ccda0a83403ec4e6cc32626721b", + "crc32": "416bf51a", + "adler32": "3b3e7d56" + }, "af5af53f66982e749643fdf8b2acbb7d4d3ed229": { "path": "bios/Nintendo/Famicom Disk System/.variants/disksys.rom.af5af53f", "name": "disksys.rom", @@ -37023,6 +37373,156 @@ "crc32": "6d740ae7", "adler32": "1fce3fd6" }, + "2937529b25c46e29429811829988f56f28142a41": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8723a_fw.bin", + "name": "rtl8723a_fw.bin", + "size": 24548, + "sha1": "2937529b25c46e29429811829988f56f28142a41", + "md5": "8aaacb8316460497459b0db4abd3d565", + "sha256": "756951ee36e417c0714b00547a6175d5d5decbe1e4cf7585f211019150c7cd10", + "crc32": "3894501b", + "adler32": "7f7cb946" + }, + "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8723b_fw.bin", + "name": "rtl8723b_fw.bin", + "size": 45048, + "sha1": "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096", + "md5": "b3363f17ba07a53bfd891fe1b4072e0b", + "sha256": "c9c8a9f6ebd90b7449a7e4d38ee39952dc7cc47d6c1d054e42cfbb5e4d818853", + "crc32": "11e21515", + "adler32": "2b918dc0" + }, + "a9182178ae400dd68b3e82f5f4c650001e9d1b85": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8723d_fw.bin", + "name": "rtl8723d_fw.bin", + "size": 52080, + "sha1": "a9182178ae400dd68b3e82f5f4c650001e9d1b85", + "md5": "e66f08b49eb0c8b79b175298b1be328a", + "sha256": "6b70723b2db9b658cd9535fe36f1494b4494699e1ad07920c9356f8bd90d9263", + "crc32": "dcd4b4ae", + "adler32": "0e99b277" + }, + "7eca505aad586772d66c3d6336d450c591e10670": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8761a_fw.bin", + "name": "rtl8761a_fw.bin", + "size": 74488, + "sha1": "7eca505aad586772d66c3d6336d450c591e10670", + "md5": "2111499a33cfed6582b05243167c0c5e", + "sha256": "581e5e81f5b51a29f475f8a276be95ad3210b3e3065987541c508e7f7a83a462", + "crc32": "7620da99", + "adler32": "6e9bff72" + }, + "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8761bu_fw.bin", + "name": "rtl8761bu_fw.bin", + "size": 44484, + "sha1": "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5", + "md5": "e6da3f445524756783270d0da5ddacac", + "sha256": "1d7a9597349ad89344fa16c1913d3e39e9a12e966e417ca16871bc79bbe59edb", + "crc32": "228ef039", + "adler32": "b1f11600" + }, + "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8821a_fw.bin", + "name": "rtl8821a_fw.bin", + "size": 37420, + "sha1": "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d", + "md5": "60fc67b39bfcb6311c369a3f7531cd28", + "sha256": "3ed5077f8f02ff2b06be257691dc72061efac976cd2dc174057833624c820b9d", + "crc32": "6c22568b", + "adler32": "64cf2540" + }, + "9a192c6a003390a5eab017fe79d42514ec6712e7": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8821c_fw.bin", + "name": "rtl8821c_fw.bin", + "size": 54636, + "sha1": "9a192c6a003390a5eab017fe79d42514ec6712e7", + "md5": "bf9ff07d4c7de0e241e7e3024288aa80", + "sha256": "dfe7ef772d078ec09490c02190a32fcd40b3eaf3b040049d8930eb80e6d5743c", + "crc32": "63875e8a", + "adler32": "2dd5e23d" + }, + "d5ec968f1609b1c436ad25db7d34f5e393373396": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8822b_fw.bin", + "name": "rtl8822b_fw.bin", + "size": 51176, + "sha1": "d5ec968f1609b1c436ad25db7d34f5e393373396", + "md5": "547896dc612f5e4a704e4bff8dfb908b", + "sha256": "eecef2c3b2ff03c3a41292a93a25eca6f4ec38eb4a7491a3651b530be89a04fc", + "crc32": "427b8b76", + "adler32": "e737b3d2" + }, + "08751f476d0d0aa165af020ed19d2ed1fbaeeef6": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8822cu_fw.bin", + "name": "rtl8822cu_fw.bin", + "size": 38207, + "sha1": "08751f476d0d0aa165af020ed19d2ed1fbaeeef6", + "md5": "548a63bc8b4c80bbb06dba9e8e790328", + "sha256": "09d81457457a7760b867c715517d12dd3919f9ecec7b080f2985e75f1563209f", + "crc32": "cff27ff4", + "adler32": "64b2fd23" + }, + "0e877d65077a42db4971c7f930dddc7b63047617": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8851bu_fw.bin", + "name": "rtl8851bu_fw.bin", + "size": 49760, + "sha1": "0e877d65077a42db4971c7f930dddc7b63047617", + "md5": "b6e0ab33d70199e0d0f71391318e2093", + "sha256": "7fcf88c00b2548a5ff157102a35722db5e4be655dab1ce8d9bddb6df85f88f24", + "crc32": "8f339519", + "adler32": "6d4e8d54" + }, + "24118f0e3b1ac5be44abacd4fa0bc07e2364e223": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8852au_fw.bin", + "name": "rtl8852au_fw.bin", + "size": 67188, + "sha1": "24118f0e3b1ac5be44abacd4fa0bc07e2364e223", + "md5": "5fa9abb09a6c35d11a57adcca9a2fc7b", + "sha256": "56be2eb99d36109bb5e01eee171573b6f3dd041238c01cd97ce4f01df8dbf09e", + "crc32": "cba20451", + "adler32": "70b5247f" + }, + "eb1139c1b27429eef639b6002b16212d702ad378": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8852btu_fw.bin", + "name": "rtl8852btu_fw.bin", + "size": 128140, + "sha1": "eb1139c1b27429eef639b6002b16212d702ad378", + "md5": "f0a59e994165f1864a2d2665922d51e5", + "sha256": "bd162fd3b70e805cf7a8098f22f4ddf5d89da58fafff97d87da1a1e2e0cbeb80", + "crc32": "794174c5", + "adler32": "0744d268" + }, + "22cacf5d1b9da25801cd5d6e8b7f06dff0965439": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8852bu_fw.bin", + "name": "rtl8852bu_fw.bin", + "size": 129733, + "sha1": "22cacf5d1b9da25801cd5d6e8b7f06dff0965439", + "md5": "c97273d1bf9a715c46e4fc73eb0283b3", + "sha256": "c2b0d34a4ff8a8ea136993f0dc4ba657522d84231b4094c2a53cda39afc91c57", + "crc32": "f62fd6b7", + "adler32": "26ef97a1" + }, + "acd067bdc7933d1d9b8f2d72a750de5d125a5529": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8852cu_fw.bin", + "name": "rtl8852cu_fw.bin", + "size": 113336, + "sha1": "acd067bdc7933d1d9b8f2d72a750de5d125a5529", + "md5": "c450dcda57df4a78f9ee7f338a844180", + "sha256": "9b8b27741a914c1cecc1ab9837194236890522101a57ba1898eb55f8d538dae0", + "crc32": "a25f3b3a", + "adler32": "380f0a6a" + }, + "088a3cf44d2372cdb557241bbbf519bcbbac156f": { + "path": "bios/Nintendo/GameCube/Load/Firmware/rtl_bt/rtl8922au_fw.bin", + "name": "rtl8922au_fw.bin", + "size": 71360, + "sha1": "088a3cf44d2372cdb557241bbbf519bcbbac156f", + "md5": "98acede261f6d45db5012bb6f49b5460", + "sha256": "112290ca9dc3985034f572594812f0deb8530dd031686461b55cac43a1c35a79", + "crc32": "9c62d12d", + "adler32": "4432967a" + }, "f4f683a49d7eb4155566f793f2c1c27e90159992": { "path": "bios/Nintendo/GameCube/Sys/GC/dsp_rom.bin", "name": "dsp_rom.bin", @@ -67534,8 +68034,8 @@ "adler32": "84e19e54" }, "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2": { - "path": "bios/Sega/Master System/SMS_jp_2.1.sms", - "name": "SMS_jp_2.1.sms", + "path": "bios/Sega/Master System/MasterSystem/japanese-bios.sms", + "name": "japanese-bios.sms", "size": 8192, "sha1": "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2", "md5": "24a519c53f67b00640d0048ef7089105", @@ -70783,6 +71283,16 @@ "crc32": "2c3bcd32", "adler32": "26412551" }, + "093f8698b54b78dcb701de2043f82639de51d63b": { + "path": "bios/Sony/PlayStation 3/PS3UPDAT.PUP", + "name": "PS3UPDAT.PUP", + "size": 206126236, + "sha1": "093f8698b54b78dcb701de2043f82639de51d63b", + "md5": "05fe32f5dc8c78acbcd84d36ee7fdc5b", + "sha256": "69070a95780f59fc9e0d82bcf53eb9b28fd4ed4a7d54d0a40045f80422fd98d6", + "crc32": "24bdb2db", + "adler32": "1ec0b1c3" + }, "eec337f4d127e6a2c404e4e08250d88e714a989c": { "path": "bios/Sony/PlayStation 4/shadps4/sys_modules/libSceAudiodec.sprx", "name": "libSceAudiodec.sprx", @@ -71423,6 +71933,16 @@ "crc32": "c0c3a1fe", "adler32": "ea4fd486" }, + "cc72dfcc964577cc29112ef368c28f55277c237c": { + "path": "bios/Sony/PlayStation Vita/PSVUPDAT.PUP", + "name": "PSVUPDAT.PUP", + "size": 133834240, + "sha1": "cc72dfcc964577cc29112ef368c28f55277c237c", + "md5": "f2c7b12fe85496ec88a0391b514d6e3b", + "sha256": "6ef6dc8da6db026f28647713e473486d770087a605c52a8d751bfca7478386cf", + "crc32": "39075d41", + "adler32": "75d71010" + }, "b184f1c1febf66c8168fcae0b8aa37a5754f79db": { "path": "bios/Synertek/SYM-1/SYM.ROM", "name": "SYM.ROM", @@ -72477,6 +72997,9 @@ "c9e0e059faec0393fc429131a3af4ee9": "141d18c36a617ab9dce668445440d34354be0672", "38063e08c778503fc03ecebb979769e9": "b8ea90abe135a0031065e01697c4a3a20d51198b", "2020aa1413ff77fe29353f3ee72dc295": "d4181c9f046aafc3fb326b381baac809d9e38d16", + "4f80448507cf43ab40c17ac08d89e278": "afd060e6f35faf3bb0146fa889fc787adf56330a", + "897b0edef70b440133c99f65a507ebb6": "e3d6d1c30653572b49ecc2dc54ce073978411a04", + "5f1be0c1cdff26f5956eef9643911886": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "c192973c9a3c06594f87908abaec0b66": "e8af33c0904b422841080a5ee25935f5ea1f3781", "e07ffce4500ffeac9750c427d8309d9b": "d9bb189730e15d46c27e7246d7bb23137e7d761e", "572b3005a4fa49bc54917b069b82c1ab": "33a24f5489ba9195b44be77d9afb2252594cb5c7", @@ -72495,8 +73018,6 @@ "8f7ee14ccca8ae3dd8c759497af3f09b": "799e2fc90d6bfd8cb74e331e04d5afd36f2f21a1", "2a68f049d44e326574b95c0ec638c1ca": "78008be557f643e956a106121bcc182c0fb9ea6d", "d3bef2755267a941f264fb5b288e3076": "e8c40d3a44a41a9b6b5dd3a993d7057b3bfb4086", - "4f80448507cf43ab40c17ac08d89e278": "afd060e6f35faf3bb0146fa889fc787adf56330a", - "5f1be0c1cdff26f5956eef9643911886": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "c835eab06842e3c1d6e2e7dc19289828": "a57f14469867ce0d0865995a645b69f41a0ea718", "20a0334c447cb069a040ae5be1d938df": "e4fc7560b69d062cb2da5b1ffbe11cd1ca03cc37", "64c507ce3395f96e5bbb09a13834fbba": "134eab28dcb54854013f348078fb69bfb6329a8b", @@ -73632,6 +74153,8 @@ "d3341210ea405d901ceda71a96f494e7": "61037bd8d6e9728e550171065914d24dd136cb6a", "a442fb14bc1fd7c5d7065f0ab3bd5ffc": "9798ddd8789e6cd1e48821ec7443eb424a0fb4f0", "2d72893fe121ac1757f50bd50f256b67": "b6e7515f3eddb42467990fa5b88e2862f964076a", + "e7997c98fe7032510aa662979da2704c": "49248415d2f678ccdbd605b4b50197f81a0fff4d", + "998e0001cab4bb7353aaec0666efe0cc": "cab478fe47eddc3969587e3d3f1f6f1fce51b1f2", "63536a7d7cf28d179bd7163e834486e9": "010e3c7b17b4339fce7770f6f9b2e030e0437939", "94332aa045ba7361f9a2d8c109e21e62": "8e50aaf0689071a6ebb5b9befb025bdc4988b237", "c176085a3c5316e3fb0f7fff73a6874a": "e52cf06606a152d6a6b60e30da58c3208e4dd75a", @@ -73640,6 +74163,7 @@ "dd8433d617ad57f49356de10c2f729d7": "e1a4a181fcf1b428ddb99f0392e2efd73907c709", "5fb962b4234dd15bcb39d742d50bb1a4": "d5a80dd0b4ef0d22b533a3771f374dc446b63e11", "6613d9fda06433348b8c833798db8d9a": "e66d22bcc5fa558c447cf6d83977713a3d6b394b", + "2824962ec1a10bd879c6ee53be4e31a9": "f887abc58aa8faf448ee7126d670454e0cbd7f79", "856080060731fa6907aa8b7ce593d3a7": "46d212f27a00d020beedf6cb49736813a6250dfe", "b46e6b01321e9fe8ac941b163dc62d51": "89f8673acdc9efbd09e7e7d58b9ee1b86ce0bb09", "9804e99e98370611d14628ccafe08171": "f51d7da077381f46f5d41708c5a7415b0396bdaf", @@ -73703,6 +74227,7 @@ "e9ef8a5e95889885ef37642d5fc0386a": "a2295987aedf68801e57964ed702930f49ff971a", "14ffc362d2defe2d7ade41dc580c9cd2": "23a574226bd69d48ecf62b8c5c11657fda7eeb5c", "5e91e221cdf6dc081862071fa1414c68": "334fa732e1c25902f5692449038185c5d172f537", + "233afba787da52646b3465d14f502e80": "4aa3cec86fb5eb0cec7d7b3c8ddfe28b7f1c7963", "d106c2223d252249aa8000cb7bfc86ec": "aa6603948bc0458b386145581224352cc83054bb", "7d99f5196bf330054250af8e646c1f43": "b40451fff7e0d943a45ef9b2351f60ef0e549816", "2bf5ed5cdeebc9fbe4240ed964b3c154": "e6174c71c54f6b119ec7190f69ac7a70cb241011", @@ -73735,6 +74260,7 @@ "5b6dac6f2f6803a8b5723395efb381e1": "dfcd304ec74c7812e8af9f8c2b894dfdc6b7d4c7", "8ce48d79fd21739be9e51aab7ade72fc": "8a974f1f50b60f60fae0c66e00b792d3191a246f", "50779cb9e3ea69edb3aa1f712f833d6e": "21f77f21adb7d8be6876e074dbb75723c6d38461", + "8034be2e325af651ea05a9c2bf1f846e": "b9c1f8b63e6a8709c06855413a21057bfd9d0a3b", "9228a2cd258bec1c7b5799e2b8725cd3": "ea1faf0f32a10d35e854d29e79b2324a6f8d081f", "6b675b5df4bd7dd4496c836ecdacc582": "32fc78415114a976af9c2ee53ea13de9f40b55ee", "094c4336cec68e256bbcee36afaac0b0": "f4aa4a4cb2d5d0dcb18792ed2d371887c0191982", @@ -73776,6 +74302,7 @@ "100f0a38c5b9a9d06d407a3f9a94b0e0": "587a18b400580cf022fa54b57e86ce37ac322958", "ec9468a56abcec3aeaa2a38af1ebc0c8": "80bbe123efe445d8f535d3cd12a4b1ac04a3d0fc", "72d9191ab9c6a0140997bd9f9c16370c": "28946acab6243d06ea6a1f496851065353606c5d", + "9cc6dc7e13fc40107d9ae9ee41e75c55": "8ed5ef5dbad5ef5b338381d8fed35d2282eab5ee", "b3b9afac5e39f4e9a4b59450afa5696a": "8c5570f83750a5c2e8e0429eada3118faeb9be9a", "abdd71cf446e41f0c1e54abd14174425": "949b9b362e1dc615a2e5783016207ff0d87de465", "dee15e8a3c5d0252ba8ede4e91fa7b1a": "fb79f45daf9b0df8dd9380224ed153ef5bde4196", @@ -73821,6 +74348,7 @@ "3acca09c62d2df1cfefae46d85c72f95": "2a92c7bcf518a2e5fb0734e636e619187e335d1d", "ce85cba249b16d471c8b4f9277b6266b": "3a25372585c7b0302068480daa90be510b264416", "a93b0380abf6debfc3493553362e1eb8": "12fe513ac4cc977d3c7bd6bbef25609450063b54", + "e2b1a6d7017dad20463d7a9511915d07": "b87f161a5e1e7090b15571ea1abc0bfda4acb7e2", "0e7fe405421b93b33e2bc88ffb18af52": "385af98e27f03a788acbdfeb0d741056068eee1b", "e0aca5827e15288b55152e11c3520aa1": "a8a0d26cd16c13eeb6c303f901d4b3bb0acb3ad8", "5a1ee4434eb50f5cf9a171f58331a816": "ec4f3dd45d3eebc20811a391420a28be41f17430", @@ -73857,8 +74385,11 @@ "6b26f22441740e4c79746806cc611a51": "7740229e15dd80b20a8d263a67cd37c310602ee4", "bce6a1ac528c48250cd3d6f06831d3a0": "4cc2386f152884dfe095e1a9aecaa8d7165ab81a", "65bd86eddb61af252fbe0467ea6a8c7c": "0fd9ab17e0dfd7da8d7102c3cabad3ea97fc9a87", + "e094cd7e72cf9f63b006d040874a09c3": "8ca22512518251dcede5dd5e34dfc911272d5283", + "0306212a5e8928dbd7cfe1bb89b2605c": "324f9faf482d9fd208111bd6ce60edcc6cb62e44", "c010a9b55ba6bc68a587f8ca5ce49f9e": "aa8c5b8bd3c95b74cec03016dbe96071e619c497", "b57b6e70d5242f8a5495727f32fcb54c": "fb2a6830a717b564255e93e8bbd4ddaa8895a32f", + "829d73fce607b5413ab7c745406a4725": "82053430ba53e1e49f9d4646336999a938bb2b2c", "db09438cef97fc058a07def381c10e8e": "f138c8df3637b804a0e5f2007af583b01c338554", "566b189e6abc4da26e0a6d1b7511033b": "88388f09b75fd57ef198c464d1c5850728ab12e0", "3d7d9831e64ca09b839a6ee34af146d3": "592d9187b707d719bbc68ef838f1ca1bff20e4e7", @@ -74667,6 +75198,9 @@ "57a04b907d03931daedce6e39b78b7d2": "244683ee7f099c788e1317299b80f7eb0163f1de", "a561fa520e06e2282280140add06e4f6": "eee9f82aeaba586b50aa60e7515c1d5d271f07df", "296161da75cb41fc1bba1780006a376a": "a6303b651f0155961c67921023b499089e652bfb", + "c1089c7554af37c5e092772c293273ef": "22ab75af32534678b1f17d429d5303528a7391de", + "0d3b441b33388f42ac34a173f5487ad4": "c5b2972ccb2fa533080f031d2efe5d406e582bb3", + "b7e83c2402cfbe59df6ffec8b03ef35d": "679bd7e5d46cbb6ad90d2b7d8646025aaa140d72", "fdcf391daa0bcf6effe56f9225e68387": "b6f646f43e239770122498ee4a57e5b813065c31", "3348d0412dce27e70c0bc771ed5e2ce1": "7d3363b91d27ac3ff9fb91aee36d798a5331e2be", "310aec584186a3a644c9d5ec1bdf61a1": "98d8353e47979831ea003f535c7f02e965c4a8b3", @@ -74708,6 +75242,7 @@ "4c6b4a91bffcafb3d51179383525d8d5": "1fb5142e50c2ceca5de1ae819523db52493dcef8", "37aa6f1012337a2317255502dbc6bb96": "18af12217ad5e1b0bac08d0575ae3fc6c04ca81b", "6387334d620fc1958f4db2cc6293dd22": "9c49a851331f2a6a921b245ac36443067cfb9be4", + "885f16aac5e4687cb0cbe2e65577783e": "a1cb447855e4f9afc6e786fc36c9c11003210af7", "28897c78f81d9fccde4f55068988c423": "e7f951f7ea420c21a541dd57652949e4763353b0", "9aea429be11d9bad6a25a8085eed8474": "6c6a1b6bd9bb9ced50c2d0a6b20d936bba000720", "74a0ed6ae5a559eeaf2069cfda2c73c4": "cd2601242084856146bae2bea3084930b423e744", @@ -74731,6 +75266,7 @@ "985caed89363fa0dcdb7efe3ee5a69a5": "9cea56de83f17e8746e5544664acb422aa0b4e8b", "a9d1b1a65b1581dbe33e47e0272f81c7": "f54488415cd52451e14d62a498113b2457f85625", "d419619dd384652ac6dc373caf8a9306": "65323366553276719c72fb11447de1eaa6931fa8", + "4a19e5ac7653f7a0cb031381f7b6f877": "5525769b842e301e4833553dd14e9ff29d4ab264", "130bc449ec6becd0f9efc9eccc005714": "8542b67124c552629ec3b4ebca5035d8db64b799", "97f7d6607f7942da131b5301cd23ddad": "2e37130ae76e71d3dab2a7253a6546b02488ee76", "7d04a618d9be084ee1b33baafc0a5087": "d92cc4e8fc80f98cf462e1da71e83e274af166d5", @@ -74820,6 +75356,9 @@ "b96404a7f539052be60a333e3c00c3fb": "5a4eb4b2837903a00f754cb879986f51c71ba4a9", "8a81c8109bd879911c2bed2e7808d9a4": "18889ed623d8c635966de0947076066f3732d2aa", "bb07222ba894caca2d7e270a5881d205": "e4028a5655f0428af199dd1b69c8a0da893d2f77", + "8505da9f9a5cd36e7c39305d633d2249": "1315246777bd061ed66051ba6141b4128d682f3c", + "b44064acf69845e923198e8808c2cf69": "645f9a7029d4e70e29853d45b85f9ebb09d716b3", + "a29b86c7ba159db7d8d016eddcd6b339": "007704fa0bc202851affae38f268487694bcae6e", "09b9b42544980d778006df8bd78cda31": "f8df6719d8c35874be45aebb5277569aaff85363", "c7a5b9d91afe28309915b9215e7bc818": "83b2aaf799f5b3e46411b4904d1e70148ee188bc", "05c4c65019143768d717691741abe92d": "146c7db8961d393dcb6eabaf05381398a7bb1573", @@ -74913,6 +75452,7 @@ "ffb37620c7c565785bb9182a15651826": "631ccd946400978b10ee225e008eed199027fd8c", "cb073f1fee5fc6f8856537fe49a90b9b": "f245cf9eb651d24f5d2b04efb94b9ce95469ebae", "400b158f3df620e254c3e5e367d37cb8": "2676efa358aa05adc1d41b0b8b1d3a39ba32dd73", + "87d44f0847f95f4ff62bf22be6b4fb21": "f503a1df5c3ef68f508e6bb43fa19df0bed6116d", "a216a49cbce07c7874a9f48b0c2e6ed5": "ecaa559a7f32799822a2194c491d113c5cf5ba16", "f508146013bdcef55f57c6bc7f16c8fe": "302c30ec1adb80bc239c2529b83c421cd616c821", "91b1aed905a42884f62cc3d265795bca": "cd9623de48b43c0ae2e7c49c67208c9baf6f6229", @@ -75029,6 +75569,7 @@ "cf3b2ca0baa6d00a00135fffdebf47bc": "3f61686d2f83490d884b1b57971c66f6811326fb", "da5393b609f8dab7979588f7c2429e51": "b1d8f97eb49ef80ebaf29f3a05c0f0a058a7b271", "f7bce8dcf17509a706b7b4adf59b1d04": "11e469927f7bef6f72ec4031f8261d5a4dfcb664", + "f07ceb354dc7c7e17dc1476179ab8028": "acd9eaa3f155db4826b7e3416f600a30d54d10b1", "a995337c0b8ad56b9c9a9265bc0cc3d3": "66caf13d6819b16eff03a14e3623c8c25b94742c", "4206eebec4342ee2f91c877515135587": "03e5703453dbca0c5ea4689b31524fea19eff34a", "6b4b2c4b69df198083465065fe5e62b0": "b7e480c2f41d2e5faa378b854dc4ef06941f704f", @@ -75044,6 +75585,7 @@ "021bc3d391ffe15c6310d00f6fba575a": "377eb2436e36f9899b3fe85cb6a0dc87c569d735", "dd374555e85094c8a9153ecdf0c7bb35": "2c5ededa1107d06b946f3c529d6ca9f82b7c4e31", "e421a959dfbbcd46db8eee93528dba95": "eb24030dddc87974146c2e816decbe41f2f674ef", + "107b41e3b01d6cba058e1deb72cbb27e": "c048ec4dd720b91f5f273c8ffbf6d1bc9aeeb13f", "628d54d894f1f5362569c7fec47cab39": "84c9ee5295a695c56513e50f138220b92588a7bc", "5070d754be19b51feb63bd74581f79e6": "0f701bf3ceeb4b118434f4dde98823a696142e27", "605429bd96e8381e3c8a38cac7996d24": "78f0eea2e91f00155af3346aef36f10b5aee0a1e", @@ -75056,9 +75598,11 @@ "fa1855080bd03219c0e3f828f9dfa3e5": "cab1b7a36ea5ed8b0cac88d051356f266e6cf7a6", "2bc581d9c1c6295c85bc68b27ac2fa79": "c6e4a41aaacfcca77977fae015c95970780ff9ae", "ddda7067f3f56f6ceccb9e071fd036cd": "30f16e488f105fac7f415cb5da7a97c76bc03647", + "283c9586f093d164b2390b3ead55c683": "9418ce6ac477bb91191d602b3ea661a34b7dac15", "780818e934c27fb1cd68c849d23f35b2": "d644853823fd1d4d3285560342aadcdfb54236eb", "248557f998b6f074fff4e1275c3ba45d": "ea4d7e4e6a495c63de837b84cee5d804a640d4b8", "1c419dbfdcc91163680d5f15160ea3a6": "699c99cd1d9b4d9f77f962a87433797120534836", + "f27faec40d209404f5ff8dccf0fc9815": "4e4a5d910f3ca6b933196294b0f8a82331128057", "402a97706d03a64f72894a37f80e7b8e": "47fa5cba07a5bb8e8df156d37cff9a6eb2d74c8a", "eca6134dc5dcdaed40b36bfff4c5d966": "4fcbd1d41a68a6b1ae819e5762739c7d092034cc", "0c64873b1cd274792e3dd9fda2aeadd9": "c834064178ce09979ea4a159cd86cad30b2e5ec2", @@ -75348,14 +75892,21 @@ "317f93bcbc5ee15da085a51a306f2c61": "c9ead45e6674d1042ca6199160e8583c23aeac22", "0313e31e5f31e1f739c2377792460d67": "06de7ec017a5e78bd6746d89c2ecebb646efeb19", "f0587624dcd7685710a8fdb35939617f": "ce0137ed69f003a299f43538fa9eee27898e621e", + "87e849da3c87549848550fe4dd4d1aae": "3477c14e0c79faa445224dad16534f04ed143e44", + "29c8952140550858d8108cda2d2ec985": "f88ca9c3c9d1d383f4d348db54095c77f8597a11", "f0d3aa7c5a81d1e1d3e8eeda84e9dbbe": "942c2150123dc30f40b3df6086132ef0a3c43948", "48623dd95a4f1bd8a9ecee2db19a66e5": "348eab23e920d14dfcbdd8659893ab4ef1041f80", - "87e849da3c87549848550fe4dd4d1aae": "3477c14e0c79faa445224dad16534f04ed143e44", "3019d6d5890c6054674323bac1a8ab2e": "0c61ba58269baf2b8aadf3bbc4648c7a5a6d2128", "9339ebfcb84d168856a50f869596a807": "d936d76fd8b50ce4c65f885703653d7c1bd7d3c9", "ddee89b0fed19572da5245ea68ff11b5": "3ad6cc1837c679a11f551ad1cf1a32dd84ace719", "3fb5f8c27457d602cb9c8ca3ec7f2c54": "3b887700d4a6876e76235e9b6770321a5ca884a1", "3d020f8c0e11cda0a9aa3e208d94d85a": "bc2189547e47f6bfaaa115c31dc8a35c353a384e", + "4b4c383206fc5dcf8e3de1ae9fb1686b": "97814dab9d757fe5a3a61d357a9a81da588a9783", + "971cdd88b12b568cea7582e3a1341fd3": "514ad3c29d01a2c0a3b143d9c1d4143b1912b793", + "83ac5ba89ea13ef6a76cdf3d9cca2f10": "5013759f133c9b09ebe646a9b20beee08a3a0830", + "2ac2e47425b4ebccf47ccad0acac5a7b": "f403f0b0ce5922bd61bbd768bdd6f0b38e648c9f", + "99dddc5a6877b2105e8c197edd1ac3c3": "5b82e88293cf15992f0a53f45f8c807183a765a1", + "a65d65a8c3c287981a8205f6692d32bd": "cb3e2f6e661ea7f567977751846ce9ad524651a3", "0bd7680ddf2fc81055a937b33671341a": "cc108f6c1c388df614afa7f0e959caccf0cec97a", "4483b2f2f583bf5e030163a83797c368": "f5798b9640512ba309db3b0df490ea856c125992", "22170c354d2385b6f0e53075fb782b5f": "ea0fd101ee8e6820869797e285d68ed95fd2465c", @@ -75557,6 +76108,9 @@ "8ecd11275ad418d302cd358b408b01ec": "10f1a7204f69b82a18bc94a3010c9660aec0c802", "ec2a977f0c0645dd284010160caec636": "c0ee6f9443fa82c0fef5d497b3e76aa3077f1865", "19d55c537767a7424a8e376d62fc2ac0": "72c60172fb1ba77c9b24b06b7755f0a16f0b3a13", + "8fe9a1da712d95b7ca8851039124a704": "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c", + "7dd7daa849487cd449af617ad2fc0aa9": "22ed4e2be9f948682891e2fd056a97dbea01203c", + "eb28f0e8d3f641f2b58a3677b3b998cc": "07449ebca18f979b9ab748582b736e402f2bf940", "4461d4511386518e784c647e3128e7bc": "997bae5e5a190c5bb3b1fb9e7e3e75b2da88cb27", "9aa3cbf65b961d0bdac98ec403b832e1": "c745f04a6abc2e6d2a2d52382f45500dd2a260be", "0aaba212339c72250f8a53a0a2b6189e": "d041456bea851c173f65ac6ab3f2ee61bb0b8b53", @@ -76093,6 +76647,7 @@ "3c704824663ce26b6a1ed4d85238ae5b": "87dae2500e889737af51f4a5b5845770a62482f5", "c8b9fe70f1ef5cab8e55540cd1c13dc8": "d2b17224e156ee5e55b5d8d9f323b1c9b86dd951", "3fbb3f39bd9a96e5d743f138bd4b9907": "db61fa39ddbc5f5ed71fb19cda47609ef0201723", + "dfafb1908da8f527df7a372e649b50be": "b48f44194fe918aaaec5298861479512b581d661", "d7f356acaf747090358a5bdbb2a44208": "af5af53f66982e749643fdf8b2acbb7d4d3ed229", "ca30b50f880eb660a320674ed365ef7a": "57fe1bdee955bb48d357e463ccbf129496930b62", "32fbbd84168d3482956eb3c5051637f5": "4ed31ec6b0b175bb109c0eb5fd3d193da823339f", @@ -76118,6 +76673,21 @@ "85e7f7fdeff9fa6ecb52aa0a38cd2eb4": "6f305c37dc1fbe332883bb8153eee26d3d325629", "00cff6ae2938bb37ef355385add3dc16": "f1b0ef434cd74fd8fe23698e2fc911d945b45bf1", "fae2b558ffc344467170520d62177e5c": "015808f637a984acde6a06efa7546e278293c6ee", + "8aaacb8316460497459b0db4abd3d565": "2937529b25c46e29429811829988f56f28142a41", + "b3363f17ba07a53bfd891fe1b4072e0b": "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096", + "e66f08b49eb0c8b79b175298b1be328a": "a9182178ae400dd68b3e82f5f4c650001e9d1b85", + "2111499a33cfed6582b05243167c0c5e": "7eca505aad586772d66c3d6336d450c591e10670", + "e6da3f445524756783270d0da5ddacac": "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5", + "60fc67b39bfcb6311c369a3f7531cd28": "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d", + "bf9ff07d4c7de0e241e7e3024288aa80": "9a192c6a003390a5eab017fe79d42514ec6712e7", + "547896dc612f5e4a704e4bff8dfb908b": "d5ec968f1609b1c436ad25db7d34f5e393373396", + "548a63bc8b4c80bbb06dba9e8e790328": "08751f476d0d0aa165af020ed19d2ed1fbaeeef6", + "b6e0ab33d70199e0d0f71391318e2093": "0e877d65077a42db4971c7f930dddc7b63047617", + "5fa9abb09a6c35d11a57adcca9a2fc7b": "24118f0e3b1ac5be44abacd4fa0bc07e2364e223", + "f0a59e994165f1864a2d2665922d51e5": "eb1139c1b27429eef639b6002b16212d702ad378", + "c97273d1bf9a715c46e4fc73eb0283b3": "22cacf5d1b9da25801cd5d6e8b7f06dff0965439", + "c450dcda57df4a78f9ee7f338a844180": "acd067bdc7933d1d9b8f2d72a750de5d125a5529", + "98acede261f6d45db5012bb6f49b5460": "088a3cf44d2372cdb557241bbbf519bcbbac156f", "e7af9084609780d7252cd932f93444a6": "f4f683a49d7eb4155566f793f2c1c27e90159992", "e86f52ec77df3cb893469059cc1a8dfe": "994571cfd4e76edb7abd51622b3e6cc817681d2c", "0e7eeb9b838b5ff65a57b74bc73fd30d": "eb67f1ed100a7efc8505d69e1a3a7057f53f8b97", @@ -79494,6 +80064,7 @@ "5dea62f70439682a6cee16ba3823d11e": "6eddec30056cde7c664a0cf508dcad29353a12bb", "de6da198a7359d1200c3eeb6df9c7eda": "40ecf6138c99a0aba775ef93240b295025a45500", "44552702b05697a14ccbe2ca22ee7139": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "05fe32f5dc8c78acbcd84d36ee7fdc5b": "093f8698b54b78dcb701de2043f82639de51d63b", "8013477b612e63d96fcee2244c9fc2c6": "eec337f4d127e6a2c404e4e08250d88e714a989c", "3a880f0c9dd5d330cf6a38641e34c29e": "f432cc1e121ad40d7fb826defdc0f2142cadaf40", "a1d601cdfba502e0f29e32bfc43b8c36": "4af4dc12a8b0dfe6006a60d04ed7b89cd87ca14d", @@ -79558,6 +80129,7 @@ "9647c96e5463a3185bf1d04662f1521c": "f2a9860baf277f56005c0f9e33202fcbd07b7e7e", "95f60f6c513ce31851d930407799ad29": "41d8c5c89f72206b873633ff31bcf4f82608e5a4", "8b5f60b56c3da8365b973dba570c53a5": "3ae832c9800fcaa007eccfc48f24242967c111f8", + "f2c7b12fe85496ec88a0391b514d6e3b": "cc72dfcc964577cc29112ef368c28f55277c237c", "e59fdf56762c480ba4dfe1b3ec5fb86d": "b184f1c1febf66c8168fcae0b8aa37a5754f79db", "1d33d70f35b33873fc75941d95ad1ffa": "567c5b5054552a2771eafa7966844a146f0dde96", "b81dc552536796d234c08587bac7be43": "f2fa8d8e940f1d91a1b1624013df5dca0bb1ee44", @@ -79841,6 +80413,15 @@ "AppleIIe_DiskII.rom": [ "d4181c9f046aafc3fb326b381baac809d9e38d16" ], + "boot-13.rom": [ + "afd060e6f35faf3bb0146fa889fc787adf56330a" + ], + "state-machine-13.rom": [ + "e3d6d1c30653572b49ecc2dc54ce073978411a04" + ], + "state-machine-16.rom": [ + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4" + ], "a2cffa02.zip": [ "e8af33c0904b422841080a5ee25935f5ea1f3781", "3c4372b2e6cb36a48acde655b7125aabb66007aa" @@ -79898,12 +80479,6 @@ "e8c40d3a44a41a9b6b5dd3a993d7057b3bfb4086", "5ba8555f716bd48834858d8a7f42810ab7293b12" ], - "disk2-13boot.rom": [ - "afd060e6f35faf3bb0146fa889fc787adf56330a" - ], - "disk2-16seq.rom": [ - "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4" - ], "votrsc01.zip": [ "a57f14469867ce0d0865995a645b69f41a0ea718" ], @@ -83290,6 +83865,12 @@ "ascsasi.zip": [ "b6e7515f3eddb42467990fa5b88e2862f964076a" ], + "astrocdl.zip": [ + "49248415d2f678ccdbd605b4b50197f81a0fff4d" + ], + "astrocdw.zip": [ + "cab478fe47eddc3969587e3d3f1f6f1fce51b1f2" + ], "at_mb.zip": [ "010e3c7b17b4339fce7770f6f9b2e030e0437939" ], @@ -83311,6 +83892,9 @@ "atom_vdu80.zip": [ "e66d22bcc5fa558c447cf6d83977713a3d6b394b" ], + "atombbc.zip": [ + "f887abc58aa8faf448ee7126d670454e0cbd7f79" + ], "ax208.zip": [ "46d212f27a00d020beedf6cb49736813a6250dfe" ], @@ -83473,6 +84057,9 @@ "bingoct.zip": [ "334fa732e1c25902f5692449038185c5d172f537" ], + "bk0010.zip": [ + "4aa3cec86fb5eb0cec7d7b3c8ddfe28b7f1c7963" + ], "bk_altpro.zip": [ "aa6603948bc0458b386145581224352cc83054bb" ], @@ -83549,6 +84136,9 @@ "cfp1080s.zip": [ "8a974f1f50b60f60fae0c66e00b792d3191a246f" ], + "cgenienz.zip": [ + "b9c1f8b63e6a8709c06855413a21057bfd9d0a3b" + ], "cheat.rzip": [ "f4aa4a4cb2d5d0dcb18792ed2d371887c0191982" ], @@ -83609,6 +84199,9 @@ "cp31.zip": [ "28946acab6243d06ea6a1f496851065353606c5d" ], + "cp500.zip": [ + "8ed5ef5dbad5ef5b338381d8fed35d2282eab5ee" + ], "cpc_rom.zip": [ "949b9b362e1dc615a2e5783016207ff0d87de465", "d3b68c28975704af68fb2016e1fe611d10177495" @@ -83715,6 +84308,9 @@ "dvk_kmd.zip": [ "ebfb4224df0b1c27ab7b4ab8ed542c1e8f500817" ], + "eg3003.zip": [ + "b87f161a5e1e7090b15571ea1abc0bfda4acb7e2" + ], "eispc_kb.zip": [ "385af98e27f03a788acbdfeb0d741056068eee1b" ], @@ -83805,12 +84401,21 @@ "fd148.zip": [ "0fd9ab17e0dfd7da8d7102c3cabad3ea97fc9a87" ], + "fmnew7.zip": [ + "8ca22512518251dcede5dd5e34dfc911272d5283" + ], + "fnvision.zip": [ + "324f9faf482d9fd208111bd6ce60edcc6cb62e44" + ], "freedom220_kbd.zip": [ "aa8c5b8bd3c95b74cec03016dbe96071e619c497" ], "g80_1500.zip": [ "fb2a6830a717b564255e93e8bbd4ddaa8895a32f" ], + "galgames.zip": [ + "82053430ba53e1e49f9d4646336999a938bb2b2c" + ], "geforce256.zip": [ "88388f09b75fd57ef198c464d1c5850728ab12e0" ], @@ -86211,6 +86816,15 @@ "hpblp.zip": [ "a6303b651f0155961c67921023b499089e652bfb" ], + "ht108064.zip": [ + "22ab75af32534678b1f17d429d5303528a7391de" + ], + "ht1080z.zip": [ + "c5b2972ccb2fa533080f031d2efe5d406e582bb3" + ], + "ht1080z2.zip": [ + "679bd7e5d46cbb6ad90d2b7d8646025aaa140d72" + ], "human_interface.zip": [ "b6f646f43e239770122498ee4a57e5b813065c31" ], @@ -86296,6 +86910,9 @@ "labtam_z80sbc.zip": [ "9c49a851331f2a6a921b245ac36443067cfb9be4" ], + "lasr2001.zip": [ + "a1cb447855e4f9afc6e786fc36c9c11003210af7" + ], "lc7985.zip": [ "e7f951f7ea420c21a541dd57652949e4763353b0" ], @@ -86353,6 +86970,9 @@ "mameinfo.dat": [ "65323366553276719c72fb11447de1eaa6931fa8" ], + "manager.zip": [ + "5525769b842e301e4833553dd14e9ff29d4ab264" + ], "mcx128.zip": [ "2e37130ae76e71d3dab2a7253a6546b02488ee76" ], @@ -86578,6 +87198,15 @@ "partner_gdp.zip": [ "e4028a5655f0428af199dd1b69c8a0da893d2f77" ], + "pc6601.zip": [ + "1315246777bd061ed66051ba6141b4128d682f3c" + ], + "pc6601sr.zip": [ + "645f9a7029d4e70e29853d45b85f9ebb09d716b3" + ], + "pc8001.zip": [ + "007704fa0bc202851affae38f268487694bcae6e" + ], "pc80s31.zip": [ "f8df6719d8c35874be45aebb5277569aaff85363" ], @@ -86770,6 +87399,9 @@ "promotion3210.zip": [ "2676efa358aa05adc1d41b0b8b1d3a39ba32dd73" ], + "prophet2.zip": [ + "f503a1df5c3ef68f508e6bb43fa19df0bed6116d" + ], "ps2_keybc.zip": [ "ecaa559a7f32799822a2194c491d113c5cf5ba16" ], @@ -87060,6 +87692,9 @@ "sys68k_isio1.zip": [ "11e469927f7bef6f72ec4031f8261d5a4dfcb664" ], + "sys80.zip": [ + "acd9eaa3f155db4826b7e3416f600a30d54d10b1" + ], "systemy2.zip": [ "66caf13d6819b16eff03a14e3623c8c25b94742c" ], @@ -87102,6 +87737,9 @@ "teletex800.zip": [ "eb24030dddc87974146c2e816decbe41f2f674ef" ], + "ti99_4.zip": [ + "c048ec4dd720b91f5f273c8ffbf6d1bc9aeeb13f" + ], "ti99_arcturus.zip": [ "84c9ee5295a695c56513e50f138220b92588a7bc" ], @@ -87132,6 +87770,9 @@ "trio64dx_pci.zip": [ "30f16e488f105fac7f415cb5da7a97c76bc03647" ], + "trs80l2.zip": [ + "9418ce6ac477bb91191d602b3ea661a34b7dac15" + ], "tsvme104.zip": [ "d644853823fd1d4d3285560342aadcdfb54236eb" ], @@ -87141,6 +87782,9 @@ "tv955kb.zip": [ "699c99cd1d9b4d9f77f962a87433797120534836" ], + "tvc64.zip": [ + "4e4a5d910f3ca6b933196294b0f8a82331128057" + ], "tvga9000.zip": [ "47fa5cba07a5bb8e8df156d37cff9a6eb2d74c8a" ], @@ -87983,15 +88627,18 @@ "kernal.901486-07.bin": [ "ce0137ed69f003a299f43538fa9eee27898e621e" ], + "1540.bin": [ + "3477c14e0c79faa445224dad16534f04ed143e44" + ], + "1541.bin": [ + "f88ca9c3c9d1d383f4d348db54095c77f8597a11" + ], "JiffyDOS_SX-64.bin": [ "942c2150123dc30f40b3df6086132ef0a3c43948" ], "Kernal ROM": [ "348eab23e920d14dfcbdd8659893ab4ef1041f80" ], - "dos1540": [ - "3477c14e0c79faa445224dad16534f04ed143e44" - ], "dos2000": [ "0c61ba58269baf2b8aadf3bbc4648c7a5a6d2128" ], @@ -88007,6 +88654,24 @@ "nl10-cbm": [ "bc2189547e47f6bfaaa115c31dc8a35c353a384e" ], + "kernal.318004-03.bin": [ + "97814dab9d757fe5a3a61d357a9a81da588a9783" + ], + "kernal.318004-04.bin": [ + "514ad3c29d01a2c0a3b143d9c1d4143b1912b793" + ], + "characters-danish.bin": [ + "5013759f133c9b09ebe646a9b20beee08a3a0830" + ], + "characters-swedish.bin": [ + "f403f0b0ce5922bd61bbd768bdd6f0b38e648c9f" + ], + "kernel-danish.bin": [ + "5b82e88293cf15992f0a53f45f8c807183a765a1" + ], + "kernel-swedish.bin": [ + "cb3e2f6e661ea7f567977751846ce9ad524651a3" + ], "bass.dll": [ "cc108f6c1c388df614afa7f0e959caccf0cec97a", "75c9fa407e0a027713ed563f135747fffec0590d" @@ -88594,6 +89259,15 @@ "ALI1429G.AMW": [ "72c60172fb1ba77c9b24b06b7755f0a16f0b3a13" ], + "BIOS_5170_15NOV85_U27_61X9266_27256.BIN": [ + "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c" + ], + "BIOS_5170_15NOV85_U47_61X9265_27256.BIN": [ + "22ed4e2be9f948682891e2fd056a97dbea01203c" + ], + "ibm-basic-1.10.rom": [ + "07449ebca18f979b9ab748582b736e402f2bf940" + ], "DOOM.WAD": [ "997bae5e5a190c5bb3b1fb9e7e3e75b2da88cb27", "7742089b4468a736cadb659a7deca3320fe6dcbd" @@ -90119,6 +90793,9 @@ "dsi_bios9.bin": [ "db61fa39ddbc5f5ed71fb19cda47609ef0201723" ], + "dsi_nand.bin": [ + "b48f44194fe918aaaec5298861479512b581d661" + ], "disksys.rom": [ "af5af53f66982e749643fdf8b2acbb7d4d3ed229", "57fe1bdee955bb48d357e463ccbf129496930b62" @@ -90184,6 +90861,51 @@ "gc-pal-11.bin": [ "f3cd0c7c61cbcefa85e7de3aff4cfa50bc508714" ], + "rtl8723a_fw.bin": [ + "2937529b25c46e29429811829988f56f28142a41" + ], + "rtl8723b_fw.bin": [ + "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096" + ], + "rtl8723d_fw.bin": [ + "a9182178ae400dd68b3e82f5f4c650001e9d1b85" + ], + "rtl8761a_fw.bin": [ + "7eca505aad586772d66c3d6336d450c591e10670" + ], + "rtl8761bu_fw.bin": [ + "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5" + ], + "rtl8821a_fw.bin": [ + "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d" + ], + "rtl8821c_fw.bin": [ + "9a192c6a003390a5eab017fe79d42514ec6712e7" + ], + "rtl8822b_fw.bin": [ + "d5ec968f1609b1c436ad25db7d34f5e393373396" + ], + "rtl8822cu_fw.bin": [ + "08751f476d0d0aa165af020ed19d2ed1fbaeeef6" + ], + "rtl8851bu_fw.bin": [ + "0e877d65077a42db4971c7f930dddc7b63047617" + ], + "rtl8852au_fw.bin": [ + "24118f0e3b1ac5be44abacd4fa0bc07e2364e223" + ], + "rtl8852btu_fw.bin": [ + "eb1139c1b27429eef639b6002b16212d702ad378" + ], + "rtl8852bu_fw.bin": [ + "22cacf5d1b9da25801cd5d6e8b7f06dff0965439" + ], + "rtl8852cu_fw.bin": [ + "acd067bdc7933d1d9b8f2d72a750de5d125a5529" + ], + "rtl8922au_fw.bin": [ + "088a3cf44d2372cdb557241bbbf519bcbbac156f" + ], "GFZE01.map": [ "994571cfd4e76edb7abd51622b3e6cc817681d2c" ], @@ -98413,7 +99135,7 @@ "GG_majesco.gg": [ "914aa165e3d879f060be77870d345b60cfeb4ede" ], - "SMS_jp_2.1.sms": [ + "japanese-bios.sms": [ "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2" ], "SMS_kr.sms": [ @@ -99349,6 +100071,9 @@ "rom1.bin": [ "47d2ec4b342649e4c391043ab915d4435f9d180d" ], + "PS3UPDAT.PUP": [ + "093f8698b54b78dcb701de2043f82639de51d63b" + ], "libSceAudiodec.sprx": [ "eec337f4d127e6a2c404e4e08250d88e714a989c" ], @@ -99538,6 +100263,9 @@ "PSP2UPDAT.PUP": [ "3ae832c9800fcaa007eccfc48f24242967c111f8" ], + "PSVUPDAT.PUP": [ + "cc72dfcc964577cc29112ef368c28f55277c237c" + ], "coco.zip": [ "567c5b5054552a2771eafa7966844a146f0dde96", "e31fbbb831f32886e57410183bc4e85d36c2dc7a" @@ -99828,6 +100556,15 @@ "cpc_amsdos.rom": [ "39102c8e9cb55fcc0b9b62098780ed4a3cb6a4bb" ], + "boot-16.rom": [ + "d4181c9f046aafc3fb326b381baac809d9e38d16" + ], + "disk2-16boot.rom": [ + "d4181c9f046aafc3fb326b381baac809d9e38d16" + ], + "c600.rom": [ + "d4181c9f046aafc3fb326b381baac809d9e38d16" + ], "apple2gs.rom2": [ "bc32bc0e8902946663998f56aea52be597d9e361" ], @@ -99840,14 +100577,18 @@ "ROM.ROM": [ "bc32bc0e8902946663998f56aea52be597d9e361" ], + "disk2-13boot.rom": [ + "afd060e6f35faf3bb0146fa889fc787adf56330a" + ], "disk2-13seq.rom": [ "afd060e6f35faf3bb0146fa889fc787adf56330a" ], - "disk2-16boot.rom": [ - "d4181c9f046aafc3fb326b381baac809d9e38d16" + "disk2-16seq.rom": [ + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4" ], - "c600.rom": [ - "d4181c9f046aafc3fb326b381baac809d9e38d16" + "d2fdc.zip": [ + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", + "af56c948598291b284a528f3fce06b961dba55e3" ], "a1000kbd_dk.zip": [ "93d36de4d5d376c521a9ca99722f659e60d177f2" @@ -100307,10 +101048,6 @@ "cpc_ssa1.zip": [ "d3b68c28975704af68fb2016e1fe611d10177495" ], - "d2fdc.zip": [ - "af56c948598291b284a528f3fce06b961dba55e3", - "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4" - ], "d9090.zip": [ "d375f64dc02703eee6751bd9723978c6633348c9" ], @@ -100854,6 +101591,9 @@ "dos1001": [ "d50b093828888146596f17ae0df9ef3dfde71b05" ], + "dos1540": [ + "3477c14e0c79faa445224dad16534f04ed143e44" + ], "dos1570": [ "5fc06dc82ff6840f183bd43a4d9b8a16956b2f56" ], @@ -100890,6 +101630,12 @@ "kernal.318004-05.bin": [ "7c7e07f016391174a557e790c4ef1cbe33512cdb" ], + "characters-japanese.bin": [ + "dae61ac03065aa2904af5c123ce821855898c555" + ], + "kernel-japanese.bin": [ + "c9ead45e6674d1042ca6199160e8583c23aeac22" + ], "basic.bin": [ "587d1e90950675ab6b12d91248a3f0d640d02e8d" ], @@ -101681,6 +102427,9 @@ "bios.gg": [ "914aa165e3d879f060be77870d345b60cfeb4ede" ], + "SMS_jp_2.1.sms": [ + "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2" + ], "[BIOS] Sega Master System (Japan) (v2.1).sms": [ "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2" ], @@ -102402,9 +103151,6 @@ "ts1500.zxpand.ovl": [ "0334b35f164089df7b2a82d46fa0ec6e43fafa90" ], - "tvc64.zip": [ - "abf119cf947ea32defd08b29a8a25d75f6bd4987" - ], "TVC22_D7.64K": [ "abf119cf947ea32defd08b29a8a25d75f6bd4987" ], @@ -102447,24 +103193,6 @@ "EXOS21.ROM": [ "55315b20fecb4441a07ee4bc5dc7153f396e0a2e" ], - "bk0010.zip": [ - "4e83a94ae5155bbea14d7331a5a8db82457bd5ae", - "34fa37599f2f9eb607390ef2458a3c22d87f09a9", - "f087af69044432a1ef2431a72ac06946e32f2dd3", - "7e9a30e38d7b78981999821640a68a201bb6df01" - ], - "monit10.rom": [ - "4e83a94ae5155bbea14d7331a5a8db82457bd5ae" - ], - "bas11m_1.rom": [ - "34fa37599f2f9eb607390ef2458a3c22d87f09a9" - ], - "b11m_ext.rom": [ - "f087af69044432a1ef2431a72ac06946e32f2dd3" - ], - "b11m_bos.rom": [ - "7e9a30e38d7b78981999821640a68a201bb6df01" - ], "sony-playstation:239665b1a3dade1b5a52c06338011044": [ "343883a7b555646da8cee54aadd2795b6e7dd070" ], @@ -103237,15 +103965,27 @@ "Kickstart v3.0 rev 39.106 (1992)(Commodore)(A4000)[!].rom": [ "f0b4e9e29e12218c2d5bd7020e4e785297d91fd7" ], + "monit10.rom": [ + "4e83a94ae5155bbea14d7331a5a8db82457bd5ae" + ], "focal10.rom": [ "6386e58bc1bba5e76baec9e8a1ca4b99dc3c573f" ], "disk_327.rom": [ "28eefbb63047b26e4aec104aeeca74e2f9d0276c" ], + "b11m_bos.rom": [ + "7e9a30e38d7b78981999821640a68a201bb6df01" + ], + "b11m_ext.rom": [ + "f087af69044432a1ef2431a72ac06946e32f2dd3" + ], "bas11m_0.rom": [ "9d76f3eefd64e032c763fa1ebf9cd3d9bd22317a" ], + "bas11m_1.rom": [ + "34fa37599f2f9eb607390ef2458a3c22d87f09a9" + ], "terak.rom": [ "273a9933b68a290c5aedcd6d69faa7b1d22c0344" ], @@ -103498,6 +104238,9 @@ "e1c11fb0": "141d18c36a617ab9dce668445440d34354be0672", "1d70b193": "b8ea90abe135a0031065e01697c4a3a20d51198b", "ce7144f6": "d4181c9f046aafc3fb326b381baac809d9e38d16", + "d34eb2ff": "afd060e6f35faf3bb0146fa889fc787adf56330a", + "62e22620": "e3d6d1c30653572b49ecc2dc54ce073978411a04", + "b72a2c70": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "669f3e91": "e8af33c0904b422841080a5ee25935f5ea1f3781", "1dcd4719": "d9bb189730e15d46c27e7246d7bb23137e7d761e", "1d05c1b1": "33a24f5489ba9195b44be77d9afb2252594cb5c7", @@ -103516,8 +104259,6 @@ "4f923a35": "799e2fc90d6bfd8cb74e331e04d5afd36f2f21a1", "ba210588": "78008be557f643e956a106121bcc182c0fb9ea6d", "665cd50f": "e8c40d3a44a41a9b6b5dd3a993d7057b3bfb4086", - "d34eb2ff": "afd060e6f35faf3bb0146fa889fc787adf56330a", - "b72a2c70": "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "6105d2ee": "a57f14469867ce0d0865995a645b69f41a0ea718", "42f124b0": "e4fc7560b69d062cb2da5b1ffbe11cd1ca03cc37", "30f5d7a6": "134eab28dcb54854013f348078fb69bfb6329a8b", @@ -104653,6 +105394,8 @@ "932ead94": "61037bd8d6e9728e550171065914d24dd136cb6a", "c4e8400a": "9798ddd8789e6cd1e48821ec7443eb424a0fb4f0", "7b9b529f": "b6e7515f3eddb42467990fa5b88e2862f964076a", + "9b925dd3": "49248415d2f678ccdbd605b4b50197f81a0fff4d", + "907bb881": "cab478fe47eddc3969587e3d3f1f6f1fce51b1f2", "ff038b4e": "010e3c7b17b4339fce7770f6f9b2e030e0437939", "37db4b10": "8e50aaf0689071a6ebb5b9befb025bdc4988b237", "48feafca": "e52cf06606a152d6a6b60e30da58c3208e4dd75a", @@ -104661,6 +105404,7 @@ "6d390d30": "e1a4a181fcf1b428ddb99f0392e2efd73907c709", "784c4fe0": "d5a80dd0b4ef0d22b533a3771f374dc446b63e11", "189d94de": "e66d22bcc5fa558c447cf6d83977713a3d6b394b", + "a869351b": "f887abc58aa8faf448ee7126d670454e0cbd7f79", "22e06d6f": "46d212f27a00d020beedf6cb49736813a6250dfe", "f8ea5108": "89f8673acdc9efbd09e7e7d58b9ee1b86ce0bb09", "e05783c7": "f51d7da077381f46f5d41708c5a7415b0396bdaf", @@ -104724,6 +105468,7 @@ "4e77b305": "a2295987aedf68801e57964ed702930f49ff971a", "196b4698": "23a574226bd69d48ecf62b8c5c11657fda7eeb5c", "43289857": "334fa732e1c25902f5692449038185c5d172f537", + "69a54c3d": "4aa3cec86fb5eb0cec7d7b3c8ddfe28b7f1c7963", "7c14fc96": "aa6603948bc0458b386145581224352cc83054bb", "ebd69de6": "b40451fff7e0d943a45ef9b2351f60ef0e549816", "2e4b03a6": "e6174c71c54f6b119ec7190f69ac7a70cb241011", @@ -104756,6 +105501,7 @@ "2da2e9af": "dfcd304ec74c7812e8af9f8c2b894dfdc6b7d4c7", "3cfc0a5b": "8a974f1f50b60f60fae0c66e00b792d3191a246f", "350c295e": "21f77f21adb7d8be6876e074dbb75723c6d38461", + "6ba5821c": "b9c1f8b63e6a8709c06855413a21057bfd9d0a3b", "27653476": "ea1faf0f32a10d35e854d29e79b2324a6f8d081f", "7d42a59c": "32fc78415114a976af9c2ee53ea13de9f40b55ee", "31c6c7f0": "f4aa4a4cb2d5d0dcb18792ed2d371887c0191982", @@ -104797,6 +105543,7 @@ "1add2a6a": "587a18b400580cf022fa54b57e86ce37ac322958", "bef34a63": "80bbe123efe445d8f535d3cd12a4b1ac04a3d0fc", "c711330c": "28946acab6243d06ea6a1f496851065353606c5d", + "15d46860": "8ed5ef5dbad5ef5b338381d8fed35d2282eab5ee", "a3622763": "8c5570f83750a5c2e8e0429eada3118faeb9be9a", "882224f3": "949b9b362e1dc615a2e5783016207ff0d87de465", "ff063188": "fb79f45daf9b0df8dd9380224ed153ef5bde4196", @@ -104842,6 +105589,7 @@ "b6f2ff84": "2a92c7bcf518a2e5fb0734e636e619187e335d1d", "c65b5238": "3a25372585c7b0302068480daa90be510b264416", "2ad688a1": "12fe513ac4cc977d3c7bd6bbef25609450063b54", + "86f19498": "b87f161a5e1e7090b15571ea1abc0bfda4acb7e2", "541ba2d2": "385af98e27f03a788acbdfeb0d741056068eee1b", "3886dcdd": "a8a0d26cd16c13eeb6c303f901d4b3bb0acb3ad8", "53b51ef4": "ec4f3dd45d3eebc20811a391420a28be41f17430", @@ -104878,8 +105626,11 @@ "bc0bcd50": "7740229e15dd80b20a8d263a67cd37c310602ee4", "a0f14f1b": "4cc2386f152884dfe095e1a9aecaa8d7165ab81a", "78e4e714": "0fd9ab17e0dfd7da8d7102c3cabad3ea97fc9a87", + "41e1d3b6": "8ca22512518251dcede5dd5e34dfc911272d5283", + "12202620": "324f9faf482d9fd208111bd6ce60edcc6cb62e44", "14ec7faf": "aa8c5b8bd3c95b74cec03016dbe96071e619c497", "9e5a01ac": "fb2a6830a717b564255e93e8bbd4ddaa8895a32f", + "bf1a7822": "82053430ba53e1e49f9d4646336999a938bb2b2c", "13cf5451": "f138c8df3637b804a0e5f2007af583b01c338554", "92d97106": "88388f09b75fd57ef198c464d1c5850728ab12e0", "b4a762ca": "592d9187b707d719bbc68ef838f1ca1bff20e4e7", @@ -105688,6 +106439,9 @@ "50351740": "244683ee7f099c788e1317299b80f7eb0163f1de", "b06d2fb7": "eee9f82aeaba586b50aa60e7515c1d5d271f07df", "3711eb81": "a6303b651f0155961c67921023b499089e652bfb", + "01cb516a": "22ab75af32534678b1f17d429d5303528a7391de", + "5e558ee5": "c5b2972ccb2fa533080f031d2efe5d406e582bb3", + "cdc5b4fd": "679bd7e5d46cbb6ad90d2b7d8646025aaa140d72", "68aa9a2d": "b6f646f43e239770122498ee4a57e5b813065c31", "d96ae405": "7d3363b91d27ac3ff9fb91aee36d798a5331e2be", "c62b6ec9": "98d8353e47979831ea003f535c7f02e965c4a8b3", @@ -105729,6 +106483,7 @@ "35a18a47": "1fb5142e50c2ceca5de1ae819523db52493dcef8", "b983922b": "18af12217ad5e1b0bac08d0575ae3fc6c04ca81b", "925e8e01": "9c49a851331f2a6a921b245ac36443067cfb9be4", + "9447ed5b": "a1cb447855e4f9afc6e786fc36c9c11003210af7", "6fa725b4": "e7f951f7ea420c21a541dd57652949e4763353b0", "218bd4ae": "6c6a1b6bd9bb9ced50c2d0a6b20d936bba000720", "730a9506": "cd2601242084856146bae2bea3084930b423e744", @@ -105752,6 +106507,7 @@ "21d5718d": "9cea56de83f17e8746e5544664acb422aa0b4e8b", "c70c5280": "f54488415cd52451e14d62a498113b2457f85625", "1b608bab": "65323366553276719c72fb11447de1eaa6931fa8", + "b474c90b": "5525769b842e301e4833553dd14e9ff29d4ab264", "171fcf96": "8542b67124c552629ec3b4ebca5035d8db64b799", "db668576": "2e37130ae76e71d3dab2a7253a6546b02488ee76", "06bae326": "d92cc4e8fc80f98cf462e1da71e83e274af166d5", @@ -105841,6 +106597,9 @@ "ec9d3538": "5a4eb4b2837903a00f754cb879986f51c71ba4a9", "9b9f87d3": "18889ed623d8c635966de0947076066f3732d2aa", "4371fffc": "e4028a5655f0428af199dd1b69c8a0da893d2f77", + "3f3cec58": "1315246777bd061ed66051ba6141b4128d682f3c", + "73ca5c80": "645f9a7029d4e70e29853d45b85f9ebb09d716b3", + "f551e87b": "007704fa0bc202851affae38f268487694bcae6e", "17b45837": "f8df6719d8c35874be45aebb5277569aaff85363", "4488e7ba": "83b2aaf799f5b3e46411b4904d1e70148ee188bc", "c1d7c215": "146c7db8961d393dcb6eabaf05381398a7bb1573", @@ -105934,6 +106693,7 @@ "f664776b": "631ccd946400978b10ee225e008eed199027fd8c", "95218e6f": "f245cf9eb651d24f5d2b04efb94b9ce95469ebae", "0c711f73": "2676efa358aa05adc1d41b0b8b1d3a39ba32dd73", + "587bf1b0": "f503a1df5c3ef68f508e6bb43fa19df0bed6116d", "36428f3a": "ecaa559a7f32799822a2194c491d113c5cf5ba16", "d74af409": "302c30ec1adb80bc239c2529b83c421cd616c821", "b9f15bc6": "cd9623de48b43c0ae2e7c49c67208c9baf6f6229", @@ -106050,6 +106810,7 @@ "fedcfead": "3f61686d2f83490d884b1b57971c66f6811326fb", "2fd54aba": "b1d8f97eb49ef80ebaf29f3a05c0f0a058a7b271", "79c0950e": "11e469927f7bef6f72ec4031f8261d5a4dfcb664", + "979be4ad": "acd9eaa3f155db4826b7e3416f600a30d54d10b1", "d6f68eee": "66caf13d6819b16eff03a14e3623c8c25b94742c", "02c5bacb": "03e5703453dbca0c5ea4689b31524fea19eff34a", "dca259d8": "b7e480c2f41d2e5faa378b854dc4ef06941f704f", @@ -106065,6 +106826,7 @@ "6afcb176": "377eb2436e36f9899b3fe85cb6a0dc87c569d735", "1620e21c": "2c5ededa1107d06b946f3c529d6ca9f82b7c4e31", "b5f08546": "eb24030dddc87974146c2e816decbe41f2f674ef", + "b91b5783": "c048ec4dd720b91f5f273c8ffbf6d1bc9aeeb13f", "f6b0d18a": "84c9ee5295a695c56513e50f138220b92588a7bc", "69030843": "0f701bf3ceeb4b118434f4dde98823a696142e27", "fe90ec2f": "78f0eea2e91f00155af3346aef36f10b5aee0a1e", @@ -106077,9 +106839,11 @@ "ddbb7e21": "cab1b7a36ea5ed8b0cac88d051356f266e6cf7a6", "ba2acb61": "c6e4a41aaacfcca77977fae015c95970780ff9ae", "00527749": "30f16e488f105fac7f415cb5da7a97c76bc03647", + "95931cfb": "9418ce6ac477bb91191d602b3ea661a34b7dac15", "680e61a0": "d644853823fd1d4d3285560342aadcdfb54236eb", "3395994f": "ea4d7e4e6a495c63de837b84cee5d804a640d4b8", "f83345ae": "699c99cd1d9b4d9f77f962a87433797120534836", + "487f0ac0": "4e4a5d910f3ca6b933196294b0f8a82331128057", "0c3af02c": "47fa5cba07a5bb8e8df156d37cff9a6eb2d74c8a", "237f5ae3": "4fcbd1d41a68a6b1ae819e5762739c7d092034cc", "2ec71d6a": "c834064178ce09979ea4a159cd86cad30b2e5ec2", @@ -106369,14 +107133,21 @@ "336900d7": "c9ead45e6674d1042ca6199160e8583c23aeac22", "e5e7c174": "06de7ec017a5e78bd6746d89c2ecebb646efeb19", "4be07cb4": "ce0137ed69f003a299f43538fa9eee27898e621e", + "718d42b1": "3477c14e0c79faa445224dad16534f04ed143e44", + "fb760019": "f88ca9c3c9d1d383f4d348db54095c77f8597a11", "2b5a88f5": "942c2150123dc30f40b3df6086132ef0a3c43948", "6ec94629": "348eab23e920d14dfcbdd8659893ab4ef1041f80", - "718d42b1": "3477c14e0c79faa445224dad16534f04ed143e44", "4e6ca15c": "0c61ba58269baf2b8aadf3bbc4648c7a5a6d2128", "b563ef10": "d936d76fd8b50ce4c65f885703653d7c1bd7d3c9", "505365d4": "3ad6cc1837c679a11f551ad1cf1a32dd84ace719", "74f9282d": "3b887700d4a6876e76235e9b6770321a5ca884a1", "be5ef7bd": "bc2189547e47f6bfaaa115c31dc8a35c353a384e", + "77bab934": "97814dab9d757fe5a3a61d357a9a81da588a9783", + "be54ed79": "514ad3c29d01a2c0a3b143d9c1d4143b1912b793", + "7fc11454": "5013759f133c9b09ebe646a9b20beee08a3a0830", + "d808551d": "f403f0b0ce5922bd61bbd768bdd6f0b38e648c9f", + "02adaf16": "5b82e88293cf15992f0a53f45f8c807183a765a1", + "b2a60662": "cb3e2f6e661ea7f567977751846ce9ad524651a3", "e644d029": "cc108f6c1c388df614afa7f0e959caccf0cec97a", "006d0b83": "f5798b9640512ba309db3b0df490ea856c125992", "0484b9c5": "ea0fd101ee8e6820869797e285d68ed95fd2465c", @@ -106578,6 +107349,9 @@ "0f3e6586": "10f1a7204f69b82a18bc94a3010c9660aec0c802", "e75945f3": "c0ee6f9443fa82c0fef5d497b3e76aa3077f1865", "0636e0be": "72c60172fb1ba77c9b24b06b7755f0a16f0b3a13", + "4995be7a": "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c", + "c32713e4": "22ed4e2be9f948682891e2fd056a97dbea01203c", + "ebacb791": "07449ebca18f979b9ab748582b736e402f2bf940", "cff03d9f": "997bae5e5a190c5bb3b1fb9e7e3e75b2da88cb27", "09b8a6ae": "c745f04a6abc2e6d2a2d52382f45500dd2a260be", "65816192": "d041456bea851c173f65ac6ab3f2ee61bb0b8b53", @@ -107114,6 +107888,7 @@ "13046805": "87dae2500e889737af51f4a5b5845770a62482f5", "67d145dc": "d2b17224e156ee5e55b5d8d9f323b1c9b86dd951", "fa0a90f4": "db61fa39ddbc5f5ed71fb19cda47609ef0201723", + "416bf51a": "b48f44194fe918aaaec5298861479512b581d661", "1c7ae5d5": "af5af53f66982e749643fdf8b2acbb7d4d3ed229", "5e607dcf": "57fe1bdee955bb48d357e463ccbf129496930b62", "59c8598e": "4ed31ec6b0b175bb109c0eb5fd3d193da823339f", @@ -107139,6 +107914,21 @@ "dd8cab7c": "6f305c37dc1fbe332883bb8153eee26d3d325629", "8bdabbd4": "f1b0ef434cd74fd8fe23698e2fc911d945b45bf1", "6d740ae7": "015808f637a984acde6a06efa7546e278293c6ee", + "3894501b": "2937529b25c46e29429811829988f56f28142a41", + "11e21515": "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096", + "dcd4b4ae": "a9182178ae400dd68b3e82f5f4c650001e9d1b85", + "7620da99": "7eca505aad586772d66c3d6336d450c591e10670", + "228ef039": "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5", + "6c22568b": "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d", + "63875e8a": "9a192c6a003390a5eab017fe79d42514ec6712e7", + "427b8b76": "d5ec968f1609b1c436ad25db7d34f5e393373396", + "cff27ff4": "08751f476d0d0aa165af020ed19d2ed1fbaeeef6", + "8f339519": "0e877d65077a42db4971c7f930dddc7b63047617", + "cba20451": "24118f0e3b1ac5be44abacd4fa0bc07e2364e223", + "794174c5": "eb1139c1b27429eef639b6002b16212d702ad378", + "f62fd6b7": "22cacf5d1b9da25801cd5d6e8b7f06dff0965439", + "a25f3b3a": "acd067bdc7933d1d9b8f2d72a750de5d125a5529", + "9c62d12d": "088a3cf44d2372cdb557241bbbf519bcbbac156f", "75603d9e": "f4f683a49d7eb4155566f793f2c1c27e90159992", "106d7752": "994571cfd4e76edb7abd51622b3e6cc817681d2c", "ddaf780a": "eb67f1ed100a7efc8505d69e1a3a7057f53f8b97", @@ -110515,6 +111305,7 @@ "0b805686": "6eddec30056cde7c664a0cf508dcad29353a12bb", "a3e573a0": "40ecf6138c99a0aba775ef93240b295025a45500", "2c3bcd32": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "24bdb2db": "093f8698b54b78dcb701de2043f82639de51d63b", "961ab43e": "eec337f4d127e6a2c404e4e08250d88e714a989c", "8d63e4ba": "f432cc1e121ad40d7fb826defdc0f2142cadaf40", "a3b42bcd": "4af4dc12a8b0dfe6006a60d04ed7b89cd87ca14d", @@ -110579,6 +111370,7 @@ "50da333e": "f2a9860baf277f56005c0f9e33202fcbd07b7e7e", "15b438bd": "41d8c5c89f72206b873633ff31bcf4f82608e5a4", "c0c3a1fe": "3ae832c9800fcaa007eccfc48f24242967c111f8", + "39075d41": "cc72dfcc964577cc29112ef368c28f55277c237c", "44295096": "b184f1c1febf66c8168fcae0b8aa37a5754f79db", "31c53421": "567c5b5054552a2771eafa7966844a146f0dde96", "d13aefe2": "f2fa8d8e940f1d91a1b1624013df5dca0bb1ee44", @@ -110689,6 +111481,15 @@ "mame/samples/bbc.zip": [ "46d4a5a34443506160457db43f79d766e5383820" ], + "DiskII/boot-13.rom": [ + "afd060e6f35faf3bb0146fa889fc787adf56330a" + ], + "DiskII/state-machine-13.rom": [ + "e3d6d1c30653572b49ecc2dc54ce073978411a04" + ], + "DiskII/state-machine-16.rom": [ + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4" + ], ".variants/airlbios.zip": [ "f2a730530f4989ca0e8860aa4e455b6a5fe69e1d" ], @@ -114148,6 +114949,12 @@ "vice/VIC20/kernal.901486-07.bin": [ "ce0137ed69f003a299f43538fa9eee27898e621e" ], + "Commodore1540/1540.bin": [ + "3477c14e0c79faa445224dad16534f04ed143e44" + ], + "Commodore1540/1541.bin": [ + "f88ca9c3c9d1d383f4d348db54095c77f8597a11" + ], ".variants/bass.dll.cc108f6c": [ "cc108f6c1c388df614afa7f0e959caccf0cec97a" ], @@ -114352,6 +115159,15 @@ "win486/ALI1429G.AMW": [ "72c60172fb1ba77c9b24b06b7755f0a16f0b3a13" ], + "PCCompatible/BIOS_5170_15NOV85_U27_61X9266_27256.BIN": [ + "8e8e5c863ae3b8c55fd394e345d8cca48b6e575c" + ], + "PCCompatible/BIOS_5170_15NOV85_U47_61X9265_27256.BIN": [ + "22ed4e2be9f948682891e2fd056a97dbea01203c" + ], + "PCCompatible/ibm-basic-1.10.rom": [ + "07449ebca18f979b9ab748582b736e402f2bf940" + ], ".variants/DOOM.WAD.997bae5e": [ "997bae5e5a190c5bb3b1fb9e7e3e75b2da88cb27" ], @@ -115516,6 +116332,51 @@ "GC/USA/.variants/IPL.bin.015808f6": [ "015808f637a984acde6a06efa7546e278293c6ee" ], + "Load/Firmware/rtl_bt/rtl8723a_fw.bin": [ + "2937529b25c46e29429811829988f56f28142a41" + ], + "Load/Firmware/rtl_bt/rtl8723b_fw.bin": [ + "5c43fb17ef04a2ee13f9e697f685f68f0d0d1096" + ], + "Load/Firmware/rtl_bt/rtl8723d_fw.bin": [ + "a9182178ae400dd68b3e82f5f4c650001e9d1b85" + ], + "Load/Firmware/rtl_bt/rtl8761a_fw.bin": [ + "7eca505aad586772d66c3d6336d450c591e10670" + ], + "Load/Firmware/rtl_bt/rtl8761bu_fw.bin": [ + "f5bf3a7fc9605ee31b3904d64b89ce0fa3d9eaf5" + ], + "Load/Firmware/rtl_bt/rtl8821a_fw.bin": [ + "0183b48cda05bd4aed70b9f0b762eea5d2fc3b1d" + ], + "Load/Firmware/rtl_bt/rtl8821c_fw.bin": [ + "9a192c6a003390a5eab017fe79d42514ec6712e7" + ], + "Load/Firmware/rtl_bt/rtl8822b_fw.bin": [ + "d5ec968f1609b1c436ad25db7d34f5e393373396" + ], + "Load/Firmware/rtl_bt/rtl8822cu_fw.bin": [ + "08751f476d0d0aa165af020ed19d2ed1fbaeeef6" + ], + "Load/Firmware/rtl_bt/rtl8851bu_fw.bin": [ + "0e877d65077a42db4971c7f930dddc7b63047617" + ], + "Load/Firmware/rtl_bt/rtl8852au_fw.bin": [ + "24118f0e3b1ac5be44abacd4fa0bc07e2364e223" + ], + "Load/Firmware/rtl_bt/rtl8852btu_fw.bin": [ + "eb1139c1b27429eef639b6002b16212d702ad378" + ], + "Load/Firmware/rtl_bt/rtl8852bu_fw.bin": [ + "22cacf5d1b9da25801cd5d6e8b7f06dff0965439" + ], + "Load/Firmware/rtl_bt/rtl8852cu_fw.bin": [ + "acd067bdc7933d1d9b8f2d72a750de5d125a5529" + ], + "Load/Firmware/rtl_bt/rtl8922au_fw.bin": [ + "088a3cf44d2372cdb557241bbbf519bcbbac156f" + ], "Sys/GC/dsp_rom.bin": [ "f4f683a49d7eb4155566f793f2c1c27e90159992" ], @@ -123883,6 +124744,9 @@ ".variants/hikaru.zip": [ "de2734b2110864ada20f85ca6ba7874ed1e6ecb1" ], + "MasterSystem/japanese-bios.sms": [ + "a8c1b39a2e41137835eda6a5de6d46dd9fadbaf2" + ], ".variants/megacd_v100g_jp.bin": [ "6a40a5cec00c3b49a4fd013505c5580baa733a29" ], @@ -124292,6 +125156,7 @@ "c389af32bcadf0d86826927dc3d20b7072f90069", "39102c8e9cb55fcc0b9b62098780ed4a3cb6a4bb", "bc32bc0e8902946663998f56aea52be597d9e361", + "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "93d36de4d5d376c521a9ca99722f659e60d177f2", "e35eda0cc2c11da92c0a6c222f314d84e623b29e", "9ecb4cae3fe19cd3faef4a22fe5d3a189ac8810c", @@ -124539,14 +125404,9 @@ "2b8cb4f87580683eb4d760e4ed210813d667f0a2", "70033828182fffc7ed106e5373a8b89dda76faa5", "44620f57a25f0bcac2b57ca2b0f1ebad3bf305d3", - "bc39fbd5b9a8d2287ac5d0a42e639fc4d3c2f9d4", "9451a1a09d8f75944dbd6f91193fc360f1de80ac", "03bbb386cf530e804363acdfc1d13e64cf28af2e", "55315b20fecb4441a07ee4bc5dc7153f396e0a2e", - "4e83a94ae5155bbea14d7331a5a8db82457bd5ae", - "34fa37599f2f9eb607390ef2458a3c22d87f09a9", - "f087af69044432a1ef2431a72ac06946e32f2dd3", - "7e9a30e38d7b78981999821640a68a201bb6df01", "343883a7b555646da8cee54aadd2795b6e7dd070", "e38466a4ba8005fba7e9e3c7b9efeba7205bee3f", "ffa7f9a7fb19d773a0c3985a541c8e5623d2c30d", @@ -124669,9 +125529,13 @@ "4192c505d130f446b2ada6bdc91dae730acafb4c", "16df8b5fd524c5a1c7584b2457ac15aff9e3ad6d", "f0b4e9e29e12218c2d5bd7020e4e785297d91fd7", + "4e83a94ae5155bbea14d7331a5a8db82457bd5ae", "6386e58bc1bba5e76baec9e8a1ca4b99dc3c573f", "28eefbb63047b26e4aec104aeeca74e2f9d0276c", + "7e9a30e38d7b78981999821640a68a201bb6df01", + "f087af69044432a1ef2431a72ac06946e32f2dd3", "9d76f3eefd64e032c763fa1ebf9cd3d9bd22317a", + "34fa37599f2f9eb607390ef2458a3c22d87f09a9", "273a9933b68a290c5aedcd6d69faa7b1d22c0344", "4891d739a8a8b67923681bad4fb67edab2e90e50", "6e89d1227581c76441a53d605f9e324185f1da33", @@ -124716,6 +125580,9 @@ "8a2ddc37df2366d4e205e9904cd8bac22db2afd5", "e5403cb209cf0df473bf1251cade7e70f94644fb" ], + "DiskII/boot-16.rom": [ + "d4181c9f046aafc3fb326b381baac809d9e38d16" + ], ".variants/airlbios.zip.03c9d1c3": [ "03c9d1c3f59e8c6f320ea74abde1e4e7c5bfa623" ], diff --git a/emulators/fbneo.yml b/emulators/fbneo.yml index d0a55c7a..fccd2da1 100644 --- a/emulators/fbneo.yml +++ b/emulators/fbneo.yml @@ -33,6 +33,8 @@ systems: - taito-cchip - ym2608 +archive_prefix: fbneo + data_directories: - ref: fbneo-cheats destination: fbneo/cheats diff --git a/emulators/fbneo_cps12.yml b/emulators/fbneo_cps12.yml index 91e54503..12f78aea 100644 --- a/emulators/fbneo_cps12.yml +++ b/emulators/fbneo_cps12.yml @@ -32,6 +32,8 @@ notes: | need_fullpath=false, extensions=zip|7z, savestate=deterministic. +archive_prefix: fbneo + files: - name: "hiscore.dat" path: "fbneo/hiscore.dat" diff --git a/emulators/fbneo_neogeo.yml b/emulators/fbneo_neogeo.yml index a88e89d7..f2966dbe 100644 --- a/emulators/fbneo_neogeo.yml +++ b/emulators/fbneo_neogeo.yml @@ -38,6 +38,8 @@ notes: | need_fullpath=false, extensions=zip|7z|cue|ccd, savestate=deterministic. +archive_prefix: fbneo + files: # ------------------------------------------------------- # Neo Geo MVS/AES (neogeo.zip) — 68K BIOS ROMs diff --git a/emulators/kronos.yml b/emulators/kronos.yml index 2297ecd5..db944ede 100644 --- a/emulators/kronos.yml +++ b/emulators/kronos.yml @@ -38,11 +38,14 @@ notes: | Standalone supports MPEG card ROM loading (Video CD card); disabled in libretro port (mpegpath = NULL in libretro.c:1578). +archive_prefix: kronos + files: # ----------------------------------------------------------- # Saturn BIOS - primary (any region) # ----------------------------------------------------------- - name: "saturn_bios.bin" + path: "kronos/saturn_bios.bin" system: sega-saturn required: true size: 524288 diff --git a/install/batocera.json b/install/batocera.json index 2b730159..1b1e124a 100644 --- a/install/batocera.json +++ b/install/batocera.json @@ -3,7 +3,7 @@ "platform": "batocera", "display_name": "Batocera", "version": "1.0", - "generated": "2026-03-30T09:46:19Z", + "generated": "2026-03-30T22:08:40Z", "base_destination": "bios", "detect": [ { @@ -14,8 +14,8 @@ } ], "standalone_copies": [], - "total_files": 1228, - "total_size": 1928497242, + "total_files": 1347, + "total_size": 3851309448, "files": [ { "dest": "panafz1.bin", @@ -6613,6 +6613,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2003-plus/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -6703,177 +6874,6 @@ "MAME 2003-Plus" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "apple2.zip", "sha1": "e63ac5e5bd3443cb937916a78e7d4bb8d3c67c4b", @@ -7450,15 +7450,6 @@ "Opera (4DO)" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "carthw.cfg", "sha1": "d3fe0b958705e4cb5eeb7822e60d474204df4bd3", @@ -10356,6 +10347,1098 @@ "cores": [ "X Millennium" ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "PCSX2" + ] } ] } \ No newline at end of file diff --git a/install/bizhawk.json b/install/bizhawk.json index 714d8aeb..92a6bfcf 100644 --- a/install/bizhawk.json +++ b/install/bizhawk.json @@ -3,7 +3,7 @@ "platform": "bizhawk", "display_name": "BizHawk", "version": "1.0", - "generated": "2026-03-30T09:46:23Z", + "generated": "2026-03-30T22:08:44Z", "base_destination": "Firmware", "detect": [ { @@ -18,8 +18,8 @@ } ], "standalone_copies": [], - "total_files": 437, - "total_size": 1790314370, + "total_files": 456, + "total_size": 1805641545, "files": [ { "dest": "panafz1.bin", @@ -2623,6 +2623,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "bios9.bin", "sha1": "bfaac75f101c135e32e2aaf541de6b1be4c8c62d", diff --git a/install/emudeck.json b/install/emudeck.json index bae13451..5d971034 100644 --- a/install/emudeck.json +++ b/install/emudeck.json @@ -3,7 +3,7 @@ "platform": "emudeck", "display_name": "EmuDeck", "version": "1.0", - "generated": "2026-03-30T09:46:25Z", + "generated": "2026-03-30T22:08:49Z", "base_destination": "bios", "detect": [ { @@ -50,8 +50,8 @@ } } ], - "total_files": 290, - "total_size": 717377323, + "total_files": 428, + "total_size": 2655516704, "files": [ { "dest": "colecovision.rom", @@ -2399,6 +2399,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "dsi_bios9.bin", "sha1": "db61fa39ddbc5f5ed71fb19cda47609ef0201723", @@ -2480,15 +2651,6 @@ "Mupen64Plus-Next" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "scummvm/extra/MT32_CONTROL.ROM", "sha1": "b083518fffb7f66b03c23b7eb4f868e62dc5a987", @@ -2598,6 +2760,1098 @@ "cores": [ "Dolphin" ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "PCSX2" + ] } ] } \ No newline at end of file diff --git a/install/lakka.json b/install/lakka.json index 72d39092..686235e4 100644 --- a/install/lakka.json +++ b/install/lakka.json @@ -3,7 +3,7 @@ "platform": "lakka", "display_name": "Lakka", "version": "1.0", - "generated": "2026-03-30T09:47:34Z", + "generated": "2026-03-30T22:09:51Z", "base_destination": "system", "detect": [ { @@ -14,8 +14,8 @@ } ], "standalone_copies": [], - "total_files": 1256, - "total_size": 3021578809, + "total_files": 1373, + "total_size": 4940393082, "files": [ { "dest": "3do_arcade_saot.bin", @@ -1428,9 +1428,9 @@ }, { "dest": "NstDatabase.xml", - "sha1": "f92312bae56e29c5bf00a5103105fce78472bf5c", - "size": 1022369, - "repo_path": "bios/Nintendo/NES/NstDatabase.xml", + "sha1": "26322f182540211e9b5e3647675b7c593706ae2b", + "size": 1009534, + "repo_path": "bios/Nintendo/NES/.variants/NstDatabase.xml.26322f18", "cores": null }, { @@ -5629,33 +5629,6 @@ "storage": "release", "release_asset": "sd.raw" }, - { - "dest": "pcsx2/resources/GameIndex.yaml", - "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", - "size": 2669341, - "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ws.zip", - "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", - "size": 1273296, - "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ni.zip", - "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", - "size": 42525, - "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", - "cores": [ - "LRPS2" - ] - }, { "dest": "lindbios.zip", "sha1": "65a2f2cee74c316d5f40b68deda66787609df353", @@ -6655,6 +6628,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2000/cheat/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -6853,177 +6997,6 @@ "MAME 2015" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "apple2.zip", "sha1": "e63ac5e5bd3443cb937916a78e7d4bb8d3c67c4b", @@ -10452,6 +10425,1098 @@ "cores": [ "X Millennium" ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" } ] } \ No newline at end of file diff --git a/install/recalbox.json b/install/recalbox.json index fb0bf68a..b9cfe109 100644 --- a/install/recalbox.json +++ b/install/recalbox.json @@ -3,7 +3,7 @@ "platform": "recalbox", "display_name": "Recalbox", "version": "1.0", - "generated": "2026-03-30T09:48:01Z", + "generated": "2026-03-30T22:10:21Z", "base_destination": "bios", "detect": [ { @@ -14,8 +14,8 @@ } ], "standalone_copies": [], - "total_files": 895, - "total_size": 1309596232, + "total_files": 1014, + "total_size": 3232408438, "files": [ { "dest": "3do/panafz1.bin", @@ -5308,6 +5308,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2000/cheat/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -5506,177 +5677,6 @@ "MAME 2015" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "apple2.zip", "sha1": "e63ac5e5bd3443cb937916a78e7d4bb8d3c67c4b", @@ -6262,15 +6262,6 @@ "ParaLLEl N64" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "carthw.cfg", "sha1": "d3fe0b958705e4cb5eeb7822e60d474204df4bd3", @@ -7521,6 +7512,1098 @@ "cores": [ "ScummVM" ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "PCSX2" + ] } ] } \ No newline at end of file diff --git a/install/retroarch.json b/install/retroarch.json index 36dd0932..89c7f4ce 100644 --- a/install/retroarch.json +++ b/install/retroarch.json @@ -3,7 +3,7 @@ "platform": "retroarch", "display_name": "RetroArch", "version": "1.0", - "generated": "2026-03-30T09:47:34Z", + "generated": "2026-03-30T22:09:51Z", "base_destination": "system", "detect": [ { @@ -32,8 +32,8 @@ } ], "standalone_copies": [], - "total_files": 1256, - "total_size": 3021578809, + "total_files": 1373, + "total_size": 4940393082, "files": [ { "dest": "3do_arcade_saot.bin", @@ -1446,9 +1446,9 @@ }, { "dest": "NstDatabase.xml", - "sha1": "f92312bae56e29c5bf00a5103105fce78472bf5c", - "size": 1022369, - "repo_path": "bios/Nintendo/NES/NstDatabase.xml", + "sha1": "26322f182540211e9b5e3647675b7c593706ae2b", + "size": 1009534, + "repo_path": "bios/Nintendo/NES/.variants/NstDatabase.xml.26322f18", "cores": null }, { @@ -5647,33 +5647,6 @@ "storage": "release", "release_asset": "sd.raw" }, - { - "dest": "pcsx2/resources/GameIndex.yaml", - "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", - "size": 2669341, - "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ws.zip", - "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", - "size": 1273296, - "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ni.zip", - "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", - "size": 42525, - "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", - "cores": [ - "LRPS2" - ] - }, { "dest": "lindbios.zip", "sha1": "65a2f2cee74c316d5f40b68deda66787609df353", @@ -6673,6 +6646,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2000/cheat/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -6871,177 +7015,6 @@ "MAME 2015" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "apple2.zip", "sha1": "e63ac5e5bd3443cb937916a78e7d4bb8d3c67c4b", @@ -10470,6 +10443,1098 @@ "cores": [ "X Millennium" ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" } ] } \ No newline at end of file diff --git a/install/retrobat.json b/install/retrobat.json index 45cc7ef4..923de2bf 100644 --- a/install/retrobat.json +++ b/install/retrobat.json @@ -3,7 +3,7 @@ "platform": "retrobat", "display_name": "RetroBat", "version": "1.0", - "generated": "2026-03-30T09:48:07Z", + "generated": "2026-03-30T22:10:31Z", "base_destination": "bios", "detect": [ { @@ -13,8 +13,8 @@ } ], "standalone_copies": [], - "total_files": 896, - "total_size": 1751201147, + "total_files": 1017, + "total_size": 3674275497, "files": [ { "dest": "panafz1.bin", @@ -1388,6 +1388,20 @@ "repo_path": "bios/Pioneer/LaserActive/[BIOS] LaserActive PCE-LP1 (Japan) (v1.02).bin", "cores": null }, + { + "dest": "laseractive/[BIOS] LaserActive PAC-S10 (US) (v1.04).bin", + "sha1": "aa811861f8874775075bd3f53008c8aaf59b07db", + "size": 131072, + "repo_path": "bios/Pioneer/LaserActive/Pioneer LaserActive Sega PAC Boot ROM v1.04 (1993)(Pioneer - Sega)(US).bin", + "cores": null + }, + { + "dest": "laseractive/[BIOS] LaserActive PAC-S1 (Japan) (v1.05).bin", + "sha1": "f7101b40cae0484a0f43f3bbee2d55033ff1e3ec", + "size": 131072, + "repo_path": "bios/Pioneer/LaserActive/[BIOS] LaserActive PAC-S1 (Japan) (v1.05).bin", + "cores": null + }, { "dest": "casloopy.zip", "sha1": "144ea9d0f20113632dde6d21c62a01c02cf7666d", @@ -4790,6 +4804,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2003-plus/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -4880,177 +5065,6 @@ "MAME 2003-Plus" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "a2cffa02.zip", "sha1": "e8af33c0904b422841080a5ee25935f5ea1f3781", @@ -5627,15 +5641,6 @@ "ParaLLEl N64" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "scph5500.bin", "sha1": "b05def971d8ec59f346f2d9ac21fb742e3eb6917", @@ -7419,6 +7424,1098 @@ "cores": [ "X Millennium" ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "PCSX2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "PCSX2" + ] } ] } \ No newline at end of file diff --git a/install/retrodeck.json b/install/retrodeck.json index f09f343a..2360a3e4 100644 --- a/install/retrodeck.json +++ b/install/retrodeck.json @@ -3,7 +3,7 @@ "platform": "retrodeck", "display_name": "RetroDECK", "version": "1.0", - "generated": "2026-03-30T09:49:19Z", + "generated": "2026-03-30T22:11:42Z", "base_destination": "", "detect": [ { @@ -14,8 +14,8 @@ } ], "standalone_copies": [], - "total_files": 2770, - "total_size": 3212582444, + "total_files": 2847, + "total_size": 4967831632, "files": [ { "dest": "bios/panafz1.bin", @@ -16399,33 +16399,6 @@ "JollyCV" ] }, - { - "dest": "pcsx2/resources/GameIndex.yaml", - "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", - "size": 2669341, - "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ws.zip", - "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", - "size": 1273296, - "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ni.zip", - "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", - "size": 42525, - "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", - "cores": [ - "LRPS2" - ] - }, { "dest": "systemy2.zip", "sha1": "66caf13d6819b16eff03a14e3623c8c25b94742c", @@ -16741,6 +16714,177 @@ "MAME" ] }, + { + "dest": "ekara.zip", + "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", + "size": 630644, + "repo_path": "bios/Arcade/Arcade/ekara.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraa.zip", + "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", + "size": 629642, + "repo_path": "bios/Arcade/Arcade/ekaraa.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraj.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekarag.zip", + "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", + "size": 795612, + "repo_path": "bios/Arcade/Arcade/ekarag.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaras.zip", + "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", + "size": 813756, + "repo_path": "bios/Arcade/Arcade/ekaras.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "isinger.zip", + "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", + "size": 556765, + "repo_path": "bios/Arcade/Arcade/isinger.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaraphs.zip", + "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", + "size": 798457, + "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "epitch.zip", + "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", + "size": 629853, + "repo_path": "bios/Arcade/Arcade/ekaraj.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ekaramix.zip", + "sha1": "08cea726163f490471d88e4c640b8385ee065836", + "size": 663402, + "repo_path": "bios/Arcade/Arcade/ekaramix.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "ddrfammt.zip", + "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", + "size": 883352, + "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira.zip", + "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", + "size": 654918, + "repo_path": "bios/Arcade/Arcade/popira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popirak.zip", + "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", + "size": 639838, + "repo_path": "bios/Arcade/Arcade/popirak.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "popira2.zip", + "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", + "size": 1124630, + "repo_path": "bios/Arcade/Arcade/popira2.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "taikodp.zip", + "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", + "size": 1141771, + "repo_path": "bios/Arcade/Arcade/taikodp.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "jpopira.zip", + "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", + "size": 1116085, + "repo_path": "bios/Arcade/Arcade/jpopira.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "evio.zip", + "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", + "size": 1292911, + "repo_path": "bios/Arcade/Arcade/evio.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "tak_daig.zip", + "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", + "size": 951997, + "repo_path": "bios/Arcade/Arcade/tak_daig.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "gcslottv.zip", + "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", + "size": 737452, + "repo_path": "bios/Arcade/Arcade/gcslottv.zip", + "cores": [ + "MAME" + ] + }, + { + "dest": "hikara.zip", + "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", + "size": 636237, + "repo_path": "bios/Arcade/Arcade/hikara.zip", + "cores": [ + "MAME" + ] + }, { "dest": "mame2000/cheat/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -16930,177 +17074,6 @@ "MAME 2015" ] }, - { - "dest": "ekara.zip", - "sha1": "86665ff4bce0f27c1ffd1d0459708885b82983a2", - "size": 630644, - "repo_path": "bios/Arcade/Arcade/ekara.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraa.zip", - "sha1": "98080e5a3d352e04ed8b50e6a04af456518aa66e", - "size": 629642, - "repo_path": "bios/Arcade/Arcade/ekaraa.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraj.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekarag.zip", - "sha1": "39e589aa0158b48d33648413c89778f8e8cc0d58", - "size": 795612, - "repo_path": "bios/Arcade/Arcade/ekarag.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaras.zip", - "sha1": "ab288761b8cd5a02fc7b3d12acbb1e3371214b69", - "size": 813756, - "repo_path": "bios/Arcade/Arcade/ekaras.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "isinger.zip", - "sha1": "28c6f8828b6820c072832fa7027beb7be9aad020", - "size": 556765, - "repo_path": "bios/Arcade/Arcade/isinger.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaraphs.zip", - "sha1": "31199ff06972ba2a1a67b1b403119ee3d821efc7", - "size": 798457, - "repo_path": "bios/Arcade/Arcade/ekaraphs.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "epitch.zip", - "sha1": "d4fa61d730b6aaf354bbec5e997c0db30efc85d0", - "size": 629853, - "repo_path": "bios/Arcade/Arcade/ekaraj.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ekaramix.zip", - "sha1": "08cea726163f490471d88e4c640b8385ee065836", - "size": 663402, - "repo_path": "bios/Arcade/Arcade/ekaramix.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "ddrfammt.zip", - "sha1": "ec9a6c1bf8f33f5717d51588ffe87239313b2a06", - "size": 883352, - "repo_path": "bios/Arcade/Arcade/ddrfammt.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira.zip", - "sha1": "5fb387eef5d254797413c9d0ea342b64b7eeb5bb", - "size": 654918, - "repo_path": "bios/Arcade/Arcade/popira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popirak.zip", - "sha1": "9801ee035decbb5e45aa0a20ca4d26323e0ac126", - "size": 639838, - "repo_path": "bios/Arcade/Arcade/popirak.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "popira2.zip", - "sha1": "5143c86ac93607223cafb5e529ea08221518e64a", - "size": 1124630, - "repo_path": "bios/Arcade/Arcade/popira2.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "taikodp.zip", - "sha1": "446013455ab02be7fc3e27bf6ff680293c8657b7", - "size": 1141771, - "repo_path": "bios/Arcade/Arcade/taikodp.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "jpopira.zip", - "sha1": "500a2402fcdf856d127128153e62e51c3c2f7bdc", - "size": 1116085, - "repo_path": "bios/Arcade/Arcade/jpopira.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "evio.zip", - "sha1": "96ac6cc92b40e57f04be7215703e532394bead55", - "size": 1292911, - "repo_path": "bios/Arcade/Arcade/evio.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "tak_daig.zip", - "sha1": "d3c641bdde6c6f681abd3bdd36463d1e7264b6e7", - "size": 951997, - "repo_path": "bios/Arcade/Arcade/tak_daig.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "gcslottv.zip", - "sha1": "4ea3ec9c41ab767907167b5022bfcfd1a05795c8", - "size": 737452, - "repo_path": "bios/Arcade/Arcade/gcslottv.zip", - "cores": [ - "MAME MESS" - ] - }, - { - "dest": "hikara.zip", - "sha1": "dbfdea3057a5fcc0e0d243deace87fd6840a2322", - "size": 636237, - "repo_path": "bios/Arcade/Arcade/hikara.zip", - "cores": [ - "MAME MESS" - ] - }, { "dest": "apple2.zip", "sha1": "e63ac5e5bd3443cb937916a78e7d4bb8d3c67c4b", @@ -17488,15 +17461,6 @@ "NXEngine" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "carthw.cfg", "sha1": "d3fe0b958705e4cb5eeb7822e60d474204df4bd3", @@ -21044,6 +21008,747 @@ "cores": [ "UME 2015" ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" } ] } \ No newline at end of file diff --git a/install/romm.json b/install/romm.json index e0162291..680809de 100644 --- a/install/romm.json +++ b/install/romm.json @@ -3,7 +3,7 @@ "platform": "romm", "display_name": "RomM", "version": "1.0", - "generated": "2026-03-30T09:49:20Z", + "generated": "2026-03-30T22:11:48Z", "base_destination": "bios", "detect": [ { @@ -13,8 +13,8 @@ } ], "standalone_copies": [], - "total_files": 638, - "total_size": 1316397979, + "total_files": 754, + "total_size": 3235225023, "files": [ { "dest": "3do/3do_arcade_saot.bin", @@ -3211,33 +3211,6 @@ "storage": "release", "release_asset": "sd.raw" }, - { - "dest": "pcsx2/resources/GameIndex.yaml", - "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", - "size": 2669341, - "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ws.zip", - "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", - "size": 1273296, - "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", - "cores": [ - "LRPS2" - ] - }, - { - "dest": "pcsx2/resources/cheats_ni.zip", - "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", - "size": 42525, - "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", - "cores": [ - "LRPS2" - ] - }, { "dest": "mame2003/cheat.dat", "sha1": "32fc78415114a976af9c2ee53ea13de9f40b55ee", @@ -3499,15 +3472,6 @@ "NP2kai" ] }, - { - "dest": "eeprom.dat", - "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", - "size": 64, - "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", - "cores": [ - "PCSX2" - ] - }, { "dest": "carthw.cfg", "sha1": "d3fe0b958705e4cb5eeb7822e60d474204df4bd3", @@ -5019,6 +4983,1098 @@ "cores": [ "X Millennium" ] + }, + { + "dest": "GameIndex.yaml", + "sha1": "b22389650f6c0a1e276b48213fed8a9c1c6476ce", + "size": 2669341, + "repo_path": "bios/Sony/PlayStation 2/GameIndex.yaml", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ROM2.BIN", + "sha1": "1bae895fbdd658cfb56c53cc2139282cc1e778de", + "size": 8192, + "repo_path": "bios/Sony/PlayStation 2/ROM2.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-110u.bin", + "sha1": "0bc9143cb6839471d62b8fdd0b2fc05e941527d3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-110u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120e.bin", + "sha1": "ceab36633cd5d6050a3080ed8312a6f79d68a6f3", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-120u.bin", + "sha1": "f1e306ebefb03af3e1fc2a3695089e4e459968ed", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-120u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130e.bin", + "sha1": "062f287fb56b18ffbac85ec5f21841b03243ba5a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-130u.bin", + "sha1": "7f2e4a49835cd6f9e30a1c2999975a9b1ce870bc", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-130u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-200j.bin", + "sha1": "0ba4ea6909ad1bb67d6654ecb27cd65a4f14e3e5", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-200j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210e.bin", + "sha1": "7625f77742dee6745e3be8f89cbd59a1143db104", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210j.bin", + "sha1": "250d3e279ec30f78c46b7a92dca60bc4adc7df1d", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210j.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-210u.bin", + "sha1": "8fd801131621b0dcd556e3d6df59f5eb021fbf6a", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-210u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212g.bin", + "sha1": "a10bc145413cf43204d6b8ee0fff34370c092673", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-212u.bin", + "sha1": "d1a60da85dfcb5354f53b716fbcb5747ab4a1e56", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-212u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-213e.bin", + "sha1": "010ab71354a1ae5065640a2cb85e829ff8141a66", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-213e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-215g.bin", + "sha1": "12d8531ca73ae33a9cd363797835a45f50fdf8f9", + "size": 2097152, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-215g.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300e.bin", + "sha1": "bbfdc1a2df333885f62cca4e8920228e40e94e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-300u.bin", + "sha1": "6219ad4ead2ece9c4d32df5b040c4c391b763e5a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-300u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302c.bin", + "sha1": "aa21592362b5797109ea38ec2df31e949ad3effd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302c.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302e.bin", + "sha1": "30eb804bcc8824a679740ff8fce3d8268838425b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302e.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-302u.bin", + "sha1": "17380f704f16cc8ec44cf0ba1b349dda3a514b77", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-302u.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-310.bin", + "sha1": "cd8b548d6db7f7bdd4a0d90e21081520e7e05a40", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-310.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-dvd-311.bin", + "sha1": "747e36b086aceceb300c72c0d1bbab38e2920e63", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/DVD Firmware/ps2-dvd-311.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "EROM.BIN", + "sha1": "adb4dbb7feb8247811506a38896ddcb789c4b477", + "size": 247968, + "repo_path": "bios/Sony/PlayStation 2/EROM.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.MEC", + "sha1": "3f8affbe07024ccd2f5b8374072d0928c583a862", + "size": 4, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.MEC", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-10000.bin", + "sha1": "aea061e6e263fdcc1c4fdbd68553ef78dae74263", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-10000.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-30004R.bin", + "sha1": "8fa040852d4b8688f0c84bcfffc65eb208f2b432", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-30004R.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-39001.bin", + "sha1": "f9a5d629a036b99128f7cb530c6e3ca016e9c8b7", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-39001.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.BIN", + "sha1": "434bc0b4eb4827da0773ec0795aadc5162569a07", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.BIN", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.EROM", + "sha1": "ec0121bb8e2a209044309780d2efc2559c9a0ef1", + "size": 3145728, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.EROM", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH-70004.ROM1", + "sha1": "cc44355ded232a2ba5309bb24d4cd55af08696b2", + "size": 524288, + "repo_path": "bios/Sony/PlayStation 2/SCPH-70004.ROM1", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "SCPH30004R.nvm", + "sha1": "62f5a0b54a174daf2bf66634b86c6f2a3cd297ce", + "size": 1024, + "repo_path": "bios/Sony/PlayStation 2/SCPH30004R.nvm", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ni.zip", + "sha1": "dec5e4f137890c338babe13cfb9d41ff869fa721", + "size": 42525, + "repo_path": "bios/Sony/PlayStation 2/cheats_ni.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "cheats_ws.zip", + "sha1": "773b4279d8c8e182dc57e444dbf448a1d115e7e0", + "size": 1273296, + "repo_path": "bios/Sony/PlayStation 2/cheats_ws.zip", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "eeprom.dat", + "sha1": "ffc6261e487efa8c7442069f71acfc4aa826993d", + "size": 64, + "repo_path": "bios/Sony/PlayStation 2/eeprom.dat", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0100jd-20000117.bin", + "sha1": "5b33170323ed6344e2363fed8115dc3918bb96a4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0100jd-20000117.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101j-20000217.bin", + "sha1": "916e02431bcd73140504da3355c9598143b77e11", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101j-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101jd-20000217.bin", + "sha1": "16f4a284d0e760ee13a2aff2f7dda928255e3080", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101jd-20000217.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0101xd-20000224.bin", + "sha1": "4440b246bfde7bb31002c584a76c6ef384908e84", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0101xd-20000224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110a-20000727.bin", + "sha1": "20f6ce6693cf97e9494f8f0227f2b7988ffaf961", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110a-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0110ad-20000727.bin", + "sha1": "339c646cf0699268552df5b05f18f0a03a9f55ff", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0110ad-20000727.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120a-20000902.bin", + "sha1": "dbc2318a1029347b5af3a0c74b0bdf88d19efee6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120a-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120e-20000902.bin", + "sha1": "274c05fec654913a3f698d4b0d592085866a2cbd", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120e-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902-20030110.bin", + "sha1": "1b73dec999fcc2b92fa958110ff6bfe4d0af276e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902-20030110.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120ed-20000902.bin", + "sha1": "3bb1eecd618ab5c973c7bc53671a4475a02e1d5b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120ed-20000902.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-185015.bin", + "sha1": "e481079eca752225555f0c26d14c9d0f94d9a8e9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-185015.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0120j-20001027-191435.bin", + "sha1": "a9f5d8ed56cfff18add1b599010493461fa02448", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0120j-20001027-191435.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150a-20001228.bin", + "sha1": "5af5b5077d84a9c037ebe12bfab8a38b31d8a543", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150a-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ad-20001228-20030520.bin", + "sha1": "7284b9d16df9935afc384318e024c87ef0574fe5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ad-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150e-20001228.bin", + "sha1": "e22ef231faf3661edd92f2ee449a71297c82a092", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150e-20001228.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150ed-20001228-20030520.bin", + "sha1": "d004326c9d8060812b4433c3f07646b04854d6c4", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150ed-20001228-20030520.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150j-20010118.bin", + "sha1": "d6f365a0f07cd04ed28108e6ec5076e2f81e5f72", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150j-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0150jd-20010118.bin", + "sha1": "334e029fc7fd50222a399c50384ff42732652259", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0150jd-20010118.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010427.bin", + "sha1": "7331a40b4b4feb1b3f0f77b013b6d38483577baa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20010704.bin", + "sha1": "ce92e8e8c88665f2f645a9522e337823d47a914a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160a-20011004.bin", + "sha1": "d257bce6ecaf3bafb704c75a1b4741b910bd2d49", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160a-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20010704.bin", + "sha1": "3cbd048e437c785b5a05a0feced00117a8a42545", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20010704.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20011004.bin", + "sha1": "ee34c3a87c53c75ca2a37d77b0042ca24d07831f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020319.bin", + "sha1": "bff2902bd0ce9729a060581132541e9fd1a9fab6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020319.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160e-20020426.bin", + "sha1": "d106b757ae2544dfe63f7e1924e59d5ad44c0c29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160e-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20010730.bin", + "sha1": "ba15dcf7aac13864c08222037e9321d7468c87d1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20010730.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20020426.bin", + "sha1": "e3a74125c426bcacabca00b513fab928665c8846", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160h-20030602.bin", + "sha1": "f03bc2b7e7722d1788c9e7a341e43ac3ffe33a47", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160h-20030602.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20010427.bin", + "sha1": "e525a0c900e37acf0ae5a655d82a0abcb07c6f1f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20010427.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20011004.bin", + "sha1": "e63a786590b62867faef4c47af6ca71c19368216", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20011004.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0160j-20020426.bin", + "sha1": "003628c137dae577ff3b04b93ca1787b0c944702", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0160j-20020426.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170a-20030325.bin", + "sha1": "d269d1ed513227f3ef7133c76cf1b3a64f97b15d", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170a-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ad-20030325.bin", + "sha1": "c5bc6e893b4c43d528142e56c96073024de64157", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ad-20030325.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170e-20030227.bin", + "sha1": "ad15bd7eabd5bd81ba011516a5be44947d6641aa", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170e-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170ed-20030227.bin", + "sha1": "e220bb282378c1f48ea1b585b3675e51a6dca572", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170ed-20030227.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170j-20030206.bin", + "sha1": "d812ac65c357d392396ca9edee812dc41bed8bde", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170j-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0170jd-20030206.bin", + "sha1": "03c6531a1feba6da75a32c2a69c7bb89be61dcda", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0170jd-20030206.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180cd-20030224.bin", + "sha1": "2de87767008fc4a303af64a46251156e965d9065", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180cd-20030224.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0180j-20031028.bin", + "sha1": "aa4a35c14ee342cf7a03b1dde294ca10e64889e1", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0180j-20031028.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20030623.bin", + "sha1": "c74d92a2952a2912b6698cbcf7742adac8f784d3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190a-20040329.bin", + "sha1": "b68c05f5cd86bf03cb38a643a723b7a97b759531", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190a-20040329.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190ad-20030623.bin", + "sha1": "fe19d2c52729e2ce4fea30e0e6a501587285d93f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190ad-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190c-20030623.bin", + "sha1": "92d9eb4b11cef97bb69a275b2851b72f7b0023d6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190c-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190cd-20030623.bin", + "sha1": "1e63d563a3f62acf5b9be611391e2c196c5a4243", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190cd-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030623.bin", + "sha1": "18b9ba833c469c4683676cc20da5124080d980bb", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190e-20030822.bin", + "sha1": "6e1f0eb4aec51a6288b3d802d3bcdb477cf52104", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190e-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190h-20030623.bin", + "sha1": "caa18ed04854a91e68f2d61a782560edd6373bbf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190h-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030623.bin", + "sha1": "6a6ecfe6c10e42eff1ca056349def799b5629067", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190j-20030822.bin", + "sha1": "0ea98a25a32145dda514de2f0d4bfbbd806bd00c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190j-20030822.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190k-20030623.bin", + "sha1": "ad8b9b5aa87b1575fec6a70d1cec77851c9c0e29", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190k-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0190r-20030623.bin", + "sha1": "34a81db03ab617fbfdd7f9b861692dd2ecd57b82", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0190r-20030623.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200a-20040614.bin", + "sha1": "7a62e5f48603582707e9898eb055ea3eaee50d4c", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200a-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ad-20040614.bin", + "sha1": "6b42b59c772027c48ef0df89ad165e6c17f2886e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ad-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200ed-20040614.bin", + "sha1": "902f4680b258abd40c0922f6b0d581cbd8f8a73e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200ed-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200h-20040614.bin", + "sha1": "7f8e812cab7c7393c85eac6c42661e1fd0a642df", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200h-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0200j-20040614.bin", + "sha1": "224ab5704ab719edeb05ca1d835812252c97c1b3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0200j-20040614.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0210j-20040917.bin", + "sha1": "bbb1af3085e77599691ec430d147810157da934f", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0210j-20040917.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20050620.bin", + "sha1": "48d0445dffd1e879c7ae752c5166ec3101921555", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060210.bin", + "sha1": "92e488d5b2705e4cca83d4d1efbc421012faf83e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220a-20060905.bin", + "sha1": "8361d615cc895962e0f0838489337574dbdc9173", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220a-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20050620.bin", + "sha1": "7c7efdfcec7705f4e84bb47f45322104e39eed09", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220ad-20060905.bin", + "sha1": "4191b5842f31a9985b5428bc9d2b733ce3abb583", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220ad-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20050620.bin", + "sha1": "929a85e974faf4b40d0a7785023b758402c43bd9", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060210.bin", + "sha1": "28ad756d0cfd1e7b2e2de3de5d9e14207ee89761", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220e-20060905.bin", + "sha1": "da5aacead2fb55807d6d4e70b1f10f4fdcfd3281", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220e-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20050620.bin", + "sha1": "0a071d1b46607a7694770407606d8599f62a372b", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060210.bin", + "sha1": "fce2a24e5e0400cc6d98c08f426405d19173813e", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220h-20060905.bin", + "sha1": "a5a2ee0dd9a86ca35b94e97ca92476a584f755bf", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220h-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20050620.bin", + "sha1": "7ffa75d142cb8eeea6c777dbcf263143655275d5", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060210.bin", + "sha1": "0edf1fbb772a8e6a79ae00e977450e3ade25c4f3", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060210.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220j-20060905.bin", + "sha1": "3baf847c1c217aa71ac6d298389c88edb3db32e2", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220j-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20050620.bin", + "sha1": "458adf85d216856892d6480213575670894049c6", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20050620.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0220jd-20060905.bin", + "sha1": "3d095a3c2c38ebef3e48f31c7cfbb77ad4b04166", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0220jd-20060905.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230a-20080220.bin", + "sha1": "f9229fe159d0353b9f0632f3fdc66819c9030458", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230a-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230e-20080220.bin", + "sha1": "9915b5ba56798f4027ac1bd8d10abe0c1c9c326a", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230e-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230h-20080220.bin", + "sha1": "a277b456849697abec11285c6b35bc734598c220", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230h-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0230j-20080220.bin", + "sha1": "fbd54bfc020af34008b317dcb80b812dd29b3759", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0230j-20080220.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250e-20100415.bin", + "sha1": "b9cb5775af29cd4d1ec5521e8231f8b6636e2e44", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250e-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "ps2-0250j-20100415.bin", + "sha1": "4b5ef16b67e3b523d28ed2406106cb80470a06d0", + "size": 4194304, + "repo_path": "bios/Sony/PlayStation 2/ps2-0250j-20100415.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "rom1.bin", + "sha1": "47d2ec4b342649e4c391043ab915d4435f9d180d", + "size": 199680, + "repo_path": "bios/Sony/PlayStation 2/rom1.bin", + "cores": [ + "LRPS2" + ] + }, + { + "dest": "DSi_Nand_AUS.bin", + "sha1": "7d006f8943171a4d50ae89bf2fca12b764d27e8b", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_AUS.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_AUS.bin" + }, + { + "dest": "DSi_Nand_CHN.bin", + "sha1": "4b3b3de0cb2c2aef80daa68394d5b804b8706d9f", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_CHN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_CHN.bin" + }, + { + "dest": "DSi_Nand_EUR.bin", + "sha1": "bc4091b6cab4feba3812ac0f23e23d0353481ecf", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_EUR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_EUR.bin" + }, + { + "dest": "DSi_Nand_JPN.bin", + "sha1": "c82d60626ac05b49ccec0cfb30001d4a3f31c5b9", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_JPN.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_JPN.bin" + }, + { + "dest": "DSi_Nand_KOR.bin", + "sha1": "4b061953d8f870bcda006ce86ce136f112cc1793", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_KOR.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_KOR.bin" + }, + { + "dest": "DSi_Nand_USA.bin", + "sha1": "ef08ae02c5fbe1a22a208c36e25607f5a9d5ae98", + "size": 251658304, + "repo_path": "bios/Nintendo/DS/DSi_Nand_USA.bin", + "cores": [ + "melonDS" + ], + "storage": "release", + "release_asset": "DSi_Nand_USA.bin" } ] } \ No newline at end of file diff --git a/scripts/generate_pack.py b/scripts/generate_pack.py index 81b1ed57..ad2d4fb4 100644 --- a/scripts/generate_pack.py +++ b/scripts/generate_pack.py @@ -337,6 +337,8 @@ def _collect_emulator_extras( from common import resolve_platform_cores from verify import find_undeclared_files + profiles = emu_profiles if emu_profiles is not None else load_emulator_profiles(emulators_dir) + undeclared = find_undeclared_files(config, emulators_dir, db, emu_profiles, target_cores=target_cores) extras = [] seen_dests: set[str] = set(seen) @@ -364,7 +366,6 @@ def _collect_emulator_extras( # different path by another core (e.g. neocd/ vs root, same_cdi/bios/ vs root). # Only adds a copy when the file is ALREADY covered at a different path - # never introduces a file that wasn't selected by the first pass. - profiles = emu_profiles if emu_profiles is not None else load_emulator_profiles(emulators_dir) relevant = resolve_platform_cores(config, profiles, target_cores=target_cores) standalone_set = {str(c) for c in config.get("standalone_cores", [])} by_name = db.get("indexes", {}).get("by_name", {}) @@ -422,6 +423,41 @@ def _collect_emulator_extras( "source_emulator": profile.get("emulator", emu_name), }) + # Archive prefix pass: cores that store BIOS archives in a subdirectory + # (e.g. system/fbneo/neogeo.zip). When the archive is already covered at + # the root, add a copy at the prefixed path so the core's .info firmware + # check finds it. + for emu_name, profile in sorted(profiles.items()): + if profile.get("type") in ("launcher", "alias"): + continue + if emu_name not in relevant: + continue + prefix = profile.get("archive_prefix", "") + if not prefix: + continue + profile_archives: set[str] = set() + for f in profile.get("files", []): + archive = f.get("archive", "") + if archive: + profile_archives.add(archive) + for archive_name in sorted(profile_archives): + if archive_name not in covered_names: + continue + dest = f"{prefix}/{archive_name}" + full_dest = f"{base_dest}/{dest}" if base_dest else dest + if full_dest in seen_dests: + continue + if not by_name.get(archive_name): + continue + seen_dests.add(full_dest) + extras.append({ + "name": archive_name, + "destination": dest, + "required": True, + "hle_fallback": False, + "source_emulator": profile.get("emulator", emu_name), + }) + # Third pass: agnostic scan — for filename-agnostic cores, include all # DB files matching the system path prefix and size criteria. files_db = db.get("files", {}) @@ -1066,9 +1102,10 @@ def generate_pack( if _has_path_conflict(full_dest, seen_destinations, seen_parents): continue + dest_hint = fe.get("destination", "") local_path, status = resolve_file( fe, db, bios_dir, zip_contents, - data_dir_registry=data_registry, + dest_hint=dest_hint, data_dir_registry=data_registry, ) if status in ("not_found", "external", "user_provided"): continue @@ -1181,6 +1218,9 @@ def _normalize_zip_for_pack(source_zip: str, dest_path: str, target_zf: zipfile. try: rebuild_zip_deterministic(source_zip, tmp_path) target_zf.write(tmp_path, dest_path) + except zipfile.BadZipFile: + # Corrupt source ZIP: copy as-is (will be flagged by verify) + target_zf.write(source_zip, dest_path) finally: os.unlink(tmp_path) @@ -1318,8 +1358,11 @@ def generate_emulator_pack( archives.add(archive) # Pack archives as units + archive_prefix = profile.get("archive_prefix", "") for archive_name in sorted(archives): archive_dest = _sanitize_path(archive_name) + if archive_prefix: + archive_dest = f"{archive_prefix}/{archive_dest}" if pack_structure: mode_key = "standalone" if standalone else "libretro" prefix = pack_structure.get(mode_key, "") @@ -2262,7 +2305,9 @@ def generate_manifest( if _has_path_conflict(full_dest, seen_destinations, seen_parents): continue - local_path, status = resolve_file(fe, db, bios_dir, zip_contents) + dest_hint = fe.get("destination", "") + local_path, status = resolve_file(fe, db, bios_dir, zip_contents, + dest_hint=dest_hint) if status in ("not_found", "external", "user_provided"): continue