diff --git a/README.md b/README.md index 3d2bb4b..3b7aaad 100755 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Nostlan can do it all! _Systems supported: Arcade, DS, 3DS, GBA, N64, PS2, PS3, PSP, SNES, SEGA Mega Drive/Genesis, **Nintendo Switch**, Wii, Wii U, Xbox, and Xbox 360._ -_Emulators supported: bsnes, Cemu, Citra, Cxbx-Reloaded, Dolphin, DeSmuME, DS Player, em-fceux, MAME, melonDS, mesen, mupen64plus, mGBA, PCSX2, PPSSPP, RPCS3, Ryujinx, Ryujinx-LDN, snes9x, VBA, webretro, xemu, Xenia, and **Yuzu**._ +_Emulators supported: bsnes, Cemu, Citra, Cxbx-Reloaded, Dolphin, DeSmuME, DS Player, em-fceux, MAME, melonDS, mesen, mupen64plus, mGBA, PCSX2, PPSSPP, RPCS3, **Ryujinx**, Ryujinx-LDN, snes9x, VBA, webretro, xemu, Xenia, and Yuzu._ ## Exclusive Features @@ -62,7 +62,7 @@ _Emulators supported: bsnes, Cemu, Citra, Cxbx-Reloaded, Dolphin, DeSmuME, DS Pl Click on an image to see it in full quality 4K resolution. -### Switch [Yuzu, Ryujinx] +### Switch [Ryujinx, Yuzu]

@@ -199,6 +199,4 @@ Nostlan is not affiliated with Nintendo, Sony, SEGA, or Microsoft. All trademark MAME and the MAME Logo are Copyright © 1997-2024 MAMEDev and contributors. MAME® is a registered trademark of Gregory Ember. Use of the MAME name and logo is done so with the expressed written permission from the trademark owner. For more information, please visit . -Nostlan was created by Quinton Ashley Copyright © 2019-2024. The Nostlan logo images are licensed under [Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/). The template images found in the [nostlan-img repository](https://github.com/quinton-ashley/nostlan-img) are public domain images under the Public Domain License CC0. The Nostlan software itself is open sourced and licensed under the copyleft [GNU GPLv3 license](https://en.wikipedia.org/wiki/GNU_General_Public_License). - -![GNU GPLv3 logo](https://www.gnu.org/graphics/gpl-v3-logo.svg) +Nostlan was created by Quinton Ashley Copyright © 2019-2024. The Nostlan logo images are licensed under [Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/). The template images found in the [nostlan-img repository](https://github.com/quinton-ashley/nostlan-img) are public domain images under the Public Domain License CC0. The Nostlan software itself is open sourced and licensed under the [GNU GPLv3 license](https://en.wikipedia.org/wiki/GNU_General_Public_License), which prohibits closed source commercial use. diff --git a/core/configUpdate.js b/core/configUpdate.js index a2e4200..23a96d2 100755 --- a/core/configUpdate.js +++ b/core/configUpdate.js @@ -7,12 +7,6 @@ module.exports = async function (defaults) { systemsDir = systemsDir.replace(/\\/g, '/'); } - if (semver.lt(ver, '1.25.0')) { - // delete old jsEmu app locations - delete cf.iodine; - delete cf['em-fceux'].app; - } - for (let _sys in systems) { let _syst = systems[_sys]; if (!_syst.emus) continue; @@ -62,219 +56,4 @@ module.exports = async function (defaults) { if (cf.region.length == 1) cf.region = regions[cf.region] || 'USA'; } - - if (semver.gt(ver, '1.26.0')) return; - - if (mac) cf.cemu.cmd = ['${app}', '-g', '${game}', '-f']; - - if (semver.gte(ver, '1.22.1')) return; - - delete cf.chip_arch; - - if (semver.gte(ver, '1.20.22')) return; - - // force update user cf due to command name change - // from d3d12_resolution_scale to draw_resolution_scale - cf.xenia.cmd = emus.xenia.cmd; - - if (semver.gte(ver, '1.20.17')) return; - - for (let _sys in systems) { - let _syst = systems[_sys]; - if (!_syst.emus) continue; - for (let _emu of _syst.emus) { - let props = ['app', 'cmd', 'saves']; - let obj = {}; - for (let prop of props) { - obj[prop] = cf[_emu][prop]; - } - cf[_emu] = obj; - } - } - - if (semver.gte(ver, '1.16.4')) return; - - if (linux) { - emus.mame.appDirs.linux = ['~/.mame']; - } - - if (semver.gte(ver, '1.13.5')) return; - - let controTypes = ['xbox', 'ps', 'nintendo', 'default']; - for (let type of controTypes) { - delete cf.ui.gamepad[type]; - } - controTypes = ['xbox_ps', 'nintendo', 'other']; - for (let type of controTypes) { - cf.ui.gamepad[type] = {}; - cf.ui.gamepad[type].profile = 'adaptive'; - cf.ui.gamepad[type].map = {}; - } - - if (semver.gte(ver, '1.11.1')) return; - - let arcadeImages = `${systemsDir}/arcade/images`; - if (await fs.exists(arcadeImages)) { - await fs.remove(arcadeImages); - } - // rpcs3 changed, before it was preferrable for games - // to be stored in the internal emu fs, now they can be - // stored anywhere. For previous users of Nostlan I chose - // to symlink that dir. - let ps3Games = `${systemsDir}/ps3/games`; - if (await fs.exists(ps3Games)) { - let files = await klaw(ps3Games); - if (!files.length) { - await fs.remove(ps3Games); - try { - await fs.symlink(`${systemsDir}/${sys}/rpcs3/dev_hdd0/game`, ps3Games, 'dir'); - } catch (ror) { - er(ror); - } - } - } - - // cf version added in v1.8.x - if (semver.gte(ver, '1.8.0')) return; - // if cf file is pre-v1.8.x - // update older versions of the cf file - if (cf.ui.gamepad.mapping) delete cf.ui.gamepad.mapping; - if (cf.ui.recheckImgs) delete cf.ui.recheckImgs; - if (cf.ui.gamepad.profile) { - cf.ui.gamepad.default.profile = cf.ui.gamepad.profile; - delete cf.ui.gamepad.profile; - } - if (cf.ui.gamepad.map) { - cf.ui.gamepad.default.map = cf.ui.gamepad.map; - delete cf.ui.gamepad.map; - } - if (cf['3ds']) cf.n3ds = cf['3ds']; - delete cf['3ds']; - if (cf.ui.maxRows) { - cf.ui.maxColumns = cf.ui.maxRows; - delete cf.ui.maxRows; - } - // move old bottlenose directory - if (cf.btlDir) { - cf.nlaDir = path.join(cf.btlDir, '..') + '/nostlan'; - if (await fs.exists(cf.btlDir)) { - await fs.move(cf.btlDir, cf.nlaDir); - } - delete cf.btlDir; - systemsDir = path.join(cf.nlaDir, '..'); - } - if (typeof cf.donor == 'boolean') cf.donor = {}; - if (cf.saves) { - for (let save of cf.saves) { - if (!save.noSaveOnQuit) save.noSaveOnQuit = false; - } - } - for (let _sys in systems) { - if (cf[_sys]) { - delete cf[_sys].style; - if (cf[_sys].emu) cf[_sys].name = cf[_sys].emu; - delete cf[_sys].emu; - if (_sys == 'arcade') continue; - if (!cf[_sys].name) continue; - let _emu = cf[_sys].name.toLowerCase(); - cf[_emu] = cf[_sys]; - delete cf[_sys]; - } - } - - // only keeps the emu app path for the current os - for (let _sys in systems) { - let _syst = systems[_sys]; - if (!_syst.emus) continue; - for (let _emu of _syst.emus) { - if (typeof cf[_emu].app == 'string') continue; - if (!cf[_emu].app) continue; - if (cf[_emu].app[osType]) { - cf[_emu].app = cf[_emu].app[osType]; - } else { - delete cf[_emu].app; - } - } - for (let _emu of _syst.emus) { - if (cf[_emu].cmd[osType]) { - cf[_emu].cmd = cf[_emu].cmd[osType]; - } - } - } - - // in v1.8.x the file structure of systemsDir was changed - let errCount = 0; - for (let _sys in systems) { - let _syst = systems[_sys]; - if (!_syst.emus) continue; - let _emu = _syst.emus[0]; - let moveDirs = [ - { - src: `${systemsDir}/${emus[_emu].name}`, - dest: `${systemsDir}/${_sys}` - }, - { - src: `${systemsDir}/nostlan/${_sys}`, - dest: `${systemsDir}/${_sys}/images` - }, - { - src: `${systemsDir}/${_sys}/BIN`, - dest: `${systemsDir}/${_sys}/${_emu}` - }, - { - src: `${systemsDir}/${_sys}/GAMES`, // make lowercase - dest: `${systemsDir}/${_sys}/_games` // temp folder - }, - { - src: `${systemsDir}/${_sys}/_games`, - dest: `${systemsDir}/${_sys}/games` - } - ]; - // remove old game lib files, rescanning must be done - await fs.remove(`${usrDir}/_usr/${_sys}Games.json`); - - for (let moveDir of moveDirs) { - let srcExists = await fs.exists(moveDir.src); - let destExists = await fs.exists(moveDir.dest); - - if (srcExists && !destExists) { - try { - await fs.move(moveDir.src, moveDir.dest); - } catch (ror) { - er(ror); - errCount++; - break; - } - await fs.remove(moveDir.src); - } - } - delete cf[_emu].libs; - if (cf[_emu].saves) { - delete cf[_emu].saves.dirs; - } - await fs.remove(`${systemsDir}/nostlan/${_sys}`); - - if (cf[_emu].app) { - let emuApp = util.absPath(cf[_emu].app); - if (emuApp && !(await fs.exists(emuApp))) { - delete cf[_emu].app; - } - } - } - - await this.save(); - - if (errCount > 0) { - await cui.err( - md( - 'failed to automatically move some game library folders ' + - 'to conform to the new template structure (introduced in v1.8.x). ' + - 'You must change them manually. Read the ' + - '[update log](https://github.com/quinton-ashley/nostlan/wiki/Update-Log-v1.8.x) ' + - " on Nostlan's Github wiki to find out why these changes were made." - ), - 400, - 'quit' - ); - } }; diff --git a/core/launcher.js b/core/launcher.js index 11f0790..a3688d3 100755 --- a/core/launcher.js +++ b/core/launcher.js @@ -112,10 +112,6 @@ class Launcher { this.game = game; } - if (identify && sys == 'switch') { - emu = 'yuzu'; - } - let emuApp = await this.getEmuApp(); if (!emuApp) { cui.change('emuAppMenu'); @@ -471,23 +467,28 @@ class Launcher { new Promise((resolve, reject) => { let out = ''; - let idGame = () => { - if (finished) return; - let m; - if (emu == 'yuzu' && (m = /title_id=(\w{16})/.exec(out))) { - game.tid = m[1]; - } else { - return; - } - finished = true; - this.close(); - resolve(game); - }; + /* + * Since Yuzu will no longer be updated, nostlan should + * not rely on Yuzu to identify nintendo switch games. + */ + + // let idGame = () => { + // if (finished) return; + // let m; + // if (emu == 'yuzu' && (m = /title_id=(\w{16})/.exec(out))) { + // game.tid = m[1]; + // } else { + // return; + // } + // finished = true; + // this.close(); + // resolve(game); + // }; let parseData = (data) => { if (this.state == 'closing' || finished) return; out += data.toString(); - idGame(); + // idGame(); }; this.child.stdout.on('data', parseData); @@ -495,7 +496,7 @@ class Launcher { this.child.on('close', (code) => { this._close(code); - if (!finished) idGame(); + // if (!finished) idGame(); if (!finished) reject(); }); }), diff --git a/core/themes.js b/core/themes.js index 9ec5c82..2bf1207 100755 --- a/core/themes.js +++ b/core/themes.js @@ -52,13 +52,6 @@ class Themes { }; this.gcn.getWiki = this.wii.getWiki; - // Error 403 website is down - // this.switch.getWiki = (game) => { - // let title = game.title.toLowerCase().replace(/ /g, '-'); - // title = title.replace(/:/g, ''); - // return `https://yuzu-emu.org/game/${title}/`; - // }; - this.n3ds.getWiki = (game) => { let title = game.title.toLowerCase().replace(/ /g, '-'); title = title.replace(/:/g, ''); diff --git a/package.json b/package.json index 8df3897..5ba9726 100755 --- a/package.json +++ b/package.json @@ -152,5 +152,5 @@ "postversion": "git push", "V": "npm version minor --force" }, - "version": "2.4.3" + "version": "2.5.0" } diff --git a/sys/switch/emus.json b/sys/switch/emus.json index 04b15a9..a832ba9 100644 --- a/sys/switch/emus.json +++ b/sys/switch/emus.json @@ -51,8 +51,6 @@ "name": "Yuzu", "sys": "switch", "site": "https://yuzu-emu.org/", - "patreon": "https://www.patreon.com/yuzuteam", - "discord": "https://discord.gg/u77vRWY", "app": { "linux": "org.yuzu_emu.yuzu" }, @@ -65,25 +63,6 @@ "cmd": { "linux": ["flatpak", "run", "${app}", "-g", "${game}", "-f"], "win": ["${app}", "-g", "${game}", "-f"] - }, - "install": { - "linux-x64": { - "pkgManager_flatpak": [ - ["flatpak", "remote-add", "--if-not-exists", "flathub", "https://flathub.org/repo/flathub.flatpakrepo"], - ["flatpak", "install", "flathub", "org.yuzu_emu.yuzu"] - ] - }, - "win-x64": { - "prereqs": [ - { - "installer": "https://aka.ms/vs/16/release/vc_redist.x64.exe" - } - ], - "installer": "https://github.com/yuzu-emu/liftinstall/releases/download/1.9/yuzu_install.exe" - } - }, - "update": { - "win": ["$home/AppData/Local/yuzu/maintenancetool.exe", "--launcher", "${app}"] } } } diff --git a/sys/switch/switchDB.json b/sys/switch/switchDB.json index 46943ed..131d547 100755 --- a/sys/switch/switchDB.json +++ b/sys/switch/switchDB.json @@ -270,6 +270,9 @@ }, { "id": "A2F3A", "title": "ISLAND" + }, { + "id": "A2FKA", + "title": "Cozy Grove" }, { "id": "A2FKJ", "title": "Cozy Grove" @@ -291,6 +294,9 @@ }, { "id": "A2GLD", "title": "Nickelodeon All-Star Brawl Ultimate Edition" + }, { + "id": "A2H3A", + "title": "Haiku, the Robot" }, { "id": "A2HEA", "title": "Potion Permit" @@ -336,6 +342,9 @@ }, { "id": "A2LSA", "title": "Tin Hearts" + }, { + "id": "A2LSB", + "title": "Tin Hearts" }, { "id": "A2LWA", "title": "World War Z" @@ -435,6 +444,9 @@ }, { "id": "A2UPA", "title": "Shin Hayarigami 3" + }, { + "id": "A2UPB", + "title": "Shin Hayarigami 3" }, { "id": "A2UUA", "title": "Okinawa Rush" @@ -561,6 +573,9 @@ }, { "id": "A35XA", "title": "The Legend of Heroes: Sen no Kiseki I: Kai: Thors Military Academy 1204" + }, { + "id": "A35ZA", + "title": "Black Book" }, { "id": "A36WA", "title": "WRC 10 FIA World Rally Championship" @@ -693,6 +708,9 @@ }, { "id": "A3F8B", "title": "Pups & Purrs Pet Shop" + }, { + "id": "A3F8C", + "title": "Pups & Purrs Pet Shop" }, { "id": "A3FEA", "title": "Dragon Quest Treasures" @@ -711,6 +729,9 @@ }, { "id": "A3G9B", "title": "Mon-Yu: Defeat Monsters And Gain Strong Weapons And Armor. You May Be Defeated, But Don't Give Up. Become Stronger. I Believe There Will Be A Day When The Heroes Defeat The Devil King." + }, { + "id": "A3H2A", + "title": "Tetris Effect: Connected" }, { "id": "A3H4A", "title": "World's End Club" @@ -807,6 +828,9 @@ }, { "id": "A3M8C", "title": "Spooky Spirit Shooting Gallery" + }, { + "id": "A3M8D", + "title": "Spooky Spirit Shooting Gallery" }, { "id": "A3N5A", "title": "STAR WARS: The Force Unleashed" @@ -864,6 +888,9 @@ }, { "id": "A3QGA", "title": "INSTANT SPORTS TENNIS" + }, { + "id": "A3QHA", + "title": "Stonefly" }, { "id": "A3QQA", "title": "Killer and Strawberry Plus" @@ -954,6 +981,9 @@ }, { "id": "A3TXB", "title": "Subnautica + Subnautica: Below Zero" + }, { + "id": "A3U7A", + "title": "Steel Assault" }, { "id": "A3UCA", "title": "Susanoh Nihon Shinwa RPG" @@ -969,6 +999,9 @@ }, { "id": "A3URC", "title": "Winter's Wish: Spirits of Edo" + }, { + "id": "A3URD", + "title": "Winter's Wish: Spirits of Edo" }, { "id": "A3UVA", "title": "Teenage Mutant Ninja Turtles: Shredder's Revenge" @@ -1023,6 +1056,9 @@ }, { "id": "A3YVA", "title": "SWEET CLOWN ~ A funny clown at 3:00 am ~" + }, { + "id": "A3YYA", + "title": "Sweets Swap" }, { "id": "A3YZA", "title": "Severed Steel" @@ -1032,6 +1068,9 @@ }, { "id": "A3ZTB", "title": "Pups & Purrs Animal Hospital" + }, { + "id": "A427A", + "title": "Alice in the Country of Spades: Wonderful Black World" }, { "id": "A42EA", "title": "Wild Card Football" @@ -1110,6 +1149,9 @@ }, { "id": "A45WC", "title": "My Next Life as a Villainess: All Routes Lead to Doom! -Pirates of the Disturbance-" + }, { + "id": "A45WD", + "title": "My Next Life as a Villainess: All Routes Lead to Doom!: Pirates of the Disturbance (Taiwan)" }, { "id": "A45YA", "title": "PUI PUI Molcar Let’s! Molcar Party!" @@ -1248,6 +1290,9 @@ }, { "id": "A4JXA", "title": "Here from the Mother Star" + }, { + "id": "A4JYA", + "title": "TOKOYO: Tower of Perpetuity" }, { "id": "A4K4A", "title": "The Wild at Heart" @@ -1302,6 +1347,9 @@ }, { "id": "A4R6A", "title": "Tokyo 24 Ku Inoru" + }, { + "id": "A4R6B", + "title": "Tokyo 24-ku: inoru" }, { "id": "A4S3A", "title": "The Pathless" @@ -1326,6 +1374,9 @@ }, { "id": "A4TCB", "title": "Beyond a Steel Sky" + }, { + "id": "A4TPA", + "title": "Persona 3 Portable" }, { "id": "A4TRC", "title": "Death end re;Quest 2" @@ -1431,6 +1482,9 @@ }, { "id": "A532A", "title": "NieR: Automata: The End of YoRHa Edition" + }, { + "id": "A532B", + "title": "NieR: Automata: The End of YoRHa Edition" }, { "id": "A535A", "title": "Winter Games 2023" @@ -1518,6 +1572,9 @@ }, { "id": "A598A", "title": "Hokko Life" + }, { + "id": "A599A", + "title": "STAR WARS: Knights of the Old Republic II: The Sith Lords" }, { "id": "A59ZA", "title": "Dusk Diver 2" @@ -1755,6 +1812,9 @@ }, { "id": "A5TBA", "title": "The DioField Chronicle" + }, { + "id": "A5TJA", + "title": "MLB The Show 22" }, { "id": "A5TRA", "title": "Fuyukis" @@ -1770,6 +1830,9 @@ }, { "id": "A5UPA", "title": "Deponia Collection" + }, { + "id": "A5V8B", + "title": "Touhou Genso Wanderer -Lotus Labyrinth R-" }, { "id": "A5W2A", "title": "KLONOA Phantasy Reverie Series" @@ -1800,6 +1863,9 @@ }, { "id": "A5WYA", "title": "Disco Elysium: The Final Cut" + }, { + "id": "A5WYB", + "title": "Disco Elysium: The Final Cut" }, { "id": "A5WZA", "title": "No Mans Sky" @@ -1821,6 +1887,9 @@ }, { "id": "A62ZA", "title": "Galaxy Tales: Story of Rapunzel" + }, { + "id": "A63BA", + "title": "OneShot: World Machine Edition" }, { "id": "A63HA", "title": "Redout 2" @@ -1854,6 +1923,9 @@ }, { "id": "A68TA", "title": "Reknum: Origins Collection" + }, { + "id": "A69EA", + "title": "Lil Gator Game" }, { "id": "A69FA", "title": "Prinny Presents NIS Classics Volume 3: La Pucelle: Ragnarok / Rhapsody: A Musical Adventure" @@ -1878,9 +1950,15 @@ }, { "id": "A6C3A", "title": "Birushana Senki: Ichiju no Kaze" + }, { + "id": "A6C3B", + "title": "Birushana Senki: Ichijuu no Kaze" }, { "id": "A6CCA", "title": "Asonde Shogi ga Tsuyokunaru! Ginsei Shogi DX2" + }, { + "id": "A6DQA", + "title": "Batman: Arkham Trilogy" }, { "id": "A6DXB", "title": "SIMPLE Series for Nintendo Switch Vol. 1: The Table Game Deluxe Pack" @@ -1896,6 +1974,9 @@ }, { "id": "A6GZC", "title": "CRYMACHINA " + }, { + "id": "A6HUA", + "title": "Q.U.B.E. 10th Anniversary" }, { "id": "A6HVA", "title": "Neptunia X SENRAN KAGURA: Ninja Wars" @@ -1935,6 +2016,12 @@ }, { "id": "A6LXA", "title": "Winning Post 9 2022" + }, { + "id": "A6MEA", + "title": "LOVE 3" + }, { + "id": "A6MNA", + "title": "Eiken Smart Taisaku" }, { "id": "A6NAA", "title": "Gigantosaurus: Dino Kart" @@ -2016,6 +2103,9 @@ }, { "id": "A6V3A", "title": "Life in Willowdale: Farm Adventures" + }, { + "id": "A6V3B", + "title": "Life in Willowdale: Farm Adventures" }, { "id": "A6VCA", "title": "Capcom Fighting Collection" @@ -2028,6 +2118,9 @@ }, { "id": "A6VFA", "title": "Behind the Screen & Defoliation" + }, { + "id": "A6VQA", + "title": "Cardfight!! Vanguard Dear Days" }, { "id": "A6W2A", "title": "CHAOS;HEAD NOAH/CHAOS;CHILD DOUBLE PACK" @@ -2070,6 +2163,12 @@ }, { "id": "A6ZUB", "title": "UchiTore Saitan 4-pun KinTore & Yusanso Undo " + }, { + "id": "A724A", + "title": "Gesshizu: Minna de Chokomaka Muradukuri" + }, { + "id": "A725A", + "title": "Chickip Dancers: Norinori Dance de Kokoro mo Odoru" }, { "id": "A727A", "title": "HARVESTELLA" @@ -2091,6 +2190,9 @@ }, { "id": "A73RA", "title": "Cupid Parasite: Sweet and Spicy Darling" + }, { + "id": "A73RB", + "title": "Cupid Parasite: Sweet and Spicy Darling" }, { "id": "A73VA", "title": "Sen no Hatou, Tsukisome no Kouki" @@ -2163,6 +2265,9 @@ }, { "id": "A77RA", "title": "Slaycation Paradise" + }, { + "id": "A77SA", + "title": "Whisker Waters" }, { "id": "A77TA", "title": "Jigsaw Fun 3-in-1 Collection" @@ -2199,6 +2304,9 @@ }, { "id": "A7B8A", "title": "Zorro The Chronicles" + }, { + "id": "A7B8B", + "title": "Zorro: The Chronicles" }, { "id": "A7B8C", "title": "Zorro The Chronicles" @@ -2256,6 +2364,9 @@ }, { "id": "A7JDB", "title": "Fitness Boxing: Fist of the North Star" + }, { + "id": "A7JDC", + "title": "Fitness Boxing Fist of the North Star" }, { "id": "A7JKA", "title": "Andro Dunos 2" @@ -2292,6 +2403,9 @@ }, { "id": "A7MUA", "title": "Asonde Mahjong ga Tsuyokunaru! Ginsei Mahjong DX" + }, { + "id": "A7MXA", + "title": "void* tRrLM2(); //Void Terrarium 2" }, { "id": "A7MXB", "title": "void* tRrLM2(); //Void Terrarium 2" @@ -2313,6 +2427,9 @@ }, { "id": "A7Q3A", "title": "Tengoku Struggle: Strayside" + }, { + "id": "A7Q3B", + "title": "Tengoku Struggle -Strayside-" }, { "id": "A7QBA", "title": "Blade Runner: Enhanced Edition" @@ -2430,6 +2547,15 @@ }, { "id": "A7ZJA", "title": "QUByte Classics: Zero Tolerance Collection by PIKO" + }, { + "id": "A828A", + "title": "The Rumble Fish 2" + }, { + "id": "A82AC", + "title": "RWBY: Arrowfell " + }, { + "id": "A839A", + "title": "Daisenryaku SSB " }, { "id": "A83EA", "title": "Astronite" @@ -2484,6 +2610,12 @@ }, { "id": "A889A", "title": "80 Days & Overboard!" + }, { + "id": "A88EA", + "title": "Slave Zero X" + }, { + "id": "A88EB", + "title": "Slave Zero X" }, { "id": "A88YA", "title": "Ara Fell: Enhanced Edition" @@ -2520,6 +2652,9 @@ }, { "id": "A8BJA", "title": "Bratz: Flaunt your fashion" + }, { + "id": "A8BJB", + "title": "Bratz: Flaunt your fashion: Complete Edition" }, { "id": "A8BMA", "title": "NBA 2K23" @@ -2574,6 +2709,12 @@ }, { "id": "A8HAA", "title": "Shinigami: Shibito Magire" + }, { + "id": "A8HAB", + "title": "Spirit Hunter: Death Mark II" + }, { + "id": "A8HAC", + "title": "Spirit Hunter: Death Mark II" }, { "id": "A8J8A", "title": "RPG Time: The Legend of Wright" @@ -2664,6 +2805,9 @@ }, { "id": "A8SXB", "title": "Hidden Objects Collection Volume 3" + }, { + "id": "A8TCA", + "title": "Vernal Edge" }, { "id": "A8U3A", "title": "Harvest Moon: The Winds of Anthos" @@ -2682,6 +2826,9 @@ }, { "id": "A8UZA", "title": "My Life: Pet Vet" + }, { + "id": "A8V6B", + "title": "Frogun Deluxe Edition" }, { "id": "A8VEA", "title": "Ghost Trick: Phantom Detective" @@ -2721,9 +2868,18 @@ }, { "id": "A8YZA", "title": "Tetsudou Nippon! Rosen Tabi Meichi Tetsudou Hen" + }, { + "id": "A8ZEA", + "title": "Sekaiju no Meikyu I, II, III HD Remaster" }, { "id": "A8ZHA", "title": "SympathyKiss" + }, { + "id": "A8ZHB", + "title": "Sympathy Kiss" + }, { + "id": "A8ZHC", + "title": "Sympathy Kiss" }, { "id": "A8ZJA", "title": "BIOHAZARD RE:2 CLOUD" @@ -2733,6 +2889,9 @@ }, { "id": "A92JA", "title": "Killer Frequency" + }, { + "id": "A92NA", + "title": "Shinorubi" }, { "id": "A93AA", "title": "SD Shin Kamen Rider Ranbu" @@ -2757,6 +2916,9 @@ }, { "id": "A95DA", "title": "Princess Arthur for Nintendo Switch" + }, { + "id": "A95FA", + "title": "Kanken Smart Taisaku" }, { "id": "A95GA", "title": "Helvetii" @@ -2781,6 +2943,9 @@ }, { "id": "A97LC", "title": "Master Detective Archives: RAIN CODE" + }, { + "id": "A97PA", + "title": "Mario vs. Donkey Kong" }, { "id": "A97RA", "title": "BUCCANYAR" @@ -2796,6 +2961,9 @@ }, { "id": "A97UA", "title": "ONI: Road to be the Mightiest Oni" + }, { + "id": "A97WA", + "title": "Prince of Persia The Lost Crown" }, { "id": "A983A", "title": "Encouragement of Climb: Next Summit – Ano Yama ni, Mou Ichido" @@ -2808,6 +2976,9 @@ }, { "id": "A98RA", "title": "OCTOPATH TRAVELER II" + }, { + "id": "A993A", + "title": "Saga of Sins" }, { "id": "A994A", "title": "Crime O'Clock" @@ -2823,6 +2994,9 @@ }, { "id": "A99MA", "title": "Akatsuki Yureru Koi Akari" + }, { + "id": "A99NB", + "title": "Majestic Majolical " }, { "id": "A99XA", "title": "JINKI -Infinity-" @@ -2850,6 +3024,9 @@ }, { "id": "A9CYA", "title": "Blade Assault" + }, { + "id": "A9D6A", + "title": "Aquarium" }, { "id": "A9E7A", "title": "Nuclear Blaze" @@ -2889,12 +3066,27 @@ }, { "id": "A9K8A", "title": "Infinity Strash: DRAGON QUEST The Adventure of Dai" + }, { + "id": "A9KGA", + "title": "Apathy: Narugami Gakuen Nana Fushigi " }, { "id": "A9KNA", "title": "Doraemon: Nobita's Brain Exercise Adventure" + }, { + "id": "A9KQA", + "title": "Idol Janshi Suchie-Pai Saturn Tribute" + }, { + "id": "A9KRA", + "title": "We Love Katamari REROLL+ Royal Reverie" }, { "id": "A9KRB", "title": "We Love Katamari REROLL+ Royal Reverie" + }, { + "id": "A9KRC", + "title": "We Love Katamari REROLL+ Royal Reverie" + }, { + "id": "A9KRD", + "title": "We Love Katamari REROLL+ Royal Reverie" }, { "id": "A9L7A", "title": "Koi Suru Kanojo no Bukiyou na Butai" @@ -2922,6 +3114,9 @@ }, { "id": "A9PVA", "title": "Cosmic Fantasy Collection" + }, { + "id": "A9PVB", + "title": "COSMIC FANTASY COLLECTION" }, { "id": "A9QAA", "title": "Tetsudou Nippon! Real Pro Tokkyuu Soukou! Nagoya Tetsudou-hen" @@ -2943,6 +3138,15 @@ }, { "id": "A9QNA", "title": "My Universe: My Baby Dragon" + }, { + "id": "A9RLA", + "title": "Eiyuden Chronicle: Hundred Heroes" + }, { + "id": "A9RLD", + "title": "Eiyuden Chronicle Hundred Heroes" + }, { + "id": "A9RWA", + "title": "Another Code: Recollection" }, { "id": "A9SBA", "title": "Valthirian Arc: Hero School Story 2" @@ -2955,18 +3159,33 @@ }, { "id": "A9STB", "title": "Baby Shark: Sing & Swim Party" + }, { + "id": "A9T4A", + "title": "UNDER NIGHT IN-BIRTH II Sys:Celes" + }, { + "id": "A9T4B", + "title": "UNDER NIGHT IN-BIRTH II Sys:Celes" + }, { + "id": "A9TDA", + "title": "Kingdom Come Deliverance: Royal Edition" }, { "id": "A9TTA", "title": "Parents Vs Kids" }, { "id": "A9UKA", "title": "Amakano" + }, { + "id": "A9UNA", + "title": "Witch's Garden" }, { "id": "A9USA", "title": "Omoide Kakaete Ai ni Koi!!" }, { "id": "A9V6A", "title": "AEW: Fight Forever" + }, { + "id": "A9VDA", + "title": "Temirana Koku no Tsuiteru Hime to Tsuitenai Kishidan" }, { "id": "A9VLB", "title": "GOODBYE WORLD" @@ -3027,6 +3246,9 @@ }, { "id": "A9XUA", "title": "Alchemic Cutie" + }, { + "id": "A9XWA", + "title": "MLB The Show 23" }, { "id": "A9Y3A", "title": "Doctor Who: Duo Bundle" @@ -3042,9 +3264,15 @@ }, { "id": "A9Z2A", "title": "A Space for the Unbound" + }, { + "id": "A9Z5A", + "title": "Library Of Ruina" }, { "id": "A9ZLA", "title": "River City: Rival Showdown" + }, { + "id": "A9ZPB", + "title": "The Legend of Steel Empire" }, { "id": "AAAAA", "title": "The Legend of Zelda: Breath of the Wild", @@ -3110,6 +3338,9 @@ }, { "id": "AABPB", "title": "Mario Kart 8 Deluxe" + }, { + "id": "AABPK", + "title": "Mario Kart 8 Deluxe Bundle (Game + Booster Course Pass)" }, { "id": "AABQA", "title": "ARMS", @@ -3463,6 +3694,9 @@ "id": "AD82A", "title": "Schlag den Star: Das Spiel", "tid": "0100ACB004006000" + }, { + "id": "AD87D", + "title": "RIVE: Ultimate Edition + Swap This! " }, { "id": "AD8AA", "title": "Yesterday Origins", @@ -3813,6 +4047,10 @@ }, { "id": "AENWA", "title": "Superbeat: Xonic" + }, { + "id": "AEPGA", + "title": "Severed", + "tid": "0100157004512000" }, { "id": "AEQKA", "title": "Overcooked! Special Edition" @@ -3922,6 +4160,10 @@ }, { "id": "AF7TB", "title": "Hakuoki: Shinkai: Fuukaden for Nintendo Switch" + }, { + "id": "AF82A", + "title": "Gorogoa", + "tid": "0100F2A005C98000" }, { "id": "AF86A", "title": "Code of Princess EX", @@ -4337,6 +4579,9 @@ }, { "id": "AHXEB", "title": "Pawarumi: Definitive Edition" + }, { + "id": "AHZMA", + "title": "ATOMIK: RunGunJumpGun" }, { "id": "AJ29C", "title": "Max: The Curse of Brotherhood", @@ -4827,9 +5072,15 @@ }, { "id": "ALZXA", "title": "Pokémon Scarlet" + }, { + "id": "ALZXG", + "title": "Pokemon Scarlet + The Hidden Treasure of Area Zero" }, { "id": "ALZYA", "title": "Pokémon Violet" + }, { + "id": "ALZYG", + "title": "Pokemon Violet + The Hidden Treasure of Area Zero" }, { "id": "AM4ZB", "title": "Fairune Collection", @@ -4941,9 +5192,19 @@ "id": "AMHZA", "title": "Salt and Sanctuary", "tid": "0100D250083B4000" + }, { + "id": "AMJJA", + "title": "Princess Peach Showtime!", + "img": { + "box": "q" + } }, { "id": "AMJLA", "title": "Boku no Kanojo wa Ningyo-Hime!: My Girlfriend Is a Mermaid!" + }, { + "id": "AMJSA", + "title": "The Darkside Detective", + "tid": "01003DE00918E000" }, { "id": "AMKCA", "title": "Team Sonic Racing", @@ -5043,6 +5304,9 @@ }, { "id": "AMSMC", "title": "Touhou Genso Wanderer: Reloaded" + }, { + "id": "AMSMD", + "title": "Fushigi no Gensokyo TOD: Reloaded -" }, { "id": "AMSTA", "title": "SD Gundam: G Generation Genesis for Nintendo Switch" @@ -5067,6 +5331,9 @@ }, { "id": "AMU5B", "title": "Bass Pro Shops: The Strike: Championship Edition" + }, { + "id": "AMULE", + "title": "Gotta Protectors: Cart of Darkness" }, { "id": "AMUMA", "title": "Lode Runner Legacy" @@ -5421,6 +5688,10 @@ "id": "APABA", "title": "American Ninja Warrior: Challenge", "tid": "010089D00A3FA000" + }, { + "id": "APAHA", + "title": "Dust: An Elysian Tail", + "tid": "0100B6E00A420000" }, { "id": "APC7A", "title": "Pure / Electric Love \"What do you want?\": Eri Kitami -" @@ -5956,6 +6227,9 @@ }, { "id": "AQBXB", "title": "Nelke & the Legendary Alchemists: Ateliers of the New World" + }, { + "id": "AQC7A", + "title": "Assault Android Cactus+" }, { "id": "AQCJA", "title": "Memories Off: Innocent Fille" @@ -6077,6 +6351,10 @@ "id": "AQNBA", "title": "Q.U.B.E. 2", "tid": "010023600AA34000" + }, { + "id": "AQNCA", + "title": "Broforce", + "tid": "010060A00B53C000" }, { "id": "AQNLA", "title": "The Alliance Alive HD Remastered" @@ -6493,6 +6771,9 @@ }, { "id": "ARE8B", "title": "Lethal League Blaze" + }, { + "id": "AREAD", + "title": "R-Type Dimensions EX" }, { "id": "AREHA", "title": "The LEGO Movie 2 Videogame" @@ -7172,6 +7453,9 @@ }, { "id": "ASNKA", "title": "Lovecraft's Untold Stories" + }, { + "id": "ASNMA", + "title": "Divinity: Original Sin 2: Definitive Edition" }, { "id": "ASP3A", "title": "Just Die Already" @@ -7193,6 +7477,9 @@ }, { "id": "ASQ4C", "title": "The Ninja Saviors: Return of the Warriors" + }, { + "id": "ASQVA", + "title": "Super Life of Pixel" }, { "id": "ASQZA", "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 4 Road to Boruto" @@ -7251,6 +7538,9 @@ }, { "id": "ASTED", "title": "Birushana: Rising Flower of Genpei" + }, { + "id": "ASTKA", + "title": "Wrath: Aeon of Ruin" }, { "id": "ASTTA", "title": "Ion Fury" @@ -7484,6 +7774,9 @@ }, { "id": "ATDPA", "title": "Super Toy Cars 2" + }, { + "id": "ATFPA", + "title": "SteamWorld Quest: Hand of Gilgamech" }, { "id": "ATFRC", "title": "Fell Seal: Arbiter's Mark: Deluxe Edition" @@ -7928,6 +8221,9 @@ }, { "id": "AUBQA", "title": "Xenoblade Chronicles: Definitive Edition" + }, { + "id": "AUCCB", + "title": "Dead in Vinland" }, { "id": "AUCLA", "title": "Ben 10: Power Trip!" @@ -8153,6 +8449,9 @@ }, { "id": "AURVL", "title": "The Witcher 3: Wild Hunt [Complete Edition]" + }, { + "id": "AUS4A", + "title": "Panzer Dragoon: Remake" }, { "id": "AUSDA", "title": "Sakuna: Of Rice and Ruin" @@ -8589,6 +8888,9 @@ }, { "id": "AVMUA", "title": "FLOWERS Les Quatre Saisons" + }, { + "id": "AVMXA", + "title": "Sense: A Cyberpunk Ghost Story" }, { "id": "AVN4A", "title": "Void tRrLM();" @@ -8815,6 +9117,9 @@ }, { "id": "AW3JC", "title": "Re-ZERO: Starting Life in Another World: The Prophecy of the Throne" + }, { + "id": "AW4KA", + "title": "Mushihimesama" }, { "id": "AW4TC", "title": "Crysis Remastered" @@ -9164,6 +9469,9 @@ }, { "id": "AWYVE", "title": "Trinity Trigger" + }, { + "id": "AWYVF", + "title": "Trinity Trigger" }, { "id": "AWZ3F", "title": "Hidden Through Time: Definitive Edition" @@ -9704,6 +10012,9 @@ }, { "id": "AXXCA", "title": "Rolling Sky Collection" + }, { + "id": "AXXJA", + "title": "Curse of the Dead Gods" }, { "id": "AXXUB", "title": "Zengeon" @@ -9731,6 +10042,9 @@ }, { "id": "AXZ6A", "title": "Kono Subarashii Sekai ni Shukufuku o! Kono Yokubukai Game ni Shinpan o!" + }, { + "id": "AXZ6B", + "title": "KONOSUBA!: God's Blessing on this Wonderful World! Love For These Clothes Of Desire!" }, { "id": "AXZLA", "title": "Nexomon: Extinction" @@ -9905,6 +10219,9 @@ }, { "id": "AYCKA", "title": "MX vs ATV All Out" + }, { + "id": "AYDBB", + "title": "Kwaidan: Azuma Manor Story" }, { "id": "AYE8A", "title": "Tennis World Tour 2" @@ -9995,6 +10312,9 @@ }, { "id": "AYKPA", "title": "PAW Patrol Mighty Pups Save Adventure Bay" + }, { + "id": "AYKXA", + "title": "#DRIVE" }, { "id": "AYL4A", "title": "Shantae: Risky's Revenge: Director's Cut" @@ -10058,6 +10378,18 @@ }, { "id": "AYQYA", "title": "Hidden Objects Collection" + }, { + "id": "AYRGA", + "title": "Jujutsu Kaisen Cursed Clash" + }, { + "id": "AYRGB", + "title": "Jujutsu Kaisen Cursed Clash" + }, { + "id": "AYRGC", + "title": "Jujutsu Kaisen Cursed Clash" + }, { + "id": "AYRGD", + "title": "Jujutsu Kaisen Cursed Clash" }, { "id": "AYRLA", "title": "art of rally" @@ -10136,6 +10468,9 @@ }, { "id": "AYY2A", "title": "My Universe: Cooking Star Restaurant" + }, { + "id": "AYYHA", + "title": "Here Comes Niko!" }, { "id": "AYYVA", "title": "Nobunaga no Yabou Shinsei" @@ -10370,9 +10705,15 @@ }, { "id": "AZLSA", "title": "Big Brain Academy: Brain vs. Brain" + }, { + "id": "AZLXA", + "title": "HAAK" }, { "id": "AZM3A", "title": "Temtem" + }, { + "id": "AZMQB", + "title": "Perky Little Things" }, { "id": "AZMUA", "title": "Tokeijikake no Apocalypse" @@ -10514,6 +10855,9 @@ }, { "id": "AZVZA", "title": "Renzo Racer" + }, { + "id": "AZW2A", + "title": "Lost Words: Beyond the Page" }, { "id": "AZWVA", "title": "Raiden IV x MIKADO remix" @@ -10557,15 +10901,30 @@ }, { "id": "AZY8B", "title": "Deiland: Pocket Planet" + }, { + "id": "AZYKA", + "title": "Touhou Luna Nights" + }, { + "id": "BA2TA", + "title": "BATSUGUN Saturn Tribute Boosted" }, { "id": "BA3LA", "title": "Taito LD Game Collection" + }, { + "id": "BA3UB", + "title": "Wand of Fortune R for Nintendo Switch" }, { "id": "BA4UA", "title": "The Quintessential Quintuplets: Gotopazu Story" }, { "id": "BA53A", "title": "Hyperdimension Neptunia: Sisters vs. Sisters" + }, { + "id": "BA53B", + "title": "Neptunia: Sisters VS Sisters" + }, { + "id": "BA53D", + "title": "Neptunia: Sisters VS Sisters" }, { "id": "BA5RA", "title": "Sakura, Moyu.: as the Night's, Reincarnation: " @@ -10575,12 +10934,18 @@ }, { "id": "BA6ZA", "title": "Fuyukara, Kururu." + }, { + "id": "BA7DA", + "title": "Macross: Shooting Insight" }, { "id": "BA7HA", "title": "Floral Flowlove" }, { "id": "BA7ZA", "title": "PSYCHIC 5: ETERNAL" + }, { + "id": "BA8BA", + "title": "Spirit of the Island" }, { "id": "BA8LA", "title": "Hyperdimension Neptunia GameMaker R:Evolution" @@ -10671,6 +11036,15 @@ }, { "id": "BABKA", "title": "Dragon Quest Heroes I•II for Nintendo Switch" + }, { + "id": "BACCA", + "title": "Unicorn Overlord" + }, { + "id": "BACCB", + "title": "Unicorn Overlord" + }, { + "id": "BACCC", + "title": "Unicorn Overlord" }, { "id": "BACSA", "title": "Bluey: The Videogame" @@ -10692,9 +11066,15 @@ }, { "id": "BAFJA", "title": "Hatsuyuki Sakura: White Graduation" + }, { + "id": "BAFSA", + "title": "Buddy Simulator 1984" }, { "id": "BAFUA", "title": "Session: Skate Sim" + }, { + "id": "BAFXA", + "title": "Hyper Gunsport" }, { "id": "BAGBA", "title": "RayStorm X RayCrisis HD Collection" @@ -10704,6 +11084,9 @@ }, { "id": "BAJ3A", "title": "Vampire Survivors" + }, { + "id": "BAJXA", + "title": "Redemption Reapers" }, { "id": "BAKUA", "title": "Touhou: New World" @@ -10719,6 +11102,9 @@ }, { "id": "BAN9A", "title": "Karumaruka Circle" + }, { + "id": "BANAA", + "title": "Atelier Marie Remake: The Alchemist of Salburg" }, { "id": "BANAB", "title": "Atelier Marie Remake: The Alchemist of Salburg" @@ -10743,6 +11129,9 @@ }, { "id": "BAPGB", "title": "Norn9: Last Era" + }, { + "id": "BAPRB", + "title": "Demon Slayer -Kimetsu no Yaiba- Sweep the Board!" }, { "id": "BAQ5A", "title": "Have A Nice Death" @@ -10752,9 +11141,15 @@ }, { "id": "BAQXA", "title": "The Cube" + }, { + "id": "BASDA", + "title": "The Bridge Curse: Road to Salvation" }, { "id": "BASFA", "title": "Mortal Shell: Complete Edition" + }, { + "id": "BASNA", + "title": "Sword & Fairy Inn 2" }, { "id": "BATFA", "title": "TT Isle of Man: Ride on the Edge 3" @@ -10818,6 +11213,9 @@ }, { "id": "BB25A", "title": "Tad the Lost Explorer. Craziest and Madness Edition" + }, { + "id": "BB2TA", + "title": "Shadows Over Loathing" }, { "id": "BB3EB", "title": "Passpartout 2: The Lost Artist " @@ -10830,21 +11228,42 @@ }, { "id": "BB5BA", "title": "Rubberduck Wave Racer" + }, { + "id": "BB5MA", + "title": "9 R.I.P." + }, { + "id": "BB5QA", + "title": "Outward Definitive Edition" }, { "id": "BB6UA", "title": "Spy x Anya: Operation Memories" + }, { + "id": "BB7ZA", + "title": "Rasen Reijoh Spiral Ojousama Chohatsu no Makina" }, { "id": "BB86A", "title": "Inspector Gadget: Mad Time Party " + }, { + "id": "BB8EA", + "title": "SOUTH PARK: SNOW DAY!" + }, { + "id": "BB8EB", + "title": "SOUTH PARK: SNOW DAY!" }, { "id": "BB8SA", "title": "Dino Ranch: Ride to the Rescue" + }, { + "id": "BBA6B", + "title": "Telenet Shooting Collection" }, { "id": "BBAFA", "title": "EA Sports FC 24" }, { "id": "BBBBA", "title": "Afterimage" + }, { + "id": "BBBHA", + "title": "Yahari Game Demo Ore no Seishun Love-Kome wa Machigatteiru. & Zoku: Oatome Set" }, { "id": "BBC3A", "title": "Sushi Bar Express" @@ -10854,6 +11273,9 @@ }, { "id": "BBCFA", "title": "Arcana of Paradise -The Tower-" + }, { + "id": "BBCHA", + "title": "Snufkin: Melody of Moominvalley" }, { "id": "BBCJA", "title": "Grim Guardians: Demon Purge" @@ -10863,9 +11285,15 @@ }, { "id": "BBCTB", "title": "Ys Memoire: The Oath in Felghana" + }, { + "id": "BBDBA", + "title": "Promenade" }, { "id": "BBE5A", "title": "Cross Tails" + }, { + "id": "BBE6A", + "title": "Utakata no Uchronia" }, { "id": "BBEHA", "title": "Agatha Christie: Hercule Poirot: The London Case" @@ -10875,6 +11303,9 @@ }, { "id": "BBEQA", "title": "DreamWorks Trolls Remix Rescue" + }, { + "id": "BBFDA", + "title": "PJ Masks Power Heroes: Mighty Alliance" }, { "id": "BBFGA", "title": "Noob: The Factionless" @@ -10887,18 +11318,27 @@ }, { "id": "BBGZA", "title": "Hakuoki SSL: sweet school life for Nintendo Switch" + }, { + "id": "BBH2A", + "title": "Lords of Exile" }, { "id": "BBH3A", "title": "DreamWorks All-Star Kart Racing" }, { "id": "BBH9A", "title": "Animal Hospital" + }, { + "id": "BBJDA", + "title": "RPG Maker WITH" }, { "id": "BBKNA", "title": "Hanasaki Work Spring!" }, { "id": "BBLHA", "title": "Hyper→Highspeed→Genius" + }, { + "id": "BBLLA", + "title": "Garden Simulator" }, { "id": "BBLYA", "title": "Blasphemous 2" @@ -10911,12 +11351,27 @@ }, { "id": "BBPRA", "title": "AKAIITO & AOISHIRO HD REMASTER" + }, { + "id": "BBQ6A", + "title": "Shiren the Wanderer: The Mystery Dungeon of Serpentcoil Island" + }, { + "id": "BBQ6B", + "title": "Shiren the Wanderer: The Mystery Dungeon of Serpentcoil Island" + }, { + "id": "BBQ6C", + "title": "Shiren the Wanderer: The Mystery Dungeon of Serpentcoil Island" }, { "id": "BBU9A", "title": "Wand of Fortune R2 FD: Kimi ni Sasageru Epilogue for Nintendo Switch" + }, { + "id": "BBWUA", + "title": "PlateUp!" }, { "id": "BBX6A", "title": "NBA 2K24 Kobe Bryant Edition" + }, { + "id": "BBXCB", + "title": "Livestream 2: Escape from Togaezuka Happy Place" }, { "id": "BBXNA", "title": "Trine 5: A Clockwork Conspiracy" @@ -10941,6 +11396,12 @@ }, { "id": "BBZXA", "title": "Houkago Cinderella 2" + }, { + "id": "BC2ZB", + "title": "The Legend of Heroes: Kuro no Kiseki for Nintendo Switch" + }, { + "id": "BC3EA", + "title": "Annapurna Interactive Collection" }, { "id": "BC3YA", "title": "Animal Kart Racer 2" @@ -10956,12 +11417,18 @@ }, { "id": "BC7SA", "title": "Irem Collection Volume 1" + }, { + "id": "BC7SB", + "title": "Irem Collection Volume 1" }, { "id": "BC8KA", "title": "Cry Babies Magic Tears: The Big Game" }, { "id": "BC99M", "title": "CATAN: Console Edition SUPER DELUXE" + }, { + "id": "BC9UA", + "title": "Apollo Justice: Ace Attorney Trilogy" }, { "id": "BCA4A", "title": "The Sisters 2: Road to Fame" @@ -10977,6 +11444,9 @@ }, { "id": "BCARA", "title": "GRISAIA PHANTOM TRIGGER 5.5 to 08" + }, { + "id": "BCBHA", + "title": "Garden Life: A Cozy Simulator" }, { "id": "BCBRA", "title": "DESOLATIUM" @@ -11028,9 +11498,18 @@ }, { "id": "BCK6A", "title": "Metal Gear Solid: Master Collection Vol. 1" + }, { + "id": "BCKJA", + "title": "Fitness Boxing feat. Hatsune Miku: Isshoni Exercise" + }, { + "id": "BCLEA", + "title": "AK-xolotl" }, { "id": "BCLNA", "title": "GetsuFumaDen: Undying Moon" + }, { + "id": "BCMFA", + "title": "Emergency Call: The Attack Squad" }, { "id": "BCMHA", "title": "Wildshade: Unicorn Champions" @@ -11055,6 +11534,12 @@ }, { "id": "BCSLA", "title": "Nickelodeon Kart Racers Collection" + }, { + "id": "BCU9A", + "title": "Game Center CX Arino no Chosenjo 1+2 REPLAY" + }, { + "id": "BCUJA", + "title": "SaGa Emerald Beyond" }, { "id": "BCULA", "title": "Kemco RPG Selection Vol. 4" @@ -11064,6 +11549,9 @@ }, { "id": "BCUQA", "title": "Death or Treat" + }, { + "id": "BCUVA", + "title": "Lunar Lander Beyond" }, { "id": "BCV3A", "title": "Inescapable: No Rules, No Rescue" @@ -11076,6 +11564,9 @@ }, { "id": "BCXNA", "title": "Tetsudo Nippon! Rosen Tabi EX Seiryu Unten Nagaragawa Tetsudo Hen" + }, { + "id": "BCY8A", + "title": "Of the Red, the Light, and the Ayakashi Tsuzuri" }, { "id": "BCYBA", "title": "Paleo Pines" @@ -11085,15 +11576,36 @@ }, { "id": "BCZUA", "title": "Hammerwatch 2: The Chronicles Edition" + }, { + "id": "BD3VA", + "title": "Expeditions: A MudRunner Game" + }, { + "id": "BD4MB", + "title": "The Legend of Legacy HD Remastered" + }, { + "id": "BD4MC", + "title": "The Legend of Legacy HD Remastered" + }, { + "id": "BD4RA", + "title": "LISA: Definitive Edition" + }, { + "id": "BD65A", + "title": "MLB The Show 24" }, { "id": "BD8QH", "title": "Party Party Time" + }, { + "id": "BD9BB", + "title": "Assault Suit Leynos 2 Saturn Tribute" }, { "id": "BD9DA", "title": "schleich Puzzles FARM WORLD" }, { "id": "BDALA", "title": "Amakano ~Second Season~" + }, { + "id": "BDG8A", + "title": "Boku wa Koukuu Kanseikan: Airport Hero Haneda ALLSTARS" }, { "id": "BDGLA", "title": "Fresh Start" @@ -11121,6 +11633,9 @@ }, { "id": "BDVQA", "title": "30 Sport Games in 1" + }, { + "id": "BDXNA", + "title": "Hakuouki: Yuugi Roku Taishitachi no Daienkai" }, { "id": "BDXXA", "title": "RollerCoaster Tycoon Adventures Deluxe" @@ -11130,24 +11645,87 @@ }, { "id": "BE6ZA", "title": "SUNSOFT Mahjong Solitaire -Shanghai LEGEND-" + }, { + "id": "BE7QA", + "title": "Winning Post 10 2024" }, { "id": "BEE4A", "title": "Coffee Talk 2-in-1 Double Pack" + }, { + "id": "BEEHA", + "title": "Crayon Shin-chan: Shiro of Coal Town" + }, { + "id": "BEGMA", + "title": "DreadOut 2" }, { "id": "BEHEA", "title": "Train Valley Collection" + }, { + "id": "BEJDA", + "title": "Kurenai no Homura: Sanada Ninpou Chou for Nintendo Switch" }, { "id": "BEKXA", "title": "L.O.L. Surprise! Roller Dreams Racing" + }, { + "id": "BENJA", + "title": "Bokura no Keshigomu Otoshi 3 + Special Set" }, { "id": "BENKA", "title": "Arcade Game Zone" + }, { + "id": "BENMA", + "title": "The Curse of Kudan" + }, { + "id": "BEPFA", + "title": "Yohane the Parhelion: NUMAZU in the MIRAGE -" }, { "id": "BEPGA", "title": "TriggerHeart EXELICA" }, { "id": "BERGA", "title": "Cube Merge 2048" + }, { + "id": "BEU7A", + "title": "Ambitious Mission" + }, { + "id": "BEV4A", + "title": "Teenage Mutant Ninja Turtles Arcade: Wrath of the Mutants" + }, { + "id": "BEW6A", + "title": "School Girlfriend" + }, { + "id": "BF42A", + "title": "Dokyusei: Bangin' Summer CSver" + }, { + "id": "BF8NA", + "title": "Kemco RPG Selection Vol. 6" + }, { + "id": "BFESA", + "title": "Felix the Cat" + }, { + "id": "BFH4A", + "title": "Saint Maker" + }, { + "id": "BFLYA", + "title": "LUNARiA -Virtualized Moonchild-" + }, { + "id": "BFQMB", + "title": "Ufouria 2: The Saga" + }, { + "id": "BFUAA", + "title": "Amairo Chocolate" + }, { + "id": "BFZMA", + "title": "Hentai Sudoku" + }, { + "id": "BGCBB", + "title": "Contraptions Collection" + }, { + "id": "BGFHA", + "title": "Mom Hid My Game! Collection " + }, { + "id": "BGT2A", + "title": "Junior Labyrinth" }, { "id": "ZAAAA", "title": "Biohazard Revelations Collection [Best Price]" @@ -11271,6 +11849,9 @@ }, { "id": "A23TA", "title": "Baby Puzzle: First Learning Shapes for Toddlers" + }, { + "id": "A23TB", + "title": "Baby Puzzle: First Learning Shapes for Toddlers" }, { "id": "A23UA", "title": "One Escape" @@ -11307,9 +11888,15 @@ }, { "id": "A24NA", "title": "Tetragon" + }, { + "id": "A24ND", + "title": "Tetragon" }, { "id": "A24QA", "title": "Dice Legacy" + }, { + "id": "A24RB", + "title": "Autonauts" }, { "id": "A24SA", "title": "Rock 'N Racing Bundle 3 in 1" @@ -11352,6 +11939,9 @@ }, { "id": "A25PA", "title": "Move or Die: Unleashed" + }, { + "id": "A25PB", + "title": "Move or Die: Unleashed" }, { "id": "A25RA", "title": "Hellbreachers" @@ -11445,6 +12035,9 @@ }, { "id": "A27VA", "title": "Dwarf Journey" + }, { + "id": "A282B", + "title": "Curved Space" }, { "id": "A283A", "title": "Everhood" @@ -11517,6 +12110,9 @@ }, { "id": "A29WA", "title": "Sheepo" + }, { + "id": "A29WC", + "title": "Sheepo" }, { "id": "A29ZA", "title": "Sokodice" @@ -11745,9 +12341,6 @@ }, { "id": "A2FHA", "title": "Defentron" - }, { - "id": "A2FKA", - "title": "Cozy Grove" }, { "id": "A2FKB", "title": "Cozy Grove" @@ -11829,9 +12422,6 @@ }, { "id": "A2GYA", "title": "To the Top, Mammoth!" - }, { - "id": "A2H3A", - "title": "Haiku, the Robot" }, { "id": "A2H5A", "title": "Stardash" @@ -12708,9 +13298,6 @@ }, { "id": "A35RC", "title": "Undead Battle Royale" - }, { - "id": "A35ZA", - "title": "Black Book" }, { "id": "A368A", "title": "Get-A-Grip Chip and the Body Bugs" @@ -13120,9 +13707,6 @@ }, { "id": "A3GXA", "title": "Know by heart..." - }, { - "id": "A3H2A", - "title": "Tetris Effect: Connected" }, { "id": "A3H7A", "title": "Inexistence Rebirth" @@ -13249,6 +13833,9 @@ }, { "id": "A3KUA", "title": "Die With Glory" + }, { + "id": "A3L8A", + "title": "Give It Up! Bouncy" }, { "id": "A3L9A", "title": "Monster Truck XT Airport Derby" @@ -13444,6 +14031,9 @@ }, { "id": "A3PSA", "title": "Space Marshals 2" + }, { + "id": "A3PSB", + "title": "Space Marshals 2" }, { "id": "A3PUA", "title": "Moon Raider" @@ -13483,9 +14073,6 @@ }, { "id": "A3QFA", "title": "Animal Learning Puzzle for Toddlers and Kids" - }, { - "id": "A3QHA", - "title": "Stonefly" }, { "id": "A3QLA", "title": "Beach Bounce Remastered" @@ -13510,6 +14097,9 @@ }, { "id": "A3QZA", "title": "Mahluk dark demon" + }, { + "id": "A3R3A", + "title": "502's Arcade" }, { "id": "A3R5A", "title": "Beasts of Maravilla Island" @@ -13618,9 +14208,6 @@ }, { "id": "A3U3A", "title": "Foodtruck Arena" - }, { - "id": "A3U7A", - "title": "Steel Assault" }, { "id": "A3U8A", "title": "Rotund Takeoff" @@ -13747,6 +14334,9 @@ }, { "id": "A3X8A", "title": "DoDonPachi Resurrection" + }, { + "id": "A3X9A", + "title": "Hex Gambit: Respawned" }, { "id": "A3XAA", "title": "Airborne Kingdom" @@ -13801,9 +14391,6 @@ }, { "id": "A3YXA", "title": "Brick Bat Crazy" - }, { - "id": "A3YYA", - "title": "Sweets Swap" }, { "id": "A3Z4A", "title": "Tomb of the ?ask" @@ -13879,6 +14466,9 @@ }, { "id": "A42JA", "title": "AnimaLudo" + }, { + "id": "A42LA", + "title": "Lake" }, { "id": "A42MA", "title": "Wytchwood" @@ -13927,6 +14517,9 @@ }, { "id": "A444A", "title": "Super Archer" + }, { + "id": "A447A", + "title": "Plumbers Don't Wear Ties: Definitive Edition" }, { "id": "A449A", "title": "Armed Emeth" @@ -14491,9 +15084,6 @@ }, { "id": "A4JUA", "title": "#1 Anagrams" - }, { - "id": "A4JYA", - "title": "TOKOYO: Tower of Perpetuity" }, { "id": "A4JZA", "title": "Haunted Dawn: The Zombie Apocalypse" @@ -14545,6 +15135,9 @@ }, { "id": "A4LEA", "title": "A Little Lily Princess" + }, { + "id": "A4LFA", + "title": "DateJournal" }, { "id": "A4LGA", "title": "Eat your letters" @@ -14686,6 +15279,9 @@ }, { "id": "A4QPA", "title": "A Juggler's Tale" + }, { + "id": "A4QQA", + "title": "Grotto" }, { "id": "A4QRA", "title": "A Plague Tale: Innocence: Cloud Version" @@ -14785,9 +15381,6 @@ }, { "id": "A4TMB", "title": "Japanese Escape Games The Retro House" - }, { - "id": "A4TPA", - "title": "Persona 3 Portable" }, { "id": "A4TQA", "title": "Persona 4 Golden" @@ -14920,6 +15513,9 @@ }, { "id": "A4WCA", "title": "XEL" + }, { + "id": "A4WFA", + "title": "Bubble Bunny" }, { "id": "A4WKA", "title": "Christmas Tina" @@ -14998,6 +15594,9 @@ }, { "id": "A4XZA", "title": "Aquatic Rampage" + }, { + "id": "A4Y4A", + "title": "UNTURNED" }, { "id": "A4Y6A", "title": "Pix Jungle Adventures" @@ -15337,12 +15936,15 @@ }, { "id": "A594A", "title": "Dragon Hills" - }, { - "id": "A599A", - "title": "STAR WARS: Knights of the Old Republic II: The Sith Lords" }, { "id": "A59AA", "title": "The Bear And The Admiral" + }, { + "id": "A59BA", + "title": "Not Tonight 2" + }, { + "id": "A59EA", + "title": "Frogsong" }, { "id": "A59FA", "title": "Blackberry Honey" @@ -15493,6 +16095,9 @@ }, { "id": "A5E9A", "title": "Super Hoops" + }, { + "id": "A5EBA", + "title": "A Tale of Paper: Refolded" }, { "id": "A5EDA", "title": "Freddy Spaghetti 2" @@ -16006,6 +16611,9 @@ }, { "id": "A5SMA", "title": "Angel's Punishment" + }, { + "id": "A5SPA", + "title": "Tales of Kenzera: ZAU" }, { "id": "A5STA", "title": "Blind Postman" @@ -16021,9 +16629,6 @@ }, { "id": "A5TFA", "title": "Mary Kay Andrews: The Fixer Upper" - }, { - "id": "A5TJA", - "title": "MLB The Show 22" }, { "id": "A5TQA", "title": "Concordia: Digital Edition" @@ -16222,6 +16827,9 @@ }, { "id": "A625A", "title": "Noel the Mortal Fate" + }, { + "id": "A626A", + "title": "Sophia the Traveler" }, { "id": "A629A", "title": "Crazy Athletics: Summer Sports and Games" @@ -16261,9 +16869,6 @@ }, { "id": "A638A", "title": "Dinogotchi" - }, { - "id": "A63BA", - "title": "OneShot: World Machine Edition" }, { "id": "A63EA", "title": "Pure Mini Golf" @@ -16507,9 +17112,6 @@ }, { "id": "A69BA", "title": "Quintus and the Absent Truth" - }, { - "id": "A69EA", - "title": "Lil Gator Game" }, { "id": "A69LA", "title": "Swords & Bones" @@ -16618,6 +17220,9 @@ }, { "id": "A6BTA", "title": "Zumba Aqua" + }, { + "id": "A6BVA", + "title": "Rising Lords" }, { "id": "A6BWA", "title": "Arcadia Fallen" @@ -16663,6 +17268,9 @@ }, { "id": "A6CSA", "title": "Wildfrost" + }, { + "id": "A6CYA", + "title": "Ato" }, { "id": "A6CZA", "title": "Frog Hop" @@ -16705,9 +17313,6 @@ }, { "id": "A6DMA", "title": "The Song Out of Space" - }, { - "id": "A6DQA", - "title": "Batman: Arkham Trilogy" }, { "id": "A6DVA", "title": "Lynn, The Girl Drawn On Puzzles" @@ -16819,6 +17424,9 @@ }, { "id": "A6FTA", "title": "Maximus 2" + }, { + "id": "A6FUA", + "title": "Dungeon Drafters" }, { "id": "A6G3A", "title": "Simple Dominoes" @@ -16885,9 +17493,6 @@ }, { "id": "A6HTA", "title": "Toree 2" - }, { - "id": "A6HUA", - "title": "Q.U.B.E. 10th Anniversary" }, { "id": "A6HWA", "title": "Composer" @@ -16987,6 +17592,9 @@ }, { "id": "A6KWA", "title": "Crazy Trucks" + }, { + "id": "A6KYA", + "title": "Open Roads" }, { "id": "A6L2B", "title": "Japanese Escape Games The Light and Mirror Room" @@ -17038,9 +17646,6 @@ }, { "id": "A6MBA", "title": "Monorail Stories" - }, { - "id": "A6MEA", - "title": "LOVE 3" }, { "id": "A6MLA", "title": "Capcom Arcade 2nd Stadium" @@ -17356,6 +17961,9 @@ }, { "id": "A6TWA", "title": "The Longest Road on Earth" + }, { + "id": "A6U2A", + "title": "Farm Knight Adventures" }, { "id": "A6U3A", "title": "Mini Words Collection" @@ -17452,9 +18060,6 @@ }, { "id": "A6VPA", "title": "Detective Di: The Silk Rose Murders" - }, { - "id": "A6VQA", - "title": "Cardfight!! Vanguard Dear Days" }, { "id": "A6VRA", "title": "City Traffic Driver" @@ -17593,6 +18198,9 @@ }, { "id": "A6YGA", "title": "Moonrise Fall" + }, { + "id": "A6YHA", + "title": "Power of Ten" }, { "id": "A6YKA", "title": "emoji MUSIC" @@ -17818,6 +18426,9 @@ }, { "id": "A75FA", "title": "Niko and the Cubic Curse" + }, { + "id": "A75GA", + "title": "Another Crab's Treasure" }, { "id": "A75HB", "title": "HYPER DRONE X" @@ -18250,6 +18861,9 @@ }, { "id": "A7GSR", "title": "It Takes Two" + }, { + "id": "A7GVA", + "title": "Botany Manor" }, { "id": "A7H2A", "title": "Pyramid Quest" @@ -18301,9 +18915,6 @@ }, { "id": "A7J5A", "title": "Ye OLDE Cribbage Club: A Later Daters Game" - }, { - "id": "A7JDC", - "title": "Fitness Boxing Fist of the North Star" }, { "id": "A7JEA", "title": "Neko Secret Room" @@ -18514,6 +19125,9 @@ }, { "id": "A7P6A", "title": "Primordia" + }, { + "id": "A7P7A", + "title": "Saviorless" }, { "id": "A7P8A", "title": "Kombinera" @@ -18748,6 +19362,9 @@ }, { "id": "A7UCA", "title": "Arcade Archives FIGHTING HAWK" + }, { + "id": "A7UDA", + "title": "Arcade Archives VS. SUPER XEVIOUS MYSTERY OF GUMP" }, { "id": "A7UEA", "title": "Arcade Archives THUNDER CEPTOR" @@ -19018,9 +19635,6 @@ }, { "id": "A827A", "title": "Baldur's Gate: Dark Alliance II" - }, { - "id": "A828A", - "title": "The Rumble Fish 2" }, { "id": "A82AA", "title": "RWBY: Arrowfell" @@ -19342,6 +19956,9 @@ }, { "id": "A89FA", "title": "Puzzle Galaxy" + }, { + "id": "A89LA", + "title": "Moonglow Bay" }, { "id": "A89NA", "title": "In Stars and Time" @@ -19408,6 +20025,9 @@ }, { "id": "A8AXA", "title": "Eventide: Slavic Fable" + }, { + "id": "A8AYA", + "title": "KUBIC" }, { "id": "A8B2A", "title": "Strike Buster Prototype" @@ -19543,6 +20163,9 @@ }, { "id": "A8DZA", "title": "Pixel Game Maker Series LAB" + }, { + "id": "A8E3A", + "title": "Tamarak Trail" }, { "id": "A8E7A", "title": "Escape Game R00M" @@ -19591,6 +20214,9 @@ }, { "id": "A8EYA", "title": "Worm Run" + }, { + "id": "A8EZA", + "title": "Lil' Guardsman" }, { "id": "A8F2A", "title": "Bullet Soul" @@ -19702,6 +20328,9 @@ }, { "id": "A8HBA", "title": "My Divorce Story" + }, { + "id": "A8HPA", + "title": "New Star GP" }, { "id": "A8HQA", "title": "Pretty Girls Speed" @@ -19756,6 +20385,9 @@ }, { "id": "A8JSA", "title": "Camper Van Simulator" + }, { + "id": "A8JVA", + "title": "Devil's Calling" }, { "id": "A8JWA", "title": "Dropsy" @@ -19843,6 +20475,9 @@ }, { "id": "A8LXA", "title": "DRAGON BALL: THE BREAKERS Beta Version" + }, { + "id": "A8LYB", + "title": "Touch Detective 3 + The Complete Case Files" }, { "id": "A8LZA", "title": "Eye Exercise: Ver. kompeito" @@ -20050,6 +20685,9 @@ }, { "id": "A8QVA", "title": "Master Spy" + }, { + "id": "A8QWA", + "title": "Hitman: Blood Money: Reprisal" }, { "id": "A8QYA", "title": "HEROish" @@ -20068,6 +20706,9 @@ }, { "id": "A8RGA", "title": "Hot\"Sento Girls\"and love" + }, { + "id": "A8RPB", + "title": "Class of Heroes 2G: Remaster Edition" }, { "id": "A8RRA", "title": "Street Drag Racing Car Driving Simulator 2022 Games" @@ -20138,8 +20779,8 @@ "id": "A8TAA", "title": "Arcade Archives DRAGON SABER" }, { - "id": "A8TCA", - "title": "Vernal Edge" + "id": "A8TDB", + "title": "Retro Mystery Club Vol.2: The Beppu Case" }, { "id": "A8TEA", "title": "Viki Spotter: Camping" @@ -20197,9 +20838,6 @@ }, { "id": "A8V6A", "title": "Frogun" - }, { - "id": "A8V6B", - "title": "Frogun Deluxe Edition" }, { "id": "A8V8A", "title": "Mira: A Bird's Flight" @@ -20353,6 +20991,9 @@ }, { "id": "A8YNA", "title": "Breakers Collection" + }, { + "id": "A8YQA", + "title": "We Need to Go Deeper" }, { "id": "A8YSA", "title": "The Viking's Games: Madness Fight" @@ -20368,6 +21009,9 @@ }, { "id": "A8Z7A", "title": "Virtual Families Cook Off: Chapter 1 Let's Go Flippin'" + }, { + "id": "A8Z8A", + "title": "Become The Wild" }, { "id": "A8ZDA", "title": "Project Snaqe" @@ -20734,9 +21378,6 @@ }, { "id": "A992A", "title": "Mythargia" - }, { - "id": "A993A", - "title": "Saga of Sins" }, { "id": "A995A", "title": "Hentai: Japanese Goblins" @@ -20866,6 +21507,9 @@ }, { "id": "A9CRA", "title": "Rooten" + }, { + "id": "A9CSA", + "title": "OTXO" }, { "id": "A9CZA", "title": "Pokémon Scarlet and Pokémon Violet Double Pack" @@ -21256,6 +21900,9 @@ }, { "id": "A9M9A", "title": "Tiki Party: Quiz Game with Friends" + }, { + "id": "A9MAA", + "title": "HunterX: code name T" }, { "id": "A9MFA", "title": "Sakura MMO" @@ -21547,6 +22194,9 @@ }, { "id": "A9U2A", "title": "City Traffic Driver 2" + }, { + "id": "A9U3A", + "title": "Pepper Grinder" }, { "id": "A9U4A", "title": "The Last Spell" @@ -21709,9 +22359,6 @@ }, { "id": "A9XTA", "title": "Hero Wheels" - }, { - "id": "A9XWA", - "title": "MLB The Show 23" }, { "id": "A9Y2A", "title": "Crypto Mining Simulator: Ultimate Trading Strategy Tycoon Craft & Idle Game 3D" @@ -21805,6 +22452,9 @@ }, { "id": "A9ZMA", "title": "Arctictopia" + }, { + "id": "A9ZRA", + "title": "Ruff Ghanor" }, { "id": "A9ZSA", "title": "ALUMNI: Escape Room Adventure" @@ -22417,10 +23067,6 @@ }, { "id": "AEP7A", "title": "Picross S" - }, { - "id": "AEPGA", - "title": "Severed", - "tid": "0100157004512000" }, { "id": "AEPVA", "title": "Tumblestone", @@ -22559,10 +23205,6 @@ "id": "AF7ZA", "title": "Xenoraid", "tid": "0100928005BD2000" - }, { - "id": "AF82A", - "title": "Gorogoa", - "tid": "0100F2A005C98000" }, { "id": "AF87A", "title": "Solar Flux" @@ -23039,9 +23681,6 @@ }, { "id": "AHXEA", "title": "Pawarumi" - }, { - "id": "AHZMA", - "title": "ATOMIK: RunGunJumpGun" }, { "id": "AJ28A", "title": "King Oddball", @@ -23160,6 +23799,9 @@ }, { "id": "AJY5A", "title": "BeeFense BeeMastered" + }, { + "id": "AK2BB", + "title": "Class of Heroes: Anniversary Edition" }, { "id": "AK2PA", "title": "ACORN Tactics", @@ -23932,10 +24574,6 @@ "id": "AMJPA", "title": "Masters of Anima", "tid": "0100CC7009196000" - }, { - "id": "AMJSA", - "title": "The Darkside Detective", - "tid": "01003DE00918E000" }, { "id": "AMLKA", "title": "Super Rocket Shootout" @@ -24746,10 +25384,6 @@ }, { "id": "APA8A", "title": "Operation Hardcore" - }, { - "id": "APAHA", - "title": "Dust: An Elysian Tail", - "tid": "0100B6E00A420000" }, { "id": "APAMA", "title": "Ice Cream Surfer" @@ -25573,9 +26207,6 @@ }, { "id": "AQC6A", "title": "Kenshō" - }, { - "id": "AQC7A", - "title": "Assault Android Cactus+" }, { "id": "AQCMA", "title": "Lumini" @@ -25786,10 +26417,6 @@ }, { "id": "AQN8B", "title": "WAKU WAKU SWEETS" - }, { - "id": "AQNCA", - "title": "Broforce", - "tid": "010060A00B53C000" }, { "id": "AQNDA", "title": "Evil Defenders" @@ -27723,9 +28350,6 @@ }, { "id": "ASNJA", "title": "Switch 'N' Shoot" - }, { - "id": "ASNMA", - "title": "Divinity: Original Sin 2: Definitive Edition" }, { "id": "ASNXA", "title": "Table Top Racing: World Tour: Nitro Edition" @@ -27753,9 +28377,6 @@ }, { "id": "ASQJA", "title": "Maid of Sker" - }, { - "id": "ASQVA", - "title": "Super Life of Pixel" }, { "id": "ASQZB", "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 4 ROAD TO BORUTO" @@ -28080,6 +28701,9 @@ }, { "id": "AT3QA", "title": "Car Mayhem" + }, { + "id": "AT3RA", + "title": "Pool Blitz" }, { "id": "AT49A", "title": "ZOMB" @@ -28380,9 +29004,6 @@ }, { "id": "ATFLA", "title": "Undead's Building" - }, { - "id": "ATFPA", - "title": "SteamWorld Quest: Hand of Gilgamech" }, { "id": "ATFRA", "title": "Fell Seal: Arbiter's Mark" @@ -29745,9 +30366,6 @@ }, { "id": "AUS2A", "title": "Convoy: A Tactical Roguelike" - }, { - "id": "AUS4A", - "title": "Panzer Dragoon: Remake" }, { "id": "AUS6A", "title": "Dream Daddy: A Dad Dating Simulator" @@ -30759,9 +31377,6 @@ }, { "id": "AVMWB", "title": "Synergia: NextGen Edition" - }, { - "id": "AVMXA", - "title": "Sense: A Cyberpunk Ghost Story" }, { "id": "AVN9A", "title": "Asdivine Kamura" @@ -31221,9 +31836,6 @@ }, { "id": "AW4JA", "title": "Banner of the Maid" - }, { - "id": "AW4KA", - "title": "Mushihimesama" }, { "id": "AW4MA", "title": "Arcade Archives NAUGHTY BOY" @@ -33210,9 +33822,6 @@ }, { "id": "AXXHA", "title": "Gerritory" - }, { - "id": "AXXJA", - "title": "Curse of the Dead Gods" }, { "id": "AXXKA", "title": "Trenches" @@ -33912,9 +34521,6 @@ }, { "id": "AYKWA", "title": "Good Pizza, Great Pizza" - }, { - "id": "AYKXA", - "title": "#DRIVE" }, { "id": "AYL2A", "title": "Death's Hangover" @@ -34338,9 +34944,6 @@ }, { "id": "AYYGA", "title": "Ghostanoid" - }, { - "id": "AYYHA", - "title": "Here Comes Niko!" }, { "id": "AYYJA", "title": "Four Kings: Video Poker" @@ -34626,6 +35229,9 @@ }, { "id": "AZ7XA", "title": "Fight" + }, { + "id": "AZ7YA", + "title": "Girl Genius: Adventures In Castle Heterodyne" }, { "id": "AZ7ZA", "title": "Rogue Star Rescue" @@ -34938,6 +35544,9 @@ }, { "id": "AZH9A", "title": "Filament" + }, { + "id": "AZHD8", + "title": "Disney Dreamlight Valley: Cozy Edition" }, { "id": "AZHDA", "title": "Disney Dreamlight Valley" @@ -35085,9 +35694,6 @@ }, { "id": "AZLWA", "title": "Rock 'N Racing Bundle Grand Prix & Rally" - }, { - "id": "AZLXA", - "title": "HAAK" }, { "id": "AZLYA", "title": "Doodle Devil: 3volution" @@ -35127,9 +35733,6 @@ }, { "id": "AZMQA", "title": "Perky Little Things" - }, { - "id": "AZMQB", - "title": "Perky Little Things" }, { "id": "AZMWA", "title": "CAN ANDROIDS SURVIVE" @@ -35154,6 +35757,9 @@ }, { "id": "AZNJA", "title": "Skyforge" + }, { + "id": "AZNKA", + "title": "Onion Force" }, { "id": "AZNLA", "title": "Destructivator SE" @@ -35409,9 +36015,6 @@ }, { "id": "AZVYA", "title": "Destropolis" - }, { - "id": "AZW2A", - "title": "Lost Words: Beyond the Page" }, { "id": "AZW3A", "title": "Death Race 2020" @@ -35538,9 +36141,6 @@ }, { "id": "AZYHA", "title": "Arcade Archives RAIDEN" - }, { - "id": "AZYKA", - "title": "Touhou Luna Nights" }, { "id": "AZYLA", "title": "My Child Lebensborn" @@ -35571,6 +36171,9 @@ }, { "id": "BA22A", "title": "Mischief Dungeon Life: Janice Edition" + }, { + "id": "BA23A", + "title": "Crypt Stalker" }, { "id": "BA24A", "title": "Montgomery Fox And The Case Of The Diamond Necklace" @@ -35622,15 +36225,15 @@ }, { "id": "BA2SA", "title": "The Blind Prophet" - }, { - "id": "BA2TA", - "title": "BATSUGUN Saturn Tribute Boosted" }, { "id": "BA2UA", "title": "Omega Strikers" }, { "id": "BA2ZA", "title": "Arcade Archives PHELIOS" + }, { + "id": "BA33A", + "title": "Graveyard Girls" }, { "id": "BA34A", "title": "Quantum Storm" @@ -35730,6 +36333,9 @@ }, { "id": "BA59A", "title": "Puzzle Bobble / Bust-a-Move (16-Bit Console Version)" + }, { + "id": "BA5AA", + "title": "Highwater" }, { "id": "BA5FA", "title": "Arcade Archives SKY KID DX" @@ -35742,6 +36348,9 @@ }, { "id": "BA5KA", "title": "Unblock The Brick: Casual Block Puzzle" + }, { + "id": "BA5NA", + "title": "No Umbrellas Allowed" }, { "id": "BA5PA", "title": "Heaven's Door" @@ -35754,6 +36363,9 @@ }, { "id": "BA64A", "title": "Car Parking Madness School Drive Mechanic Car Games Simulator 2023" + }, { + "id": "BA65A", + "title": "Swords and Adventures" }, { "id": "BA69A", "title": "Escape Academy: The Complete Edition" @@ -35844,9 +36456,6 @@ }, { "id": "BA89A", "title": "ASTLIBRA Revision" - }, { - "id": "BA8BA", - "title": "Spirit of the Island" }, { "id": "BA8CA", "title": "Package Inc" @@ -36049,6 +36658,12 @@ }, { "id": "BADJA", "title": "Titanium Hound" + }, { + "id": "BADKA", + "title": "Teppo and The Secret Ancient City" + }, { + "id": "BADLA", + "title": "Tenderfoot Tactics" }, { "id": "BADMA", "title": "Beeny" @@ -36163,18 +36778,12 @@ }, { "id": "BAFMA", "title": "Chippy&Noppo" - }, { - "id": "BAFSA", - "title": "Buddy Simulator 1984" }, { "id": "BAFVA", "title": "Secret Summoner" }, { "id": "BAFWA", "title": "TOMOMI" - }, { - "id": "BAFXA", - "title": "Hyper Gunsport" }, { "id": "BAFYA", "title": "The Lost Labyrinth" @@ -36304,9 +36913,6 @@ }, { "id": "BAJVA", "title": "Attacker-chan!" - }, { - "id": "BAJXA", - "title": "Redemption Reapers" }, { "id": "BAJYA", "title": "Kids Party Checkers" @@ -36403,6 +37009,9 @@ }, { "id": "BAM4A", "title": "Dead Station" + }, { + "id": "BAM6A", + "title": "Shanghai Summer" }, { "id": "BAM7A", "title": "Souls of Chronos" @@ -36505,6 +37114,9 @@ }, { "id": "BAPEA", "title": "Neon Mine" + }, { + "id": "BAPHA", + "title": "Turnip Boy Robs a Bank" }, { "id": "BAPJA", "title": "Easy Japanesey" @@ -36661,18 +37273,12 @@ }, { "id": "BASCA", "title": "Twice Reborn: A Vampire Visual Novel" - }, { - "id": "BASDA", - "title": "The Bridge Curse: Road to Salvation" }, { "id": "BASEA", "title": "War of Ships" }, { "id": "BASHA", "title": "Timore Redo" - }, { - "id": "BASNA", - "title": "Sword & Fairy Inn 2" }, { "id": "BASQA", "title": "Yeah! Fighting Girl" @@ -37036,6 +37642,9 @@ }, { "id": "BB2GA", "title": "IDEA" + }, { + "id": "BB2LA", + "title": "Harpoon Shooter! Nozomi" }, { "id": "BB2MA", "title": "LOUD: My Road to Fame" @@ -37051,9 +37660,6 @@ }, { "id": "BB2SA", "title": "Herodes" - }, { - "id": "BB2TA", - "title": "Shadows Over Loathing" }, { "id": "BB2VA", "title": "Alice Sisters" @@ -37135,9 +37741,15 @@ }, { "id": "BB4PA", "title": "inquiry for justice" + }, { + "id": "BB4QA", + "title": "Penny's Big Breakaway" }, { "id": "BB4SA", "title": "100animalease" + }, { + "id": "BB4TA", + "title": "Loretta" }, { "id": "BB4UA", "title": "Forest Golf Planner" @@ -37189,6 +37801,9 @@ }, { "id": "BB5WA", "title": "Infinite Guitars" + }, { + "id": "BB5ZA", + "title": "Death of a Wish" }, { "id": "BB65A", "title": "BookyPets Legends" @@ -37375,9 +37990,6 @@ }, { "id": "BBA5A", "title": "MLB The Show 23 Tech Test" - }, { - "id": "BBA6B", - "title": "Telenet Shooting Collection" }, { "id": "BBA7A", "title": "Flipped On" @@ -37561,6 +38173,9 @@ }, { "id": "BBF5A", "title": "Crowns and Pawns: Kingdom of Deceit" + }, { + "id": "BBF6A", + "title": "Dead Tomb" }, { "id": "BBF7A", "title": "Road Stones" @@ -37585,9 +38200,15 @@ }, { "id": "BBFYA", "title": "Arcade Archives BONZE ADVENTURE" + }, { + "id": "BBG4A", + "title": "the World According to Girl" }, { "id": "BBG7A", "title": "Drift & Drive" + }, { + "id": "BBG8B", + "title": "Rose & Camellia Collection" }, { "id": "BBGEA", "title": "The Intership" @@ -37600,6 +38221,9 @@ }, { "id": "BBGMA", "title": "Garden of Pets" + }, { + "id": "BBGNA", + "title": "Die Again" }, { "id": "BBGPA", "title": "Brotato" @@ -37750,9 +38374,15 @@ }, { "id": "BBKEA", "title": "Chronicles Of Albian: The Magic Convention" + }, { + "id": "BBKKA", + "title": "Gnarbike Trials 2" }, { "id": "BBKLA", "title": "Arcade Archives TETRIS THE ABSOLUTE THE GRAND MASTER 2 PLUS" + }, { + "id": "BBKTA", + "title": "Astro Duel 2" }, { "id": "BBKUA", "title": "Switch Sides" @@ -37786,9 +38416,6 @@ }, { "id": "BBLKA", "title": "Jewel Match Solitaire Collector's Edition" - }, { - "id": "BBLLA", - "title": "Garden Simulator" }, { "id": "BBLMA", "title": "Arcade Machine: Clown Hunt" @@ -37837,6 +38464,9 @@ }, { "id": "BBMVA", "title": "Loot Box Simulator: Heroes of the Dark Age" + }, { + "id": "BBMYA", + "title": "Arcade Tycoon" }, { "id": "BBMZA", "title": "Isolated" @@ -37861,6 +38491,9 @@ }, { "id": "BBNFA", "title": "Speed Crew" + }, { + "id": "BBNMA", + "title": "S.O.L Search of Light" }, { "id": "BBNPB", "title": "Menseki: Area Maze Search" @@ -37876,6 +38509,9 @@ }, { "id": "BBP2A", "title": "Decarnation" + }, { + "id": "BBP3A", + "title": "qomp2" }, { "id": "BBP4A", "title": "GeoJelly" @@ -38035,6 +38671,9 @@ }, { "id": "BBSDA", "title": "Animals Names" + }, { + "id": "BBSEA", + "title": "Knights of Braveland" }, { "id": "BBSFA", "title": "Antigravity Racing" @@ -38203,9 +38842,15 @@ }, { "id": "BBWKA", "title": "RINA:RhythmERROR" + }, { + "id": "BBWMA", + "title": "Pecaminosa: A Deadly Hand" }, { "id": "BBWNA", "title": "Worldless" + }, { + "id": "BBWQA", + "title": "UDO: Unidentified Drilling Object" }, { "id": "BBWRA", "title": "Magic Exposure: Yuri Visual Novel" @@ -38287,6 +38932,9 @@ }, { "id": "BBZQA", "title": "CounterAttack: Uprising" + }, { + "id": "BBZRA", + "title": "Contra: Operation Galuga" }, { "id": "BBZSA", "title": "YEAH! YOU WANT \"THOSE GAMES\", RIGHT? SO HERE YOU GO! NOW, LET'S SEE YOU CLEAR THEM!" @@ -38341,9 +38989,15 @@ }, { "id": "BC47A", "title": "Paint Bowl" + }, { + "id": "BC4BA", + "title": "Freedom Planet 2" }, { "id": "BC4GA", "title": "Earthen Dragon" + }, { + "id": "BC4HA", + "title": "STAR WARS: Dark Forces Remaster" }, { "id": "BC4QA", "title": "Theft Ride Legacy" @@ -38386,9 +39040,15 @@ }, { "id": "BC5ZB", "title": "EASY LEARNING CLASSICAL MUSIC" + }, { + "id": "BC67B", + "title": "Japanese Escape Games The Police Office" }, { "id": "BC6CA", "title": "Alice Escaped!" + }, { + "id": "BC6JA", + "title": "Heavenly Bodies" }, { "id": "BC6UA", "title": "Final Exerion" @@ -38404,6 +39064,9 @@ }, { "id": "BC78D", "title": "Summer Party Time" + }, { + "id": "BC79A", + "title": "Pogo Joins the Circus" }, { "id": "BC7CA", "title": "Satay Shop Tycoon" @@ -38419,6 +39082,12 @@ }, { "id": "BC7RA", "title": "Sacred Zodongga Defense" + }, { + "id": "BC7TA", + "title": "POSTAL: Brain Damaged" + }, { + "id": "BC7UA", + "title": "Super Sean 007" }, { "id": "BC7XA", "title": "Alive Paint" @@ -38482,6 +39151,9 @@ }, { "id": "BCA9A", "title": "Light of Life" + }, { + "id": "BCACA", + "title": "Insurmountable" }, { "id": "BCADA", "title": "Ninja or Die: Shadow of the Sun" @@ -38674,6 +39346,9 @@ }, { "id": "BCF6A", "title": "Crime Busters: Strike Area" + }, { + "id": "BCFEA", + "title": "PICROSS S+" }, { "id": "BCFGA", "title": "Trip World DX" @@ -38695,6 +39370,12 @@ }, { "id": "BCFVA", "title": "Avia corporation" + }, { + "id": "BCFYA", + "title": "Grounded" + }, { + "id": "BCFZA", + "title": "Pentiment" }, { "id": "BCG3A", "title": "Melonizard" @@ -38716,9 +39397,15 @@ }, { "id": "BCGBA", "title": "Pixel Game Maker Series NINJA OTEDAMA R" + }, { + "id": "BCGCA", + "title": "Flightpath: Adventures in Venaris" }, { "id": "BCGDA", "title": "RedRaptor" + }, { + "id": "BCGFA", + "title": "Dead End City" }, { "id": "BCGGA", "title": "Rayland 2" @@ -38740,6 +39427,9 @@ }, { "id": "BCGTA", "title": "Jump Challenge!" + }, { + "id": "BCGUA", + "title": "Llamasoft: The Jeff Minter Story" }, { "id": "BCGXA", "title": "Hola! Reversi" @@ -38755,15 +39445,27 @@ }, { "id": "BCH6A", "title": "Drop: System Breach" + }, { + "id": "BCH8A", + "title": "Reigns: Three Kingdoms" }, { "id": "BCH9A", "title": "The Master's Pupil" + }, { + "id": "BCHEA", + "title": "Another Bar Game" }, { "id": "BCHFA", "title": "Suicide Guy: The Lost Dreams" + }, { + "id": "BCHMA", + "title": "Torn Away" }, { "id": "BCHSA", "title": "Skyhook" + }, { + "id": "BCHXB", + "title": "Aha! Let's Photo Hunt!" }, { "id": "BCJ8B", "title": "Raccoon Adventure: Animal City Simulator 3D Farm Super Deluxe" @@ -38782,6 +39484,9 @@ }, { "id": "BCJPA", "title": "Arcade Archives BARADUKE 2" + }, { + "id": "BCJQA", + "title": "Arcade Archives Tank Battalion" }, { "id": "BCJSA", "title": "Arcade Archives DARIUS II" @@ -38803,6 +39508,9 @@ }, { "id": "BCKEA", "title": "Gruta" + }, { + "id": "BCKFA", + "title": "TRUDOGRAD" }, { "id": "BCKKA", "title": "Warriors of the Nile 2" @@ -38848,9 +39556,6 @@ }, { "id": "BCLDA", "title": "Terra Flame" - }, { - "id": "BCLEA", - "title": "AK-xolotl" }, { "id": "BCLFA", "title": "Night at the Gates of Hell" @@ -38956,6 +39661,9 @@ }, { "id": "BCNXA", "title": "Ship Graveyard Simulator" + }, { + "id": "BCP2A", + "title": "Farming Simulator Kids" }, { "id": "BCP3A", "title": "Subway Simulator: Underground Train Ride Station Ultimate Driving Games" @@ -39025,6 +39733,9 @@ }, { "id": "BCQUA", "title": "Quick Race" + }, { + "id": "BCQYA", + "title": "Nyaaaanvy" }, { "id": "BCQZA", "title": "Dungeon & Tales: Warriors and Dragons" @@ -39088,6 +39799,9 @@ }, { "id": "BCSUA", "title": "Forklift 2024: The Simulation" + }, { + "id": "BCSVA", + "title": "Legend of Grimrock" }, { "id": "BCSZA", "title": "Bee in The Valley" @@ -39103,9 +39817,21 @@ }, { "id": "BCTCA", "title": "I Love Finding Birds Collector's Edition" + }, { + "id": "BCTFA", + "title": "First Time In Hawaii Collector's Edition" + }, { + "id": "BCTGA", + "title": "Finding America: The Pacific Northwest Collector's Edition" }, { "id": "BCTHA", "title": "So Much Stuff Collector's Edition" + }, { + "id": "BCTJA", + "title": "I Love Finding Furbabies Collector's Edition" + }, { + "id": "BCTKA", + "title": "Nature Escapes 2 Collector's Edition" }, { "id": "BCTLA", "title": "Big Adventure: Trip To Europe 4 Collector's Edition" @@ -39121,6 +39847,9 @@ }, { "id": "BCTRA", "title": "Action SuperCross" + }, { + "id": "BCTTA", + "title": "Alisa Developer's Cut" }, { "id": "BCTUA", "title": "Roomie Romance" @@ -39148,6 +39877,12 @@ }, { "id": "BCUEA", "title": "Constellations" + }, { + "id": "BCUFA", + "title": "Arcade Archives MOUSER" + }, { + "id": "BCUJB", + "title": "SaGa Emerald Beyond" }, { "id": "BCUNA", "title": "Operate Now: Hospital" @@ -39184,6 +39919,9 @@ }, { "id": "BCVMA", "title": "Wash Simulator: Clean Garage, House, Cars Business Tycoons" + }, { + "id": "BCVNA", + "title": "Cricket 24" }, { "id": "BCVWA", "title": "Moorhuhn Invasion: Crazy Chicken Invasion" @@ -39271,6 +40009,9 @@ }, { "id": "BCXUA", "title": "Supfly Delivery Simulator" + }, { + "id": "BCYDA", + "title": "Bullion: The Curse of the Cut-Throat Cattle" }, { "id": "BCYLA", "title": "PictoPull" @@ -39283,6 +40024,9 @@ }, { "id": "BCYPA", "title": "Johnny Trigger: Sniper" + }, { + "id": "BCYQA", + "title": "Hidden Through Time 2: Myths & Magic" }, { "id": "BCYRA", "title": "Veritas" @@ -39304,6 +40048,9 @@ }, { "id": "BCZAA", "title": "My Name is Mayo 2" + }, { + "id": "BCZBA", + "title": "My Name is Mayo 3" }, { "id": "BCZCA", "title": "ONE." @@ -39331,6 +40078,9 @@ }, { "id": "BD2PA", "title": "Wetory" + }, { + "id": "BD2QA", + "title": "Pocket Card Jockey: Ride On!" }, { "id": "BD2TA", "title": "Moto Racer Simulator GT Games" @@ -39346,15 +40096,30 @@ }, { "id": "BD3PA", "title": "LiartaniumOS: Operating System" + }, { + "id": "BD3RA", + "title": "Lawn Mowing Simulator" + }, { + "id": "BD3UA", + "title": "Toy Rider" + }, { + "id": "BD3YA", + "title": "Meta Meet Cute!!!+" }, { "id": "BD42A", "title": "Traumatarium" }, { "id": "BD43A", "title": "MetaDude" + }, { + "id": "BD49B", + "title": "VALIS: The Fantasm Soldier Collection III" }, { "id": "BD4BA", "title": "Skeljump" + }, { + "id": "BD4EA", + "title": "Wild Seas" }, { "id": "BD4JA", "title": "Alina of the Arena" @@ -39370,24 +40135,45 @@ }, { "id": "BD4WA", "title": "Afterdream" + }, { + "id": "BD4XA", + "title": "Jorel's Brother and The Most Important Game of the Galaxy!: Complete Edition" }, { "id": "BD53A", "title": "VISCO Collection" }, { "id": "BD54A", "title": "Chipmonk!" + }, { + "id": "BD55A", + "title": "Reigns: Beyond" + }, { + "id": "BD5CA", + "title": "Laika: Aged Through Blood" }, { "id": "BD5FA", "title": "Samurai: Japan Warrior Fighter" }, { "id": "BD5GA", "title": "True Virus" + }, { + "id": "BD5JA", + "title": "Mimi the cat: Mimi's Scratcher" + }, { + "id": "BD5KA", + "title": "Sokobalien" }, { "id": "BD5NA", "title": "Pixel Game Maker Series Ninja Runner" }, { "id": "BD5TA", "title": "Composer World" + }, { + "id": "BD62A", + "title": "Ultimate Racing 2D 2" + }, { + "id": "BD63B", + "title": "Hentai Girls: College Crush" }, { "id": "BD69A", "title": "Super Ultimate Fighters" @@ -39397,6 +40183,9 @@ }, { "id": "BD6XA", "title": "Digitris" + }, { + "id": "BD6YA", + "title": "MEGATON MUSASHI W: WIRED Standard Edition" }, { "id": "BD7CA", "title": "Female Nation Takeover" @@ -39466,6 +40255,9 @@ }, { "id": "BD93A", "title": "Cooking Craze" + }, { + "id": "BD95A", + "title": "Arzette: The Jewel of Faramore" }, { "id": "BD98A", "title": "Swapshot" @@ -39478,15 +40270,24 @@ }, { "id": "BD9LA", "title": "World Spin" + }, { + "id": "BD9PA", + "title": "Quadroids" }, { "id": "BD9UA", "title": "Anthology of Fear" }, { "id": "BD9XA", "title": "Druidwalker" + }, { + "id": "BD9YA", + "title": "Stasis: Bone Totem" }, { "id": "BD9ZA", "title": "Brain On: Dot Physics" + }, { + "id": "BDA3A", + "title": "100 Doors: Escape from Prison" }, { "id": "BDA9A", "title": "Dani and Evan: Dinosaur books" @@ -39499,6 +40300,12 @@ }, { "id": "BDASA", "title": "Sword of Glory" + }, { + "id": "BDATA", + "title": "Sunny Café" + }, { + "id": "BDAUA", + "title": "Rainbow Moon" }, { "id": "BDAVA", "title": "DELTAZEAL" @@ -39529,6 +40336,9 @@ }, { "id": "BDBUA", "title": "Pinball M" + }, { + "id": "BDBYA", + "title": "STAR WARS: Battlefront Classic Collection" }, { "id": "BDC3A", "title": "Mad Road: Apocalyptic Shooter Survival Killer" @@ -39538,6 +40348,9 @@ }, { "id": "BDC8A", "title": "Sokoball Dreams" + }, { + "id": "BDCHA", + "title": "Stolen Realm" }, { "id": "BDCJA", "title": "Seven Spirits" @@ -39565,6 +40378,9 @@ }, { "id": "BDCZA", "title": "LOST EGG 3: The Final" + }, { + "id": "BDD3A", + "title": "Silver Falls: Guardians And Metal Exterminators S" }, { "id": "BDD4A", "title": "Paper io 2" @@ -39592,12 +40408,18 @@ }, { "id": "BDDWA", "title": "Last Mage Survivors" + }, { + "id": "BDDYA", + "title": "Manitas Kitchen" }, { "id": "BDEPA", "title": "Dreamy Trail" }, { "id": "BDEUA", "title": "Pool Together" + }, { + "id": "BDEVA", + "title": "The Pedestrian" }, { "id": "BDF3A", "title": "Cooking Arena" @@ -39616,6 +40438,9 @@ }, { "id": "BDFZA", "title": "Legends of the Eternal Flame" + }, { + "id": "BDG3A", + "title": "Berserk Boy" }, { "id": "BDGHA", "title": "Lies as a Starting Point" @@ -39646,6 +40471,12 @@ }, { "id": "BDHKA", "title": "Idle Zoo Park" + }, { + "id": "BDHQA", + "title": "Lunar Axe" + }, { + "id": "BDHRA", + "title": "Tomb Raider I-III Remastered" }, { "id": "BDHYA", "title": "Faerie Afterlight" @@ -39655,6 +40486,9 @@ }, { "id": "BDJAA", "title": "Strike Force 3" + }, { + "id": "BDJJA", + "title": "Death Trick: Double Blind" }, { "id": "BDJTA", "title": "Becoming Your Beautiful Cousin" @@ -39688,6 +40522,9 @@ }, { "id": "BDLBB", "title": "Tiny Treasure Hunt" + }, { + "id": "BDLBC", + "title": "Tiny Treasure Hunt" }, { "id": "BDLCA", "title": "Street Basketball Club: Sport Throw Simulator" @@ -39736,6 +40573,9 @@ }, { "id": "BDMMA", "title": "SHARK! SHARK!" + }, { + "id": "BDMNA", + "title": "Cynthia: Hidden in the Moonshadow" }, { "id": "BDMPA", "title": "Wizards Legacy: Nightmare Park Manager Simulator" @@ -39748,6 +40588,9 @@ }, { "id": "BDMSA", "title": "Astebros" + }, { + "id": "BDN6A", + "title": "Boaty Tanks 2" }, { "id": "BDN7A", "title": "Keep The Fire: Survival Simulator" @@ -39772,9 +40615,18 @@ }, { "id": "BDNVA", "title": "SHIMAZU" + }, { + "id": "BDNYB", + "title": "Escape Game The Old Folk House" + }, { + "id": "BDPAB", + "title": "Terra Memoria" }, { "id": "BDPGA", "title": "Shuyan Saga" + }, { + "id": "BDPMA", + "title": "GUNVOLT RECORDS: Cychronicle" }, { "id": "BDPQA", "title": "World of Machines: Tanks War Operation" @@ -39820,6 +40672,9 @@ }, { "id": "BDSEA", "title": "The Myth Seekers: The Legacy of Vulcan" + }, { + "id": "BDSGA", + "title": "Noobs Want to Live" }, { "id": "BDSJA", "title": "Time Of War, Arkano'90" @@ -39865,6 +40720,12 @@ }, { "id": "BDTTA", "title": "Song of Nunu: A League of Legends Story" + }, { + "id": "BDTUA", + "title": "Bandle Tale: A League of Legends Story" + }, { + "id": "BDTWA", + "title": "INVECTOR: RHYTHM GALAXY" }, { "id": "BDU2A", "title": "Ralph and the Blue Ball" @@ -39874,6 +40735,9 @@ }, { "id": "BDUCA", "title": "Duck Race" + }, { + "id": "BDUEA", + "title": "Stacklands" }, { "id": "BDUFA", "title": "Quantum: Recharged" @@ -39889,6 +40753,9 @@ }, { "id": "BDV5A", "title": "Pixel Game Maker Series Ninja Sneaking VS: Battle On The Couch" + }, { + "id": "BDV6A", + "title": "Cafe Owner Simulator" }, { "id": "BDVAA", "title": "DYNABLASTER" @@ -39919,12 +40786,18 @@ }, { "id": "BDWCA", "title": "ToyBox Puzzle" + }, { + "id": "BDWDA", + "title": "Savage Age" }, { "id": "BDWEA", "title": "Mermaid Castle 2" }, { "id": "BDWLA", "title": "Loot Box Quest: Mystic Maidens" + }, { + "id": "BDWMA", + "title": "Saga of the Moon Priestess" }, { "id": "BDWNA", "title": "Enraged Red Ogre" @@ -39934,15 +40807,27 @@ }, { "id": "BDWQA", "title": "The Traveler's Path" + }, { + "id": "BDWSA", + "title": "Master Maker 3D Ultimate" }, { "id": "BDWVA", "title": "Tower Up" + }, { + "id": "BDWWA", + "title": "Anomaly Agent" + }, { + "id": "BDWZA", + "title": "CarX Highway Racing" }, { "id": "BDX6A", "title": "Arcade Archives GUTTANG GOTTONG" }, { "id": "BDXBA", "title": "Cobalt Core" + }, { + "id": "BDXCA", + "title": "West Hunt" }, { "id": "BDXGA", "title": "3 minutes Mystery" @@ -40039,6 +40924,9 @@ }, { "id": "BE34A", "title": "Erogods: Olympus" + }, { + "id": "BE37A", + "title": "House" }, { "id": "BE38A", "title": "Arcade Archives SCRAMBLE FORMATION" @@ -40048,12 +40936,42 @@ }, { "id": "BE3BA", "title": "Dreams of a Geisha" + }, { + "id": "BE3EA", + "title": "Nephenthesys" + }, { + "id": "BE3FA", + "title": "Piggy Gambit" + }, { + "id": "BE3GA", + "title": "Escape First Alchemist" + }, { + "id": "BE3SA", + "title": "Missile Dancer 2" }, { "id": "BE44A", "title": "SPACE STORESHIP" + }, { + "id": "BE45A", + "title": "Lazriel: The Demon's Fall" + }, { + "id": "BE47A", + "title": "Fairytale Theatre-Momotaro's Adventure-" }, { "id": "BE49A", "title": "Playroom Racer" + }, { + "id": "BE4BA", + "title": "EmyLiveShow: Hentai Puzzle Game" + }, { + "id": "BE4KA", + "title": "Match Village" + }, { + "id": "BE4NA", + "title": "Eldgear" + }, { + "id": "BE4SA", + "title": "Warhammer 40,000: Dakka Squadron" }, { "id": "BE4TA", "title": "Hole Switch" @@ -40069,12 +40987,18 @@ }, { "id": "BE5JA", "title": "Elder Story" + }, { + "id": "BE5KA", + "title": "ZooKeeper" }, { "id": "BE5LA", "title": "Turbo Dash Kart Racing" }, { "id": "BE5MA", "title": "Burnout" + }, { + "id": "BE5NA", + "title": "Spear Master" }, { "id": "BE5PA", "title": "Puzzle Balls" @@ -40084,12 +41008,24 @@ }, { "id": "BE5RA", "title": "Berzerk: Recharged" + }, { + "id": "BE5TA", + "title": "A Time Traveller's Guide To Past Delicacies" + }, { + "id": "BE5UA", + "title": "Life of Slime" }, { "id": "BE5XA", "title": "Jigsaw Ice Princess" + }, { + "id": "BE63A", + "title": "Downhill Driver: Extreme Racing Simulator" }, { "id": "BE64A", "title": "Shivering Stone" + }, { + "id": "BE65A", + "title": "Empires Shall Fall" }, { "id": "BE66A", "title": "One Night: Burlesque" @@ -40117,9 +41053,18 @@ }, { "id": "BE7BA", "title": "Animals: Habitats and Curiosities" + }, { + "id": "BE7CA", + "title": "Soul Dog TD" + }, { + "id": "BE7FA", + "title": "Finger Soccer League" }, { "id": "BE7KA", "title": "Final Shot" + }, { + "id": "BE7TA", + "title": "UNABLES" }, { "id": "BE7UA", "title": "Wings" @@ -40141,6 +41086,9 @@ }, { "id": "BE86A", "title": "Gates of The Mind" + }, { + "id": "BE8AA", + "title": "Stunt Paradise" }, { "id": "BE8DA", "title": "Supreme Car Parking Simulator 2024" @@ -40150,12 +41098,27 @@ }, { "id": "BE8JA", "title": "AAA PRO CLOCK 2023" + }, { + "id": "BE8QA", + "title": "KASHIDO" + }, { + "id": "BE8UA", + "title": "Vigour" }, { "id": "BE95A", "title": "Claire: Extended Cut" }, { "id": "BE98A", "title": "Yoga Studio: Poses for experts and beginners" + }, { + "id": "BE9EA", + "title": "Matsukeke BURST!" + }, { + "id": "BE9FA", + "title": "OLLLO" + }, { + "id": "BE9HA", + "title": "Sagres" }, { "id": "BE9LA", "title": "Nyanzou & Kumakichi Let's make a flower garden" @@ -40174,9 +41137,15 @@ }, { "id": "BE9YA", "title": "Terra Nil" + }, { + "id": "BEA4A", + "title": "Cybertrash STATYX" }, { "id": "BEA6A", "title": "Luck Breaker" + }, { + "id": "BEA7A", + "title": "Mediterranea Inferno" }, { "id": "BEAAA", "title": "Anime Clock" @@ -40186,12 +41155,21 @@ }, { "id": "BEACA", "title": "Capitals Quizzer" + }, { + "id": "BEAEA", + "title": "Tale of Immortal" }, { "id": "BEAGA", "title": "Games Advent Calendar: 25 Days: 25 Surprises" + }, { + "id": "BEAHA", + "title": "Hentai Anime Girls Succubus" }, { "id": "BEAKA", "title": "Time Master" + }, { + "id": "BEAVA", + "title": "Kitten Hero" }, { "id": "BEAYA", "title": "The great battle of Shark Monkey Squirrel Dinossaur Bird Bee" @@ -40222,6 +41200,12 @@ }, { "id": "BEBQB", "title": "Desktop Basketball 2" + }, { + "id": "BEBRA", + "title": "Counter Shooter Strike Zone" + }, { + "id": "BEBSA", + "title": "Drift Master Simulator 2024: Driving Sim" }, { "id": "BEBXA", "title": "ANGEL WHISPER: The Suspense Visual Novel Left Behind by a Game Creator." @@ -40231,6 +41215,18 @@ }, { "id": "BEBZA", "title": "Zombie Sniper Shooter: Stickman War" + }, { + "id": "BEC2A", + "title": "PuzzlePet: Feed Your Cat" + }, { + "id": "BEC3A", + "title": "Jett Rider" + }, { + "id": "BEC7A", + "title": "Bahnsen Knights" + }, { + "id": "BEC9A", + "title": "Dungeonoid 2 Awakening" }, { "id": "BECAA", "title": "Garden Guardian" @@ -40252,6 +41248,12 @@ }, { "id": "BECLA", "title": "Teocida + Estigma" + }, { + "id": "BECPA", + "title": "Storyblocks: The King" + }, { + "id": "BECZA", + "title": "Doctor Cat" }, { "id": "BED6A", "title": "Arcade Snake Go!" @@ -40270,6 +41272,9 @@ }, { "id": "BEDNA", "title": "Aery: Flow of Time" + }, { + "id": "BEDSA", + "title": "Piczle Cross: Story of Seasons" }, { "id": "BEDVA", "title": "Hentai Stars" @@ -40297,6 +41302,12 @@ }, { "id": "BEEMA", "title": "The Nightmare: Serial Killers" + }, { + "id": "BEENA", + "title": "Seven" + }, { + "id": "BEEUA", + "title": "Crystal Project" }, { "id": "BEEYA", "title": "Dissolved: Chapter One" @@ -40306,6 +41317,9 @@ }, { "id": "BEF2A", "title": "Detective Agency: Gray Tie 2 Collector's Edition" + }, { + "id": "BEF3A", + "title": "Sir Questionnaire" }, { "id": "BEF4A", "title": "Elasto Mania II" @@ -40342,12 +41356,21 @@ }, { "id": "BEG2A", "title": "Retro Kart Rush" + }, { + "id": "BEG9A", + "title": "Police Car Driver: City Parking Simulator" + }, { + "id": "BEGEA", + "title": "Nice Disc: The Last Hot Blood" }, { "id": "BEGGB", "title": "Koumajou Remilia II: Stranger's Requiem" }, { "id": "BEGHA", "title": "Arcade Archives DAIOH" + }, { + "id": "BEGJA", + "title": "Arcade Archives COSMO GANG THE PUZZLE" }, { "id": "BEGLA", "title": "Cat's Cosmic Atlas" @@ -40363,6 +41386,12 @@ }, { "id": "BEH9A", "title": "Super Bear Adventure" + }, { + "id": "BEHAA", + "title": "Air Traffic Sim: Airport Dispatcher Simulator" + }, { + "id": "BEHBA", + "title": "Evil Nun: The Broken Mask" }, { "id": "BEHCA", "title": "Garden Buddies" @@ -40393,12 +41422,21 @@ }, { "id": "BEHUA", "title": "Revenge of Banana" + }, { + "id": "BEHXA", + "title": "Beauties Unveiled" }, { "id": "BEHYA", "title": "Enchanted Portals" }, { "id": "BEJ4A", "title": "Super Brawl Rush" + }, { + "id": "BEJ6A", + "title": "Choo-Choo Charles" + }, { + "id": "BEJAA", + "title": "Adam Wolfe" }, { "id": "BEJFA", "title": "Masala Drive" @@ -40408,6 +41446,9 @@ }, { "id": "BEJMB", "title": "Hentai Project" + }, { + "id": "BEJNA", + "title": "Geometric Sniper Z" }, { "id": "BEJRA", "title": "Stone Age" @@ -40417,15 +41458,24 @@ }, { "id": "BEK7A", "title": "Draw & Color Maze: Paint Labyrinth Puzzle" + }, { + "id": "BEKEA", + "title": "Tenement" }, { "id": "BEKJA", "title": "SubOcto" + }, { + "id": "BEKSA", + "title": "Jubilee" }, { "id": "BEKTA", "title": "Horror Gallery" }, { "id": "BEKUA", "title": "Paper Dash: Ghost Hunt" + }, { + "id": "BEKVA", + "title": "Fruity Puzzler" }, { "id": "BEKWA", "title": "Princess Bubble Story" @@ -40438,24 +41488,33 @@ }, { "id": "BEN7A", "title": "League of Champions Soccer 2024" - }, { - "id": "BENMA", - "title": "The Curse of Kudan" }, { "id": "BENPA", "title": "Battle Sea" }, { "id": "BENRA", "title": "Toonsters: Crossing Worlds" + }, { + "id": "BENSA", + "title": "Big Adventure: Trip to Europe 5 Collector's Edition" }, { "id": "BEP5A", "title": "Earthshine" + }, { + "id": "BEP6A", + "title": "Edge of Reality" }, { "id": "BEP7A", "title": "Heads Up! Phones Down Edition" }, { "id": "BEPAA", "title": "Pajama Sam 3: You Are What You Eat From Your Head To Your Feet" + }, { + "id": "BEPEA", + "title": "Freddi Fish and the Case of the Missing Kelp Seeds" + }, { + "id": "BEPJA", + "title": "Room of Depression" }, { "id": "BEPLA", "title": "Sakura Fox Adventure" @@ -40465,6 +41524,9 @@ }, { "id": "BEPNA", "title": "Madfarmer: Lost Kingdoms and Crazy Critters" + }, { + "id": "BEPPA", + "title": "Re:Touring" }, { "id": "BEPQA", "title": "Kittengumi: The Sakabato's Thief" @@ -40516,12 +41578,18 @@ }, { "id": "BEQYA", "title": "Burning Secrets: A Bara Visual Novel" + }, { + "id": "BERCA", + "title": "Birth" }, { "id": "BERMA", "title": "Bus Simulator: City Driving Ultimate" }, { "id": "BERNA", "title": "4x4 Offroad Car Exploration" + }, { + "id": "BERPA", + "title": "Rebel Transmute" }, { "id": "BERRA", "title": "Tiny Whaley" @@ -40570,6 +41638,12 @@ }, { "id": "BESSA", "title": "Construction Machine Simulator 2023: Hard Truck Work Job" + }, { + "id": "BESTA", + "title": "Rallyallyally" + }, { + "id": "BESVA", + "title": "Bad Chicken" }, { "id": "BET4A", "title": "The Hunt" @@ -40606,15 +41680,27 @@ }, { "id": "BEU4B", "title": "Forbidden Ghost Photo" + }, { + "id": "BEUEA", + "title": "Let's! Revolution!" + }, { + "id": "BEUFA", + "title": "Truck Simulator USA Revolution" }, { "id": "BEUGB", "title": "EGGCONSOLE RELICS PC-8801" + }, { + "id": "BEUJA", + "title": "Dreamcutter" }, { "id": "BEULA", "title": "Airship Defender" }, { "id": "BEUNA", "title": "Cube Airport" + }, { + "id": "BEURB", + "title": "Tiny Number Hunt!" }, { "id": "BEV2A", "title": "Draw and Go!" @@ -40645,6 +41731,9 @@ }, { "id": "BEVUA", "title": "Pan'orama" + }, { + "id": "BEVXA", + "title": "Project Downfall" }, { "id": "BEVYA", "title": "AirJet Fighter Sky Dominators: Aerial Assault" @@ -40663,9 +41752,21 @@ }, { "id": "BEWFA", "title": "Kumakichi's Birth ☆ Destruction God" + }, { + "id": "BEWMA", + "title": "Maid of the Dead" + }, { + "id": "BEWNA", + "title": ".T.E.S.T: Expected Behaviour" + }, { + "id": "BEWPA", + "title": "Sokobond Express" }, { "id": "BEWUA", "title": "Raccoo Venture" + }, { + "id": "BEX2A", + "title": "Ikkarus and the Prince of Sin" }, { "id": "BEX3A", "title": "Block Buster Billy" @@ -40693,6 +41794,9 @@ }, { "id": "BEXPA", "title": "The Legend of Shadow: Mask of the Force" + }, { + "id": "BEXXA", + "title": "The World After" }, { "id": "BEY4A", "title": "Ancient Relics: Egypt" @@ -40717,6 +41821,9 @@ }, { "id": "BEYEA", "title": "Thy Creature" + }, { + "id": "BEYKA", + "title": "Balatro" }, { "id": "BEYLA", "title": "Sakura Alien" @@ -40729,6 +41836,9 @@ }, { "id": "BEYSA", "title": "Euro Truck Driver Simulator" + }, { + "id": "BEZ2A", + "title": "Bugby" }, { "id": "BEZ3A", "title": "Bullet Rodeo" @@ -40744,6 +41854,9 @@ }, { "id": "BEZHA", "title": "Brutalism22" + }, { + "id": "BEZKA", + "title": "stitch." }, { "id": "BEZLA", "title": "Wire Lips" @@ -40756,84 +41869,249 @@ }, { "id": "BEZSA", "title": "Inertia 2" + }, { + "id": "BEZTA", + "title": "Coffee, Plis" }, { "id": "BEZUA", "title": "Da Da Daungo" + }, { + "id": "BEZWA", + "title": "Ikki Unite" }, { "id": "BEZYA", "title": "Pinocchio: Interactive Book" }, { "id": "BEZZB", "title": "TEVI" + }, { + "id": "BF22A", + "title": "Fantasy Tower Defense Ultimate" + }, { + "id": "BF25A", + "title": "Epic Dumpster Bear 1.5 DX: Dumpster Fire Rebirth" }, { "id": "BF29A", "title": "World War: D-Day PART TWO" }, { "id": "BF2BA", "title": "Starship Showdown: Galactic Grand Prix" + }, { + "id": "BF2FA", + "title": "Horse Racing" }, { "id": "BF2GA", "title": "Moon Lander" }, { "id": "BF2HA", "title": "NeverBeAfraid SlamDunk" + }, { + "id": "BF2NA", + "title": "Pixel Coloring Paint" + }, { + "id": "BF2PA", + "title": "MeowMatch" + }, { + "id": "BF2QA", + "title": "Fit My Cat" }, { "id": "BF2WA", "title": "Nathan Jones and The Empty Century" + }, { + "id": "BF2YA", + "title": "Dentist Bling" + }, { + "id": "BF2ZA", + "title": "XELAN FORCE" + }, { + "id": "BF36A", + "title": "Infantry Attack" + }, { + "id": "BF37A", + "title": "Woodturning 3D" + }, { + "id": "BF38A", + "title": "Deathly Dangerous" + }, { + "id": "BF3BA", + "title": "Colony Defense: The Ultimate Minimalist Tower Base Defense Game" + }, { + "id": "BF3EA", + "title": "Swing By" }, { "id": "BF3GA", "title": "Molecano" }, { "id": "BF3JA", "title": "Japan Train Models: JR West Edition" + }, { + "id": "BF3KA", + "title": "Arcade Archives JUNGLER" }, { "id": "BF3SA", "title": "City Bus Driver Simulator" + }, { + "id": "BF45A", + "title": "Bus Driving Simulator 24: City Roads" }, { "id": "BF48A", "title": "Gang Blast" + }, { + "id": "BF49A", + "title": "A Void Hope" + }, { + "id": "BF4AA", + "title": "Twilight Survivors" + }, { + "id": "BF4CA", + "title": "MazM: Pechka" + }, { + "id": "BF4EA", + "title": "Archer 3D: Bow Shooting Range" + }, { + "id": "BF4GA", + "title": "Motorcycle Extreme Driver: Moto Racing Simulator" }, { "id": "BF4JA", "title": "Skin care" + }, { + "id": "BF4LA", + "title": "Five Nights of Nightmare: Escape Horror Story" + }, { + "id": "BF4MA", + "title": "UFO: Henfield" }, { "id": "BF4QA", "title": "Cute Critters Pet Kitty" }, { "id": "BF4RA", "title": "Human Bowling" + }, { + "id": "BF4SA", + "title": "Bucket Crusher" + }, { + "id": "BF4TA", + "title": "Apex Heroines" + }, { + "id": "BF4YA", + "title": "The Vale: Shadow of the Crown" }, { "id": "BF52A", "title": "Bulldozer Tycoon: Construction Simulator" + }, { + "id": "BF5BA", + "title": "CEIBA" + }, { + "id": "BF5DA", + "title": "BIT.TRIP Presents... Runner2: Future Legend of Rhythm Alien" + }, { + "id": "BF5FA", + "title": "TORIDAMA2: Brave Challenge" + }, { + "id": "BF5NA", + "title": "Full Speed Animals: The RTA" }, { "id": "BF5VA", "title": "Ski Simulator: Winter Sports" + }, { + "id": "BF5ZA", + "title": "THE BIKE: MOTO RIDE SIMULATOR" + }, { + "id": "BF63A", + "title": "Prisonela DX" }, { "id": "BF64A", "title": "Trash Punk" + }, { + "id": "BF6AA", + "title": "Cyber Taxi Simulator" + }, { + "id": "BF6CA", + "title": "3D Printer: PrintMaster Simulator" + }, { + "id": "BF6EA", + "title": "HatLand: Pixel Impossible GAME OVER" + }, { + "id": "BF6TA", + "title": "Candy Shake Cup" }, { "id": "BF6WA", "title": "EGGCONSOLE SILPHEED PC-8801mkIISR" }, { "id": "BF7PA", "title": "Bike Courier: Bistro Express Delivery" + }, { + "id": "BF7QA", + "title": "Brain Memory Training Academy" + }, { + "id": "BF7TA", + "title": "Cavern of Dreams" + }, { + "id": "BF82A", + "title": "God of Light: Remastered" }, { "id": "BF83A", "title": "All I Want for Christmas are Subgames CE" }, { "id": "BF87A", "title": "Bloopy & Droopy" + }, { + "id": "BF88A", + "title": "Fortress Defense" + }, { + "id": "BF8AA", + "title": "One Last Breath" + }, { + "id": "BF8BA", + "title": "Flower Shop: Winter In Fairbrook" }, { "id": "BF8EA", "title": "Kebab Bar Tycoon" }, { "id": "BF8FA", "title": "Anime Girls: Highschool of Dead" + }, { + "id": "BF8LB", + "title": "Hentai Girls: Office Romance" }, { "id": "BF8MA", "title": "EGGCONSOLE HYDLIDE PC-8801" + }, { + "id": "BF8RA", + "title": "Fantastical Mystery Adventure Ultimate Jumbo Jet Murder Case" + }, { + "id": "BF8TA", + "title": "Farmer Simulator Evolution" + }, { + "id": "BF8WA", + "title": "Detective: Stella Porta Case" + }, { + "id": "BF8ZA", + "title": "Stories in Glass: Winter" + }, { + "id": "BF99A", + "title": "Oops, I Said Yes?!" + }, { + "id": "BF9DA", + "title": "Hero of Fate" + }, { + "id": "BF9GA", + "title": "The Nom" }, { "id": "BF9HA", "title": "Fantasy Blacksmith Shop Simulator" + }, { + "id": "BF9PA", + "title": "Monster Truck Freestyle" + }, { + "id": "BF9QA", + "title": "Big Watermelon Match" + }, { + "id": "BF9WA", + "title": "Arcade Archives SILK WORM" + }, { + "id": "BF9YA", + "title": "The Pigeon: Simulator" }, { "id": "BFA2A", "title": "Flap Legends" @@ -40843,6 +42121,9 @@ }, { "id": "BFA4A", "title": "Castle Invasion: Throne Out" + }, { + "id": "BFAPA", + "title": "Metal Mind" }, { "id": "BFAQA", "title": "Slaughter: The Lost Outpost" @@ -40861,6 +42142,15 @@ }, { "id": "BFB8A", "title": "Halloween Games for Toddlers and Babies" + }, { + "id": "BFBAA", + "title": "Ancient Weapon Holly" + }, { + "id": "BFBQA", + "title": "Carry Onward" + }, { + "id": "BFBSA", + "title": "BANCHOU TACTICS" }, { "id": "BFBTA", "title": "Dragon Wings" @@ -40870,9 +42160,18 @@ }, { "id": "BFBVA", "title": "Aery: Calm Mind 4" + }, { + "id": "BFBWA", + "title": "Dash & Roll" + }, { + "id": "BFBXA", + "title": "Timberdoku" }, { "id": "BFBZA", "title": "Tobari Dream Ocean" + }, { + "id": "BFC4A", + "title": "Starward Rogue" }, { "id": "BFC5A", "title": "Internet Cafe Mini Games 10 in 1" @@ -40885,9 +42184,15 @@ }, { "id": "BFCFA", "title": "Runnyk" + }, { + "id": "BFCGA", + "title": "Cricket Through the Ages" }, { "id": "BFCJA", "title": "Amabilly" + }, { + "id": "BFCLA", + "title": "Witch Rise" }, { "id": "BFCSA", "title": "Bob the Elementalist" @@ -40897,9 +42202,27 @@ }, { "id": "BFCVA", "title": "EGGCONSOLE THEXDER PC-8801mkIISR" + }, { + "id": "BFCXA", + "title": "Arcade Archives SUPER CONTRA" + }, { + "id": "BFCYA", + "title": "Arcade Archives MASTER OF WEAPON" + }, { + "id": "BFD5A", + "title": "The Tales of Bayun" + }, { + "id": "BFD9A", + "title": "Monster Tribe" }, { "id": "BFDMA", "title": "Flooded" + }, { + "id": "BFDYA", + "title": "Cherry Tower" + }, { + "id": "BFE2A", + "title": "Notebook Artillery" }, { "id": "BFE3A", "title": "Giant Chase" @@ -40918,12 +42241,24 @@ }, { "id": "BFELA", "title": "Springtime Hike" + }, { + "id": "BFENA", + "title": "Dream Tactics" + }, { + "id": "BFEPA", + "title": "Across the Obelisk" }, { "id": "BFEQA", "title": "Castaway of Steel" }, { "id": "BFERA", "title": "Dementium: The Ward" + }, { + "id": "BFEUA", + "title": "Devil Inside Us: Roots of Evil" + }, { + "id": "BFF3A", + "title": "Coin Rush" }, { "id": "BFF5A", "title": "Tricky Taps" @@ -40945,6 +42280,9 @@ }, { "id": "BFFEA", "title": "Christmas Bubble Puzzle" + }, { + "id": "BFFFA", + "title": "Bubble Fresh Fruits" }, { "id": "BFFGA", "title": "Paint It" @@ -40954,6 +42292,9 @@ }, { "id": "BFFLA", "title": "They Know" + }, { + "id": "BFFMA", + "title": "Darts Club" }, { "id": "BFFNA", "title": "Soviet Project" @@ -40963,9 +42304,15 @@ }, { "id": "BFFVA", "title": "Hentai Tales Vol. 1" + }, { + "id": "BFFYA", + "title": "Planet of Lana" }, { "id": "BFG2A", "title": "Zombies Rising Dawn" + }, { + "id": "BFG4A", + "title": "Valiant Hearts: Coming Home" }, { "id": "BFG5A", "title": "Twin Mind: Ghost Hunter Collector's Edition" @@ -40975,6 +42322,18 @@ }, { "id": "BFG7A", "title": "Twin Mind: Murderous Jealousy Collector's Edition" + }, { + "id": "BFG8A", + "title": "Connected Hearts: Full Moon Curse Collector's Edition" + }, { + "id": "BFG9A", + "title": "Connected Hearts: Fortune Play Collector's Edition" + }, { + "id": "BFGDA", + "title": "Krimson" + }, { + "id": "BFGGB", + "title": "Odd Hue Out!" }, { "id": "BFGPA", "title": "Swim Sacabambaspis!" @@ -40990,6 +42349,9 @@ }, { "id": "BFGVA", "title": "Ultimate Moto Bike Simulator" + }, { + "id": "BFGZA", + "title": "Sticky Business" }, { "id": "BFH2A", "title": "MisBloody" @@ -41002,9 +42364,27 @@ }, { "id": "BFH9A", "title": "Nekomin" + }, { + "id": "BFHAA", + "title": "Magic City Detective: Wings of Revenge Collector's Edition" + }, { + "id": "BFHBA", + "title": "Magic City Detective: Secret Desire Collector's Edition" + }, { + "id": "BFHCA", + "title": "Maze Of Realities: Flower Of Discord Collector's Edition" + }, { + "id": "BFHDA", + "title": "Maze of Realities: Reflection of Light Collector's Edition" + }, { + "id": "BFHWA", + "title": "Take It Racing 2" }, { "id": "BFJ2A", "title": "Silent Paws: Hidden Valley" + }, { + "id": "BFJ3A", + "title": "TROM" }, { "id": "BFJ5A", "title": "ToyBox Christmas" @@ -41017,6 +42397,9 @@ }, { "id": "BFJAA", "title": "Razor Wire" + }, { + "id": "BFJFA", + "title": "Cosmic Hare" }, { "id": "BFJJA", "title": "Bio Block" @@ -41029,12 +42412,42 @@ }, { "id": "BFJMA", "title": "Clan's Revenge" + }, { + "id": "BFJNA", + "title": "DIY Makeup" + }, { + "id": "BFJRB", + "title": "Adventure Bar Story" }, { "id": "BFJTA", "title": "MECHBLAZE" + }, { + "id": "BFJUA", + "title": "Witch's Rhythm Puzzle" + }, { + "id": "BFK5A", + "title": "Pixel Game Maker Series HUNTER OF DEVIL" + }, { + "id": "BFK6A", + "title": "8-Colors Star Guardians +" + }, { + "id": "BFKAA", + "title": "Cat and Ghostly Road" + }, { + "id": "BFKBB", + "title": "Escape Game The Abandoned Hospital" + }, { + "id": "BFKDB", + "title": "Escape Game The Kitty School" + }, { + "id": "BFKEA", + "title": "Miniland Adventure" }, { "id": "BFKGA", "title": "PAWfectly Designed" + }, { + "id": "BFKNA", + "title": "Redgar: The Space Viking" }, { "id": "BFKPA", "title": "My Little Car Wash: Cars & Trucks Roleplaying Game for Kids" @@ -41053,18 +42466,27 @@ }, { "id": "BFL2A", "title": "Save The World" + }, { + "id": "BFL5A", + "title": "One More Dungeon 2" }, { "id": "BFL6A", "title": "Hirilun" }, { "id": "BFL7A", "title": "Zomborg" + }, { + "id": "BFL8A", + "title": "The Adventures of Panzer: Legacy Collection" }, { "id": "BFL9A", "title": "Space Junk Seekers" }, { "id": "BFLAA", "title": "Jinshin" + }, { + "id": "BFLGA", + "title": "CLeM" }, { "id": "BFLHA", "title": "Yuletide Legends: Who Framed Santa Claus" @@ -41077,12 +42499,27 @@ }, { "id": "BFLNA", "title": "Sniper: Elite Shooter Squad" + }, { + "id": "BFLRA", + "title": "Genso Chronicles" + }, { + "id": "BFLUA", + "title": "Arcade Archives RAINBOW ISLANDS" }, { "id": "BFLVA", "title": "Party Friends" + }, { + "id": "BFLWA", + "title": "Scheming Through The Zombie Apocalypse Ep2: Caged" }, { "id": "BFLXA", "title": "Math, BFF, and Notes" + }, { + "id": "BFM3A", + "title": "10 Seconds to Win!" + }, { + "id": "BFM4A", + "title": "Froggie: A Retro Platformer" }, { "id": "BFM5A", "title": "The Gardener Simulator: Plant, Grow, Decorate, Build Sim" @@ -41101,6 +42538,9 @@ }, { "id": "BFMKA", "title": "The Monty Mole Collection" + }, { + "id": "BFMLA", + "title": "Hatsumira -From the Future Undying-" }, { "id": "BFMRA", "title": "SokoWinter" @@ -41110,12 +42550,21 @@ }, { "id": "BFN3A", "title": "My Bakery Empire" + }, { + "id": "BFNEA", + "title": "Superfluous Returnz" }, { "id": "BFNGA", "title": "Real Car Parking 2024: Driving Simulator" + }, { + "id": "BFNHA", + "title": "Mad Experiments 2: Escape Room" }, { "id": "BFNJA", "title": "Your Future 2 Future Prediction" + }, { + "id": "BFNLA", + "title": "Geometry Survivor" }, { "id": "BFNTA", "title": "Furniture Flipper Simulator 2023: Revive, Restoration & Creative Crafting" @@ -41125,6 +42574,12 @@ }, { "id": "BFNVA", "title": "Mom Simulator 2023" + }, { + "id": "BFP7A", + "title": "Inkulinati" + }, { + "id": "BFP8A", + "title": "BUNNY GARDEN" }, { "id": "BFPEA", "title": "Make it! Takoyaki" @@ -41134,21 +42589,51 @@ }, { "id": "BFPKA", "title": "World War: D-Day PART ONE" + }, { + "id": "BFPLA", + "title": "KOBOLOK" + }, { + "id": "BFPMA", + "title": "Dr. Frank's Build a Boyfriend" + }, { + "id": "BFPNA", + "title": "Turret Rampage" }, { "id": "BFPTA", "title": "Roman Empire Simulator" }, { "id": "BFPVA", "title": "Princess Puzzle Adventure" + }, { + "id": "BFPWA", + "title": "Chip and Charge" + }, { + "id": "BFPXA", + "title": "Cannibal Abduction" }, { "id": "BFQ6A", "title": "Polyturbo Drift Racing Simulator" + }, { + "id": "BFQFA", + "title": "ArcRunner" + }, { + "id": "BFQHA", + "title": "Xatrom Command" }, { "id": "BFQJA", "title": "Chico and the Magic Orchards DX" }, { "id": "BFQSA", "title": "OnlyUP!" + }, { + "id": "BFR3A", + "title": "DIY Fashion Star" + }, { + "id": "BFR4A", + "title": "Frozen Honey ASMR" + }, { + "id": "BFR5A", + "title": "Western Frontier" }, { "id": "BFR7A", "title": "Draw and Color" @@ -41158,6 +42643,9 @@ }, { "id": "BFRDA", "title": "CHARRUA SOCCER: Pro Edition" + }, { + "id": "BFRTA", + "title": "Forrader Hero" }, { "id": "BFRUA", "title": "Air Aces" @@ -41167,15 +42655,27 @@ }, { "id": "BFRYA", "title": "Pocket Foosball" + }, { + "id": "BFS8A", + "title": "Pretty Girls Klondike Solitaire PLUS" }, { "id": "BFSAA", "title": "Military Combat Shooter Desert War" + }, { + "id": "BFSKA", + "title": "Full of Crap" }, { "id": "BFSQA", "title": "BIG BALL SPORTS" }, { "id": "BFSTA", "title": "The Artist Colors" + }, { + "id": "BFSYA", + "title": "Time Trap: Hidden Objects" + }, { + "id": "BFTAA", + "title": "Neon Drifter: Cyber Racing" }, { "id": "BFTCA", "title": "Found it!" @@ -41194,6 +42694,15 @@ }, { "id": "BFTJA", "title": "Brawl.io 2" + }, { + "id": "BFTRA", + "title": "Fastest Finger First! 3 Hint Quiz" + }, { + "id": "BFTYA", + "title": "Sphinx: Riddles of the Nile" + }, { + "id": "BFU4A", + "title": "Zombies, Aliens and Guns" }, { "id": "BFU5A", "title": "Girl Dress Up Classic" @@ -41206,27 +42715,45 @@ }, { "id": "BFUGA", "title": "Truckzilla: Monster Truck Mega Ramp" + }, { + "id": "BFUMA", + "title": "Anglerfish" }, { "id": "BFUVA", "title": "Spacefarer Solitaire" }, { "id": "BFUXA", "title": "Spacefarer Mahjong" + }, { + "id": "BFUYA", + "title": "Re:Cento" }, { "id": "BFUZA", "title": "Tennis Tournament Hyper-Casual" + }, { + "id": "BFV6A", + "title": "The Cub" }, { "id": "BFV8A", "title": "Extreme Skyway Racer Simulator" }, { "id": "BFVCA", "title": "Anime Tank Blitz: Warbound Legends" + }, { + "id": "BFVDA", + "title": "nGolf" }, { "id": "BFVEA", "title": "Hentai Golf" + }, { + "id": "BFVGA", + "title": "Knowledge Keeper" }, { "id": "BFVPA", "title": "Basketball Arcade" + }, { + "id": "BFVVA", + "title": "Duck, Quack, Shoot!" }, { "id": "BFVYA", "title": "Village Tycoon: Farm City Simulator" @@ -41239,6 +42766,9 @@ }, { "id": "BFW4A", "title": "Hoop Shoot" + }, { + "id": "BFW5A", + "title": "Doll Explorer" }, { "id": "BFWAA", "title": "Fashion World" @@ -41251,12 +42781,33 @@ }, { "id": "BFWEA", "title": "Crystal Chip Collector e" + }, { + "id": "BFWHA", + "title": "Violet Wisteria" + }, { + "id": "BFWRA", + "title": "Hentai Memory" }, { "id": "BFWYA", "title": "Bowling Fever" + }, { + "id": "BFX5A", + "title": "Drone Racer: Fly Stunt Simulator" + }, { + "id": "BFX6A", + "title": "Special Forces Strike: Tactical Swat Shooter" }, { "id": "BFX7A", "title": "Battlefront Trench Warriors: Ops of Warfare" + }, { + "id": "BFX8A", + "title": "Rescue!DROPKICK ON MY DEVIL!!" + }, { + "id": "BFXCA", + "title": "Knights of Grayfang" + }, { + "id": "BFXDA", + "title": "Escape Fear: Hide And Seek Horror" }, { "id": "BFXGA", "title": "Pony World: Color by Numbers" @@ -41269,6 +42820,15 @@ }, { "id": "BFXQA", "title": "100 Demon Fantasia" + }, { + "id": "BFXSA", + "title": "Cats Organized Neatly" + }, { + "id": "BFXUA", + "title": "Post-apocalyptic Old man" + }, { + "id": "BFXXA", + "title": "Alchemy Pipes Puzzle" }, { "id": "BFYCA", "title": "Western Slot Machine" @@ -41278,57 +42838,1143 @@ }, { "id": "BFYRA", "title": "Hard Racing: Stunt Car Driving" + }, { + "id": "BFYSA", + "title": "Ready, Steady, Ship!" }, { "id": "BFYVA", "title": "Hentai Tales Vol. 2" }, { "id": "BFYWA", "title": "Jigsaw Pets" + }, { + "id": "BFYYA", + "title": "Morto: Chapter 2" + }, { + "id": "BFZ3A", + "title": "Matches Puzzle 2: Classic Logic Arcade" + }, { + "id": "BFZ6A", + "title": "Scott Whiskers in: the Search for Mr. Fumbleclaw" + }, { + "id": "BFZBA", + "title": "nDay" }, { "id": "BFZCA", "title": "Zumaji Delux" }, { "id": "BFZFA", "title": "Super Prehistoric World Adventure" + }, { + "id": "BFZHA", + "title": "INAZUMA ELEVEN: Victory Road Worldwide Beta Test Demo \"Leave Your Inazuma Mark on the World!\"" }, { "id": "BFZJA", "title": "Poly Shooting Simulator" + }, { + "id": "BFZKA", + "title": "Borzoi Adventure" + }, { + "id": "BFZWA", + "title": "Mustache In Hell" + }, { + "id": "BFZXA", + "title": "Top Racer Collection" + }, { + "id": "BG2UA", + "title": "Mortal Fight: Lethal Revenge" + }, { + "id": "BG2WA", + "title": "Truck Sim 2024" + }, { + "id": "BG35A", + "title": "Hopping Bunny" + }, { + "id": "BG36A", + "title": "Sea Port Tycoon 2024" + }, { + "id": "BG39A", + "title": "Monster Legacy: New Horizons" + }, { + "id": "BG3WA", + "title": "Pretty Girls Escape PLUS" + }, { + "id": "BG42A", + "title": "Membal" + }, { + "id": "BG44A", + "title": "Shockman Collection Vol. 1" + }, { + "id": "BG48A", + "title": "Hexa Puzzle Block" + }, { + "id": "BG4LA", + "title": "Courage's Reasoning Nori 5 Chewed Rice Balls" + }, { + "id": "BG4MA", + "title": "Glorious Savior" + }, { + "id": "BG4SA", + "title": "Pull The Pin: Ball Physic Puzzle" + }, { + "id": "BG4UA", + "title": "Hidden Cats in New York" + }, { + "id": "BG5AA", + "title": "Highway Getaway: ZigZag Blocky Car" + }, { + "id": "BG5EA", + "title": "Kings Odyssey: Rise of The Necromancer" + }, { + "id": "BG5FA", + "title": "Kings Odyssey: Dwarves Tale" + }, { + "id": "BG5JA", + "title": "NibansenPlus" + }, { + "id": "BG5LA", + "title": "SokoFrog" + }, { + "id": "BG5MA", + "title": "Ratyrinth" + }, { + "id": "BG5SA", + "title": "Animal Buddies: Party Beasts" + }, { + "id": "BG5VA", + "title": "Drift Force Xtreme: Ultimate Car Simulator 2024" + }, { + "id": "BG5WA", + "title": "Sky Runners Infinite: Parkour" + }, { + "id": "BG5XA", + "title": "WWII AIRPLANE FIGHT: Battle War Squad" + }, { + "id": "BG5YA", + "title": "Boardwalk Arcade 2" + }, { + "id": "BG5ZA", + "title": "Demon Drop DX" + }, { + "id": "BG66A", + "title": "Hellstuck: Rage With Your Friends" + }, { + "id": "BG67A", + "title": "Diamond Hands: To The Moon" + }, { + "id": "BG6AA", + "title": "Evil God Korone" + }, { + "id": "BG6GA", + "title": "Mommy's Warm Hot Spring" + }, { + "id": "BG6HA", + "title": "Akatsuki: Lord of the Dawn" + }, { + "id": "BG6JA", + "title": "Cleaning Queens 2: Sparkling Palace" + }, { + "id": "BG6KA", + "title": "Lost Lands: Stories of the First Brotherhood" + }, { + "id": "BG6LA", + "title": "Cube Stack Ultimate" + }, { + "id": "BG6PA", + "title": "Hike Adventures" + }, { + "id": "BG6QA", + "title": "Sandstorm Strike Force" + }, { + "id": "BG74A", + "title": "Old Coin Pusher Friends 2" + }, { + "id": "BG76A", + "title": "Airport Link: Connect Near Me" + }, { + "id": "BG77A", + "title": "Call of Honor: Duty of Warfare" + }, { + "id": "BG7BA", + "title": "Cube Jump Ultimate" + }, { + "id": "BG7EA", + "title": "Z War Apocalypse Shooter" + }, { + "id": "BG7FA", + "title": "Line Color World" + }, { + "id": "BG7NA", + "title": "Picross -LogiartGrimoire-" + }, { + "id": "BG7RA", + "title": "Korean Rail Driving Tour: LRT Uijeongbu" + }, { + "id": "BG7SA", + "title": "Hero's Hour" + }, { + "id": "BG7UA", + "title": "Quick Golf" + }, { + "id": "BG7WA", + "title": "Hentai Girls Panic" + }, { + "id": "BG7YA", + "title": "Car VS Cops" + }, { + "id": "BG8JA", + "title": "Pipe Connect" + }, { + "id": "BG8LA", + "title": "ToyBox Easter" + }, { + "id": "BG8PA", + "title": "Spot The Difference Fantasy Edition" + }, { + "id": "BG8RA", + "title": "Jigsaw Zoo" + }, { + "id": "BG8VA", + "title": "Focus Tower" + }, { + "id": "BG8XA", + "title": "Block Magic Puzzle" + }, { + "id": "BG8ZA", + "title": "SUSHI Shot Online" + }, { + "id": "BG93A", + "title": "Magical Girl Dash" + }, { + "id": "BG94A", + "title": "Home Office Simulator: Ayame Life Sim" + }, { + "id": "BG95A", + "title": "Last Bloody Snack" + }, { + "id": "BG96A", + "title": "Unboxing: Idle Factory Simulator" + }, { + "id": "BG97A", + "title": "Horrific Xanatorium" + }, { + "id": "BG9GA", + "title": "Beauties Unveiled 2" + }, { + "id": "BG9NA", + "title": "Leafy Trails Collection" + }, { + "id": "BG9QA", + "title": "Little Red Riding Hood: Wonder Animals" + }, { + "id": "BG9RA", + "title": "Stickman Jailbreak 2024" + }, { + "id": "BG9TA", + "title": "Toon Roads: Race & Drift" + }, { + "id": "BGA8A", + "title": "SCREAM AND STEEL: Horror Story Shooter" }, { "id": "BGA9A", "title": "Super Kart Mini Car Race" + }, { + "id": "BGADA", + "title": "Pixel Game Maker Series LUNLUN SUPERHEROBABYS DX" + }, { + "id": "BGAHA", + "title": "EGGCONSOLE Ys PC-8801mkIISR" + }, { + "id": "BGAKA", + "title": "SciFi Racer Simulator" + }, { + "id": "BGAMA", + "title": "Raft Survival Simulator" + }, { + "id": "BGANA", + "title": "Towers Watch" + }, { + "id": "BGAPA", + "title": "Golfinite" }, { "id": "BGASA", "title": "Santa's World" + }, { + "id": "BGAUA", + "title": "Dreamland Solitaire" + }, { + "id": "BGAWA", + "title": "Dreamland Solitaire: Dragon's Fury" + }, { + "id": "BGB5A", + "title": "Kitchen Crisis" }, { "id": "BGBCA", "title": "SNQZ" + }, { + "id": "BGBFA", + "title": "Stone Age: Digital Edition" + }, { + "id": "BGBJA", + "title": "Pirate Bloopers" + }, { + "id": "BGBKA", + "title": "AVARIS 3" + }, { + "id": "BGBLB", + "title": "Hentai Girls: Hot Police" }, { "id": "BGBWA", "title": "Dungeon Defence Simulator 2024" + }, { + "id": "BGBYA", + "title": "Easy Dice for RPG/Tabletop" + }, { + "id": "BGC3A", + "title": "Hentai: Make Love Not War 2" + }, { + "id": "BGC6A", + "title": "Party Party Time 2" + }, { + "id": "BGCCA", + "title": "Forklift Simulator 2024" + }, { + "id": "BGCFA", + "title": "Heisting" }, { "id": "BGCGA", "title": "The World of War II: Frontlines of History" + }, { + "id": "BGCJA", + "title": "Multi Maze 3D" + }, { + "id": "BGD5A", + "title": "Kingdom of Corrupts" + }, { + "id": "BGD9A", + "title": "Life Bubble" + }, { + "id": "BGDDA", + "title": "MakOS new operating system" + }, { + "id": "BGDEA", + "title": "Bio Inc. Redemption" }, { "id": "BGDJA", "title": "Buddy & Friends: Santa's Workshop Animal Party" + }, { + "id": "BGDPA", + "title": "TV Studio Story" + }, { + "id": "BGDRB", + "title": "Escape Game The Deserted House" + }, { + "id": "BGDSA", + "title": "Snow Moto: Racing Adventure" + }, { + "id": "BGDXA", + "title": "Dino Race: Dinosaur Ride Ranch" + }, { + "id": "BGE2A", + "title": "RISKY CHRONICLES and the curse of destiny" + }, { + "id": "BGE3A", + "title": "Selling Souls" + }, { + "id": "BGE5A", + "title": "The jump guys" + }, { + "id": "BGE7A", + "title": "Temple Escape" + }, { + "id": "BGE8A", + "title": "Your Majesty" + }, { + "id": "BGE9A", + "title": "Pirates: Caribbean Chronicles" + }, { + "id": "BGEAA", + "title": "Mystery Box: Hidden Secrets" + }, { + "id": "BGEBA", + "title": "The Kindeman Remedy" + }, { + "id": "BGEGA", + "title": "Oxytone" }, { "id": "BGEKA", "title": "Courageous Reasoning Nori 4 Crossing Sea Street 4" + }, { + "id": "BGEQA", + "title": "Nyanzou & Kumakichi Bomb Cave" + }, { + "id": "BGETA", + "title": "Tibetan Quest: Beyond The World's End" }, { "id": "BGEUA", "title": "XMas Toy Merge" + }, { + "id": "BGEXA", + "title": "GYLT" + }, { + "id": "BGEZA", + "title": "Goo Fighter" + }, { + "id": "BGF7A", + "title": "Arcade Archives WAR OF AERO" + }, { + "id": "BGFAA", + "title": "Throne of Egypt" + }, { + "id": "BGFBA", + "title": "Sushi Shot" + }, { + "id": "BGFCA", + "title": "Coloring book series Aquarium" + }, { + "id": "BGFEA", + "title": "Mystery Box: Evolution" + }, { + "id": "BGFKA", + "title": "SUDOKU: GAME FOR KIDS" + }, { + "id": "BGFMA", + "title": "Negligee" }, { "id": "BGFUA", "title": "Mystery Box: Escape The Room" + }, { + "id": "BGFVA", + "title": "Cirrus Business" + }, { + "id": "BGG2A", + "title": "EGGCONSOLE MARCHEN VEIL PC-8801mkIISR" + }, { + "id": "BGG3A", + "title": "Zombiewood: Survival Shooter" + }, { + "id": "BGG5A", + "title": "Dark Days" + }, { + "id": "BGG7A", + "title": "Arts from They Always Run" + }, { + "id": "BGG9A", + "title": "Wira & Taksa: Against the Master of Gravity" }, { "id": "BGGAA", "title": "Mystery Box: The Journey" + }, { + "id": "BGGBA", + "title": "Orion Haste" + }, { + "id": "BGGCA", + "title": "Unlife" + }, { + "id": "BGGDA", + "title": "Outer Terror" + }, { + "id": "BGGHA", + "title": "Jelly Shot" + }, { + "id": "BGGJA", + "title": "Tail io" + }, { + "id": "BGGKA", + "title": "Swingers" + }, { + "id": "BGGLA", + "title": "Project Roll" + }, { + "id": "BGGNA", + "title": "Lion Simulator Survival: RPG Animal Battle" + }, { + "id": "BGGPA", + "title": "Bottle Tap" }, { "id": "BGGXA", "title": "Tennis 2024 Simulator" + }, { + "id": "BGGYA", + "title": "Right and Down and Dice" + }, { + "id": "BGH2A", + "title": "AXIS FOOTBALL 2024" + }, { + "id": "BGH6A", + "title": "Arcade Archives Exvania" + }, { + "id": "BGH7A", + "title": "Arcade Archives EMERALDIA" + }, { + "id": "BGH8A", + "title": "Arcade Archives NUMAN ATHLETICS" + }, { + "id": "BGH9A", + "title": "Arcade Archives VOLFIED" + }, { + "id": "BGHBA", + "title": "Sculpt People" + }, { + "id": "BGHCA", + "title": "Gladiatorial Conquest Battle: Arena of Legends" + }, { + "id": "BGHDA", + "title": "Hair Dye" + }, { + "id": "BGHTA", + "title": "Love Language Stories" + }, { + "id": "BGHUA", + "title": "Caveman Ransom" + }, { + "id": "BGHXA", + "title": "Super Destronaut Landed X Loaded" + }, { + "id": "BGHZA", + "title": "Beach Boys 2: Zodiac Date" + }, { + "id": "BGJ6A", + "title": "Sherlock Purr 2" + }, { + "id": "BGJAA", + "title": "Arcade Archives SURPRISE ATTACK" }, { "id": "BGJFA", "title": "Santa's Workshop Challenge: The North Pole Gift Adventure" + }, { + "id": "BGJMA", + "title": "Cape's Escape Game 7th Room" + }, { + "id": "BGJTA", + "title": "Chip's Challenge" + }, { + "id": "BGJYA", + "title": "Bad Cat Sam Simulator" + }, { + "id": "BGJZA", + "title": "Death Motel" + }, { + "id": "BGK3A", + "title": "Labyrinth of Legends: Roguelike Battle Quest" + }, { + "id": "BGK4A", + "title": "4 in a row" + }, { + "id": "BGKQA", + "title": "Hot Rider Racing Simulator" + }, { + "id": "BGKVA", + "title": "Neon On!" + }, { + "id": "BGKZA", + "title": "Slimeboo" + }, { + "id": "BGLFB", + "title": "Hentai Girls: Sweet Doctor" + }, { + "id": "BGLGB", + "title": "Hentai Girls: Naughty Gamer" + }, { + "id": "BGLHB", + "title": "Hentai Girls: Sakura Romance" + }, { + "id": "BGLJA", + "title": "Tiny Tales: Heart of The Forest" + }, { + "id": "BGLKA", + "title": "Croc's World 4" + }, { + "id": "BGLQA", + "title": "Color Road" + }, { + "id": "BGM3A", + "title": "Jigsaw Masterpieces 2" + }, { + "id": "BGM6A", + "title": "Helicopter Simulator: RESCUE SIM" + }, { + "id": "BGM9A", + "title": "Balloony" + }, { + "id": "BGMBA", + "title": "PORTAL SHOT GUN TELEPORT" + }, { + "id": "BGMCA", + "title": "Sunset Racer" + }, { + "id": "BGMDA", + "title": "Baron of Blood" + }, { + "id": "BGMJA", + "title": "Lo-Fi Haiku: Coffee and Chill" + }, { + "id": "BGMLA", + "title": "Desktop BaseBall 2" + }, { + "id": "BGMNA", + "title": "Drone Delivery Simulator" + }, { + "id": "BGMQA", + "title": "Blind Shot" + }, { + "id": "BGMSA", + "title": "Greed: The Mad Scientist" + }, { + "id": "BGMVA", + "title": "Zombie Football Simulator" + }, { + "id": "BGMXA", + "title": "Football Simulator 2024" + }, { + "id": "BGNAA", + "title": "Tippy Pads" + }, { + "id": "BGNBA", + "title": "Twisty Pals" + }, { + "id": "BGNCA", + "title": "Taser Gun" + }, { + "id": "BGNDA", + "title": "Sniper Rescue" + }, { + "id": "BGNGA", + "title": "Kudzu" + }, { + "id": "BGNJA", + "title": "Pixel Game Maker Series CAT AND CASTLE" + }, { + "id": "BGNLA", + "title": "HEBEREKE Enjoy Edition" + }, { + "id": "BGNNA", + "title": "Simple Number-Based Color Sense IQ Test" + }, { + "id": "BGNPA", + "title": "EGGCONSOLE YOKAI TANTEI PC-8801" + }, { + "id": "BGNSA", + "title": "Neet Girl Rehabilitation Plan" + }, { + "id": "BGNYA", + "title": "Steel Sand Mars Chronicles: Survival Simulator" + }, { + "id": "BGP9A", + "title": "The Street 10" + }, { + "id": "BGPBA", + "title": "Chop Goblins" + }, { + "id": "BGPKB", + "title": "Escape Game The Dr. Mouse's Lab" + }, { + "id": "BGPMA", + "title": "Virus Rush" + }, { + "id": "BGPQA", + "title": "DOG RACING: LOVELY PET FRIENDS PAW" + }, { + "id": "BGPRA", + "title": "Car Racing Ice: Classic" + }, { + "id": "BGPVB", + "title": "Hentai Girls: Athlete Crush" + }, { + "id": "BGPWB", + "title": "Hentai Girls: Steamy Maid" + }, { + "id": "BGQ4A", + "title": "Jigsaw Dinosaurs" + }, { + "id": "BGQAA", + "title": "Spy Guy Hidden Objects Deluxe Edition" + }, { + "id": "BGQEA", + "title": "Buggy Race: Racing Master" + }, { + "id": "BGQGA", + "title": "Sushi Battle Rambunctiously" + }, { + "id": "BGQXA", + "title": "Crazy Goose Simulator" + }, { + "id": "BGR2A", + "title": "Vikings: Valhalla Saga" + }, { + "id": "BGREA", + "title": "Space Extractor: Galactic Alien Insect Control Invasion" + }, { + "id": "BGRGA", + "title": "Anime Girls: Sun of a Beach" + }, { + "id": "BGRWA", + "title": "Defense Master" + }, { + "id": "BGRXA", + "title": "Farm Day Simulator 2024" + }, { + "id": "BGS8A", + "title": "Virtual Girlfriend Dating Simulator" + }, { + "id": "BGS9A", + "title": "Shooting Blocks" + }, { + "id": "BGSAA", + "title": "Legendary Tales: Stories" + }, { + "id": "BGSCA", + "title": "The Lord of Darkness: The Awakening of the Light" + }, { + "id": "BGSEA", + "title": "Jigsaw Fantastic Pets" + }, { + "id": "BGSMA", + "title": "EGGCONSOLE HYDLIDE3 PC-8801mkIISR" + }, { + "id": "BGT3A", + "title": "Exiled" + }, { + "id": "BGT5A", + "title": "EMPTY SHELL" + }, { + "id": "BGTBA", + "title": "Last 4 Survive: The Outbreak" + }, { + "id": "BGTFA", + "title": "Labyrinthia Nightmares: THE JOURNEY OF LITTLE FLUFFYPUFF" + }, { + "id": "BGTJA", + "title": "Just Find It Collector's Edition" + }, { + "id": "BGTMA", + "title": "Nature Escapes 3 Collector's Edition" + }, { + "id": "BGTNA", + "title": "Pool Together 2" + }, { + "id": "BGTPA", + "title": "Sweets Drop" + }, { + "id": "BGTQA", + "title": "Gunsmith Workshop Simulator" + }, { + "id": "BGTWA", + "title": "TOP Web Search 23" + }, { + "id": "BGU2A", + "title": "Galactic Wars: Defend Your Star Worlds" + }, { + "id": "BGU4A", + "title": "Art of Glide" + }, { + "id": "BGU7A", + "title": "Alpaca Wonders Why" + }, { + "id": "BGU8A", + "title": "Looking Up I See Only A Ceiling" + }, { + "id": "BGUCA", + "title": "Cat Survivors" + }, { + "id": "BGULA", + "title": "Truck and Forklift Logistic Simulator" + }, { + "id": "BGUNA", + "title": "Gravityscape DX" + }, { + "id": "BGUPA", + "title": "Hex Cats" + }, { + "id": "BGUWA", + "title": "EGGCONSOLE Ys II PC-8801mkIISR" + }, { + "id": "BGUYA", + "title": "SUSHI SOUL UNIVERSE" + }, { + "id": "BGV4A", + "title": "Ecchi Paradise" + }, { + "id": "BGV7A", + "title": "Melt Down" + }, { + "id": "BGVAA", + "title": "Pocket Fishing" + }, { + "id": "BGVCA", + "title": "The Gap" + }, { + "id": "BGVLA", + "title": "Squirrel Stapler" + }, { + "id": "BGVNA", + "title": "Make it! Taiyaki" + }, { + "id": "BGVPA", + "title": "Japan Train Models: JR Kyushu Edition" + }, { + "id": "BGVXA", + "title": "Jello Run" + }, { + "id": "BGWAA", + "title": "Bungee Run" + }, { + "id": "BGWBA", + "title": "Helium Run" + }, { + "id": "BGWCA", + "title": "Teared" + }, { + "id": "BGWLA", + "title": "Town Adventures" + }, { + "id": "BGWRA", + "title": "Attack of the Karens" + }, { + "id": "BGXCA", + "title": "nZen" + }, { + "id": "BGY6A", + "title": "Paper Dash: City Hustle" + }, { + "id": "BGY9A", + "title": "Aery: Stone Age" + }, { + "id": "BGYBA", + "title": "Special Forces Assault: Tactical Hostage Rainbow" + }, { + "id": "BGYDA", + "title": "World War II Shooting Simulator" + }, { + "id": "BGYEA", + "title": "Trading Simulator" + }, { + "id": "BGYLA", + "title": "Nudel Tag" + }, { + "id": "BGYNA", + "title": "Warrior Escape" + }, { + "id": "BGZ2A", + "title": "Stunt Scooter Simulator" + }, { + "id": "BGZ9A", + "title": "Fire Race" + }, { + "id": "BGZBA", + "title": "Aery: Cyber City" + }, { + "id": "BGZDA", + "title": "Sugar Tanks 2" + }, { + "id": "BGZLA", + "title": "Jigsaw Kids 1" + }, { + "id": "BGZMA", + "title": "Kings Odyssey" + }, { + "id": "BGZPA", + "title": "April's Diary" + }, { + "id": "BGZQA", + "title": "CrashOut Xtreme" + }, { + "id": "BGZRA", + "title": "The Lost Ashford Ring" + }, { + "id": "BGZTA", + "title": "Metro Simulator 2" + }, { + "id": "BGZWA", + "title": "Builder Simulator" + }, { + "id": "BGZZA", + "title": "Cats Hidden in Italy" + }, { + "id": "BH5LA", + "title": "Puss in Boots: Purrfect Adventures" + }, { + "id": "BH7GA", + "title": "The Eerie Surroundings" + }, { + "id": "BH8JA", + "title": "World War: Battle of the Bulge" + }, { + "id": "BHA6A", + "title": "Park Them All!" + }, { + "id": "BHAAA", + "title": "Warring Universe" + }, { + "id": "BHADA", + "title": "Passing By: A Tailwind Journey" + }, { + "id": "BHATA", + "title": "Trackline Express" + }, { + "id": "BHBGA", + "title": "Paint Rings" + }, { + "id": "BHBLA", + "title": "Monster Panic" + }, { + "id": "BHBSA", + "title": "Tongue Tale" + }, { + "id": "BHBVA", + "title": "Find Room 96" + }, { + "id": "BHC3A", + "title": "Ping Race" + }, { + "id": "BHC5A", + "title": "What They Don't Sea" + }, { + "id": "BHCBA", + "title": "Football Cup 2024" + }, { + "id": "BHCCA", + "title": "The Crystals of Atlantis" + }, { + "id": "BHCTA", + "title": "Buggy Off-Road Racing" + }, { + "id": "BHCUA", + "title": "Little Red Riding Hood: Wonder Animals Vol.2" + }, { + "id": "BHCVA", + "title": "Go Kart Mania" + }, { + "id": "BHCXA", + "title": "Perfect Knife" + }, { + "id": "BHDHA", + "title": "MINE SWEEPER MILLON" + }, { + "id": "BHDNA", + "title": "EGGCONSOLE Xak PC-8801mkIISR" + }, { + "id": "BHDYA", + "title": "So Much Stuff 2 Collector's Edition" + }, { + "id": "BHE9A", + "title": "Around The World: Travel To Brazil Collector's Edition" + }, { + "id": "BHEAA", + "title": "Our Field Trip Adventure" + }, { + "id": "BHEDA", + "title": "Help Police: Pull the Pins" + }, { + "id": "BHEPA", + "title": "Lost & Found Agency Collector's Edition" + }, { + "id": "BHEXA", + "title": "Out Racing: Arcade Memory" + }, { + "id": "BHEYA", + "title": "Chimp Quest: Spirit Isle" + }, { + "id": "BHEZA", + "title": "The Little Mermaid: Princess of the Underwater Kingdoms" + }, { + "id": "BHF4A", + "title": "Make It Fly!" + }, { + "id": "BHFCA", + "title": "Cozy Hamlets" + }, { + "id": "BHFDA", + "title": "English Tracing Book" + }, { + "id": "BHFEA", + "title": "Instant Death" + }, { + "id": "BHFNA", + "title": "Greed 2: Forbidden Experiments" + }, { + "id": "BHFRA", + "title": "Alien Invasion" + }, { + "id": "BHGJA", + "title": "Drift Legacy" + }, { + "id": "BHGRA", + "title": "Fortunate Duo" + }, { + "id": "BHGUA", + "title": "The Epyx Collection: Handheld" + }, { + "id": "BHGWA", + "title": "The Brazil" + }, { + "id": "BHGYA", + "title": "Reaper Survivors" + }, { + "id": "BHGZA", + "title": "Wallpaper Wizard: Infinite Backdrops" + }, { + "id": "BHH2A", + "title": "Guardians of Time: The Chronicles of Chronos" + }, { + "id": "BHH5A", + "title": "Restaurant Health Inspection Simulator: Sanitary Service" + }, { + "id": "BHHAA", + "title": "Cape's Escape Game 8th Room" + }, { + "id": "BHHBA", + "title": "Kanjozoku 2: Drift Car Games" + }, { + "id": "BHHCA", + "title": "EGGCONSOLE Dragon Slayer IV DRASLEFAMILY MSX2" + }, { + "id": "BHHDA", + "title": "Tell Me Your Story" + }, { + "id": "BHHLA", + "title": "False Dream" + }, { + "id": "BHHPA", + "title": "Cyberpoly RPG: Dark City" + }, { + "id": "BHHRA", + "title": "King Krieg Survivors" + }, { + "id": "BHHSA", + "title": "Overdelivery: Delivery Simulator" + }, { + "id": "BHHYA", + "title": "Offroad Jeep Quest: Mountain Trails" + }, { + "id": "BHJ5A", + "title": "Where is Drake?" + }, { + "id": "BHJAA", + "title": "Make it! Ikayaki" + }, { + "id": "BHJDA", + "title": "The Exit 8" + }, { + "id": "BHJLA", + "title": "Terra Memoria Artbook & OST" + }, { + "id": "BHJMA", + "title": "To The Sky" + }, { + "id": "BHJQA", + "title": "Romance MD: Always On Call" + }, { + "id": "BHKAA", + "title": "Tales From The Under-Realm: Hazel" + }, { + "id": "BHKJA", + "title": "Brain Memory 2" + }, { + "id": "BHL4A", + "title": "NightGhast" + }, { + "id": "BHL5A", + "title": "Frowntown" + }, { + "id": "BHL9A", + "title": "Spring Bunny Islands" + }, { + "id": "BHLDA", + "title": "Farmyard Haven" + }, { + "id": "BHLMA", + "title": "Bakery Simulator" + }, { + "id": "BHLPA", + "title": "Lots Of Things Collector's Edition" + }, { + "id": "BHM4A", + "title": "nBlocks: Unblock Your Creativity" + }, { + "id": "BHMDA", + "title": "EGGCONSOLE HYDLIDE II PC-8801" + }, { + "id": "BHMFA", + "title": "Japan Train Models: JR Freight Edition" + }, { + "id": "BHMGA", + "title": "Mars Assault: 3D Shooter" + }, { + "id": "BHMJA", + "title": "Just Find It 2 Collector's Edition" + }, { + "id": "BHMSA", + "title": "The Mildew Children" + }, { + "id": "BHMVA", + "title": "Jigsaw Royal Princess" + }, { + "id": "BHNBA", + "title": "PuzzMiX" + }, { + "id": "BHNQA", + "title": "Deadland Chronicles" + }, { + "id": "BHNUA", + "title": "Erogods: Mirage" + }, { + "id": "BHNVA", + "title": "Jigsaw Puzzle Nature" + }, { + "id": "BHNWA", + "title": "Sector 98" + }, { + "id": "BHP6A", + "title": "Finding America: The West Collector's Edition" + }, { + "id": "BHPKA", + "title": "7 Days Heroes" + }, { + "id": "BHPNA", + "title": "Dinosaur Crossing: Unravel and Discover" + }, { + "id": "BHPQA", + "title": "Which Country Is Larger?" + }, { + "id": "BHQPA", + "title": "Cat Piano" + }, { + "id": "BHR6A", + "title": "Cryptrio" + }, { + "id": "BHS4A", + "title": "Corn Kidz 64" + }, { + "id": "BHSAA", + "title": "Hentai Girls Puzzle" + }, { + "id": "BHTHA", + "title": "Courageous Reasoning Nori 6 MikiEdition Last" + }, { + "id": "BHULA", + "title": "Exploration Adventures" + }, { + "id": "BHVHA", + "title": "Knight's Redemption: War for freedom" + }, { + "id": "BHWGA", + "title": "Purple Slime Production Line" + }, { + "id": "BHXJA", + "title": "Monster Legacy: New Horizons 2" + }, { + "id": "BHXKA", + "title": "Kitty Patrol: Paw Showtime" + }, { + "id": "BHYRA", + "title": "Helichapter X" + }, { + "id": "BHYXA", + "title": "Dadish 3D" + }, { + "id": "BJE8A", + "title": "Dracula VS Monsters" }, { "id": "AWK68", "title": "Knockout Home Fitness" @@ -41359,4 +44005,4 @@ "tid": "0000000000000000" } ] -} \ No newline at end of file +} diff --git a/sys/switch/sys.json b/sys/switch/sys.json index 63f82fd..47bb23e 100644 --- a/sys/switch/sys.json +++ b/sys/switch/sys.json @@ -1,7 +1,7 @@ { "name": "Switch", "fullName": "Nintendo Switch", - "emus": ["yuzu", "ryujinx", "ryujinx-ldn"], + "emus": ["ryujinx", "ryujinx-ldn", "yuzu"], "mediaType": "cart", "gameExts": ["nsp", "xci", "nca", "nso"] }