gitextract_5fpwvxle/ ├── .gitattributes ├── .gitignore ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── frontend/ │ ├── .editorconfig │ ├── .eslintignore │ ├── .gitignore │ ├── .nvmrc │ ├── README.md │ ├── babel.config.js │ ├── buildspec.yml │ ├── lib/ │ │ └── minlzo-js/ │ │ └── lzo1x.js │ ├── package.json │ ├── public/ │ │ ├── browserconfig.xml │ │ ├── index.html │ │ ├── robots.txt │ │ ├── site.webmanifest │ │ └── sitemap.txt │ ├── src/ │ │ ├── App.vue │ │ ├── components/ │ │ │ ├── AdvancedUtils.vue │ │ │ ├── ByteExpandContract.vue │ │ │ ├── CompressionDecompression.vue │ │ │ ├── CompressionType.vue │ │ │ ├── ConversionDirection.vue │ │ │ ├── ConvertDreamcast.vue │ │ │ ├── ConvertFlashCarts.vue │ │ │ ├── ConvertGameCube.vue │ │ │ ├── ConvertGbaActionReplay.vue │ │ │ ├── ConvertGbaGameShark.vue │ │ │ ├── ConvertGbaGameSharkSP.vue │ │ │ ├── ConvertMister.vue │ │ │ ├── ConvertN64DexDrive.vue │ │ │ ├── ConvertN64Mempack.vue │ │ │ ├── ConvertNintendoSwitchOnline.vue │ │ │ ├── ConvertOnlineEmulators.vue │ │ │ ├── ConvertPs1DexDrive.vue │ │ │ ├── ConvertPs1Emulator.vue │ │ │ ├── ConvertPs1Ps3.vue │ │ │ ├── ConvertPs1Psp.vue │ │ │ ├── ConvertRetron5.vue │ │ │ ├── ConvertSegaCd.vue │ │ │ ├── ConvertSegaSaturnEmulator.vue │ │ │ ├── ConvertSegaSaturnSaroo.vue │ │ │ ├── ConvertSrmSav.vue │ │ │ ├── ConvertWii.vue │ │ │ ├── DecryptPsp.vue │ │ │ ├── DreamcastIndividualSaveTypeSelector.vue │ │ │ ├── EndiannessWordSize.vue │ │ │ ├── EraseSave.vue │ │ │ ├── FileInfo.vue │ │ │ ├── FileList.vue │ │ │ ├── FileReader.vue │ │ │ ├── FileSize.vue │ │ │ ├── FlashCartType.vue │ │ │ ├── GameCubeEncodingSelector.vue │ │ │ ├── HeaderFooter.vue │ │ │ ├── HelpButton.vue │ │ │ ├── IndividualSavesOrMemoryCardSelector.vue │ │ │ ├── InputFile.vue │ │ │ ├── InputNumber.vue │ │ │ ├── MemoryCardSelector.vue │ │ │ ├── MisterPlatform.vue │ │ │ ├── NintendoSwitchOnlinePlatform.vue │ │ │ ├── OnlineEmulatorPlatform.vue │ │ │ ├── OutputFilename.vue │ │ │ ├── OutputFilesize.vue │ │ │ ├── PadFillByte.vue │ │ │ ├── RegionViewer.vue │ │ │ ├── Retron5EraseSave.vue │ │ │ ├── SegaCdSaveTypeSelector.vue │ │ │ ├── TabAddHeaderFooter.vue │ │ │ ├── TabByteExpansion.vue │ │ │ ├── TabCompression.vue │ │ │ ├── TabEndianSwap.vue │ │ │ ├── TabFileCompare.vue │ │ │ ├── TabRemoveHeaderFooter.vue │ │ │ ├── TabResize.vue │ │ │ ├── TabSlice.vue │ │ │ ├── TroubleshootingUtils.vue │ │ │ └── WiiVcPlatform.vue │ │ ├── main.js │ │ ├── plugins/ │ │ │ ├── bootstrap-vue.js │ │ │ ├── fontawesome-vue.js │ │ │ ├── google-tag-manager-vue.js │ │ │ ├── mediaquery-vue.js │ │ │ └── vue-async-computed.js │ │ ├── rom-formats/ │ │ │ ├── PspIso.js │ │ │ ├── SegaSaturnCueBin.js │ │ │ ├── gb.js │ │ │ ├── gba.js │ │ │ ├── nes.js │ │ │ └── sms.js │ │ ├── router/ │ │ │ └── index.js │ │ ├── save-formats/ │ │ │ ├── Dreamcast/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Basics.js │ │ │ │ │ ├── Directory.js │ │ │ │ │ ├── DirectoryEntry.js │ │ │ │ │ ├── FileAllocationTable.js │ │ │ │ │ └── SystemInfo.js │ │ │ │ ├── Dreamcast.js │ │ │ │ ├── IndividualSaves/ │ │ │ │ │ ├── Dci.js │ │ │ │ │ └── VmiVms.js │ │ │ │ └── Util.js │ │ │ ├── FlashCarts/ │ │ │ │ ├── GB.js │ │ │ │ ├── GBA/ │ │ │ │ │ ├── EmulatorBase.js │ │ │ │ │ ├── GBA.js │ │ │ │ │ ├── GoombaEmulator.js │ │ │ │ │ ├── PocketNesEmulator.js │ │ │ │ │ └── SmsAdvanceEmulator.js │ │ │ │ ├── GameGear.js │ │ │ │ ├── Genesis/ │ │ │ │ │ ├── MegaEverdrivePro/ │ │ │ │ │ │ ├── 32X.js │ │ │ │ │ │ ├── Genesis.js │ │ │ │ │ │ ├── NES.js │ │ │ │ │ │ ├── SMS.js │ │ │ │ │ │ └── SegaCd.js │ │ │ │ │ └── MegaSD/ │ │ │ │ │ ├── 32X.js │ │ │ │ │ ├── Genesis.js │ │ │ │ │ ├── GenesisBase.js │ │ │ │ │ ├── SMS.js │ │ │ │ │ └── SegaCd.js │ │ │ │ ├── N64/ │ │ │ │ │ ├── GB64Emulator.js │ │ │ │ │ ├── N64.js │ │ │ │ │ ├── NES.js │ │ │ │ │ └── Neon64Emulator.js │ │ │ │ ├── NES.js │ │ │ │ ├── PcEngine.js │ │ │ │ ├── SMS.js │ │ │ │ └── SNES/ │ │ │ │ ├── GB.js │ │ │ │ └── SNES.js │ │ │ ├── GBA/ │ │ │ │ ├── ActionReplay.js │ │ │ │ ├── GameShark.js │ │ │ │ └── GameSharkSP.js │ │ │ ├── GameCube/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Basics.js │ │ │ │ │ ├── BlockAllocationTable.js │ │ │ │ │ ├── Directory.js │ │ │ │ │ ├── DirectoryEntry.js │ │ │ │ │ └── Header.js │ │ │ │ ├── GameCube.js │ │ │ │ ├── GameSpecificFixups/ │ │ │ │ │ ├── FZeroGx.js │ │ │ │ │ ├── GameSpecificFixups.js │ │ │ │ │ └── PhantasyStarOnline.js │ │ │ │ ├── IndividualSaves/ │ │ │ │ │ ├── GameShark.js │ │ │ │ │ ├── Gci.js │ │ │ │ │ ├── IndividualSaves.js │ │ │ │ │ └── MaxDrive.js │ │ │ │ └── Util.js │ │ │ ├── Mister/ │ │ │ │ ├── GameGear.js │ │ │ │ ├── Gameboy.js │ │ │ │ ├── GameboyAdvance.js │ │ │ │ ├── Genesis.js │ │ │ │ ├── N64Cart.js │ │ │ │ ├── N64Mempack.js │ │ │ │ ├── Nes.js │ │ │ │ ├── PcEngine.js │ │ │ │ ├── Ps1.js │ │ │ │ ├── SegaCd.js │ │ │ │ ├── SegaSaturn.js │ │ │ │ ├── Sms.js │ │ │ │ ├── Snes.js │ │ │ │ └── WonderSwan.js │ │ │ ├── N64/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Basics.js │ │ │ │ │ ├── GameSerialCodeUtil.js │ │ │ │ │ ├── IdArea.js │ │ │ │ │ ├── InodeTable.js │ │ │ │ │ ├── NoteTable.js │ │ │ │ │ └── TextDecoder.js │ │ │ │ ├── DexDrive.js │ │ │ │ ├── IndividualSaveFilename.js │ │ │ │ └── Mempack.js │ │ │ ├── NintendoSwitchOnline/ │ │ │ │ ├── Gameboy.js │ │ │ │ ├── GameboyAdvance.js │ │ │ │ ├── Genesis.js │ │ │ │ ├── N64.js │ │ │ │ ├── Nes.js │ │ │ │ └── Snes.js │ │ │ ├── OnlineEmulators/ │ │ │ │ ├── Emulators/ │ │ │ │ │ ├── EmulatorBase.js │ │ │ │ │ ├── Gambatte.js │ │ │ │ │ ├── Gb.js │ │ │ │ │ ├── Snes9x.js │ │ │ │ │ ├── VBA-Next.js │ │ │ │ │ └── mGba.js │ │ │ │ └── OnlineEmulatorWrapper.js │ │ │ ├── PS1/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Basics.js │ │ │ │ │ ├── DirectoryBlock.js │ │ │ │ │ ├── SaveBlocks.js │ │ │ │ │ └── SonyUtil.js │ │ │ │ ├── DexDrive.js │ │ │ │ ├── Memcard.js │ │ │ │ ├── Ps3.js │ │ │ │ └── Psp.js │ │ │ ├── PSP/ │ │ │ │ ├── Executable.js │ │ │ │ ├── ParamSfo.js │ │ │ │ ├── PspEncryptionUtil.js │ │ │ │ ├── Savefile.js │ │ │ │ └── psp-encryption/ │ │ │ │ ├── psp-encryption.js │ │ │ │ └── psp-encryption.wasm │ │ │ ├── PlatformSaveSizes.js │ │ │ ├── Retron5/ │ │ │ │ └── Retron5.js │ │ │ ├── SegaCd/ │ │ │ │ ├── Crc16.js │ │ │ │ ├── ReedSolomon.js │ │ │ │ └── SegaCd.js │ │ │ ├── SegaError.js │ │ │ ├── SegaSaturn/ │ │ │ │ ├── Emulators/ │ │ │ │ │ ├── Emulators.js │ │ │ │ │ ├── mednafen.js │ │ │ │ │ ├── yabasanshiro.js │ │ │ │ │ └── yabause.js │ │ │ │ ├── IndividualSaves/ │ │ │ │ │ └── Bup.js │ │ │ │ ├── Saroo/ │ │ │ │ │ ├── Cart.js │ │ │ │ │ ├── Internal.js │ │ │ │ │ ├── System.js │ │ │ │ │ └── Util.js │ │ │ │ ├── SegaSaturn.js │ │ │ │ └── Util.js │ │ │ └── Wii/ │ │ │ ├── ConvertFrom/ │ │ │ │ ├── ConvertFromN64.js │ │ │ │ ├── ConvertFromPcEngine.js │ │ │ │ ├── ConvertFromPlatform.js │ │ │ │ └── ConvertFromSega.js │ │ │ ├── GetPlatform/ │ │ │ │ ├── GetPlatform.js │ │ │ │ └── HttpClient.js │ │ │ └── Wii.js │ │ ├── store/ │ │ │ └── index.js │ │ ├── util/ │ │ │ ├── Array.js │ │ │ ├── CompressionGzip.js │ │ │ ├── CompressionLzo.js │ │ │ ├── CompressionRzip.js │ │ │ ├── CompressionZlib.js │ │ │ ├── Endian.js │ │ │ ├── Genesis.js │ │ │ ├── Hash.js │ │ │ ├── Math.js │ │ │ ├── N64.js │ │ │ ├── Padding.js │ │ │ ├── PcEngine.js │ │ │ ├── SaveFiles.js │ │ │ ├── SegaCd.js │ │ │ ├── crypto-aes.js │ │ │ ├── crypto-des.js │ │ │ └── util.js │ │ └── views/ │ │ ├── About.vue │ │ ├── AdvancedView.vue │ │ ├── DownloadSaves.vue │ │ ├── Dreamcast.vue │ │ ├── EraseSaveView.vue │ │ ├── FlashCarts.vue │ │ ├── GameCube.vue │ │ ├── GbaActionReplay.vue │ │ ├── GbaGameShark.vue │ │ ├── GbaGameSharkSP.vue │ │ ├── Mister.vue │ │ ├── N64DexDrive.vue │ │ ├── N64Mempack.vue │ │ ├── NintendoSwitchOnline.vue │ │ ├── OnlineEmulators.vue │ │ ├── OriginalHardware.vue │ │ ├── OtherConverters.vue │ │ ├── Ps1DexDrive.vue │ │ ├── Ps1Emulator.vue │ │ ├── Ps1Ps3.vue │ │ ├── Ps1Psp.vue │ │ ├── PspDecrypt.vue │ │ ├── Retron5.vue │ │ ├── Retron5EraseSaveView.vue │ │ ├── SegaCd.vue │ │ ├── SegaSaturnEmulator.vue │ │ ├── SegaSaturnSaroo.vue │ │ ├── SrmSav.vue │ │ ├── Troubleshooting.vue │ │ └── Wii.vue │ ├── tests/ │ │ ├── config.js │ │ ├── config.local.js.example │ │ ├── data/ │ │ │ ├── rom-formats/ │ │ │ │ ├── gb/ │ │ │ │ │ ├── Wario Land 3 header.gbc │ │ │ │ │ └── Zelda - Link's Awakening header.gb │ │ │ │ ├── gba/ │ │ │ │ │ └── Zelda - Minish Cap header.gba │ │ │ │ ├── nes/ │ │ │ │ │ └── Zelda II - header.nes │ │ │ │ └── psp/ │ │ │ │ ├── encrypted-executable-alternative-boot - EBOOT.DNR │ │ │ │ ├── encrypted-executable-alternative-boot.iso │ │ │ │ ├── encrypted-executable-incorrect-magic.iso │ │ │ │ ├── encrypted-executable-magic0.iso │ │ │ │ ├── encrypted-executable-magic1.iso │ │ │ │ ├── encrypted-executable-other-alternative-boot - GBL │ │ │ │ ├── encrypted-executable-other-alternative-boot-wrong-game-id.iso │ │ │ │ ├── encrypted-executable-other-alternative-boot.iso │ │ │ │ └── unencrypted-executable.iso │ │ │ ├── save-formats/ │ │ │ │ ├── dreamcast/ │ │ │ │ │ ├── individualsaves/ │ │ │ │ │ │ ├── FLPPYBRD-recreated.VMI │ │ │ │ │ │ ├── FLPPYBRD.VMI │ │ │ │ │ │ ├── FLPPYBRD.vms │ │ │ │ │ │ ├── IKARUGA-recreated.VMI │ │ │ │ │ │ ├── IKARUGA.VMI │ │ │ │ │ │ ├── IKARUGA.VMS │ │ │ │ │ │ ├── KISSPC-recreated.VMI │ │ │ │ │ │ ├── KISSPC.VMI │ │ │ │ │ │ ├── KISSPC.VMS │ │ │ │ │ │ ├── kiss-psycho-circus-the-nightmare-child.29341-recreated.dci │ │ │ │ │ │ ├── kiss-psycho-circus-the-nightmare-child.29341.dci │ │ │ │ │ │ ├── project-justice.882-recreated.dci │ │ │ │ │ │ ├── project-justice.882.dci │ │ │ │ │ │ ├── tetr-recreated.dci │ │ │ │ │ │ ├── tetr.dci │ │ │ │ │ │ ├── v4596-recreated.vmi │ │ │ │ │ │ ├── v4596.VMS │ │ │ │ │ │ ├── v4596.vmi │ │ │ │ │ │ ├── v93102-recreated.vmi │ │ │ │ │ │ ├── v93102.VMS │ │ │ │ │ │ └── v93102.vmi │ │ │ │ │ ├── vmoooo.bin-0 │ │ │ │ │ └── vmu5_FUCKED.vmu │ │ │ │ ├── flashcarts/ │ │ │ │ │ ├── gamegear/ │ │ │ │ │ │ └── Crystalis.sav │ │ │ │ │ ├── gb/ │ │ │ │ │ │ └── Final Fantasy Legend II.srm │ │ │ │ │ ├── gba/ │ │ │ │ │ │ ├── Metroid - Zero Mission (USA).sav │ │ │ │ │ │ ├── goombaemulator/ │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe) (32k - compressed save data).sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe) (32k - compressed save data).srm │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-from-cart.esv │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-from-cart.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-from-goomba.esv │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-from-goomba.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia) (32kB - uncompressed save data).sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia) (32kB - uncompressed save data).srm │ │ │ │ │ │ │ ├── Wario Land 3.sav │ │ │ │ │ │ │ └── Wario Land 3.srm │ │ │ │ │ │ ├── pocketnesemulator/ │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-from-cart.esv │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-from-cart.sav │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-from-pocketnes.esv │ │ │ │ │ │ │ └── Zelda II - The Adventure of Link (USA)-from-pocketnes.sav │ │ │ │ │ │ └── smsadvanceemulator/ │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev 1)-from-coury-raw.srm │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev 1)-from-coury.srm │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev A)-from-emulator-to-smsadvance.sav │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev A)-from-emulator.sav │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (v1.3)-from-reddit-raw.srm │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (v1.3)-from-reddit.srm │ │ │ │ │ │ ├── Phantasy Star-from-smsadvance-bundled-raw.sav │ │ │ │ │ │ └── Phantasy Star-from-smsadvance-bundled.sav │ │ │ │ │ ├── genesis/ │ │ │ │ │ │ ├── megaeverdrivepro/ │ │ │ │ │ │ │ ├── 36 Great Holes Starring Fred Couples (Japan, USA).srm │ │ │ │ │ │ │ ├── Dark Wizard (USA) cd-bram.brm │ │ │ │ │ │ │ ├── Knuckles' Chaotix (Japan, USA) (En).srm │ │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev A).srm │ │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A).srm │ │ │ │ │ │ │ ├── Phantasy_Star_USA_Europe_Rev_A-byte-collapsed.srm │ │ │ │ │ │ │ ├── Phantasy_Star_USA_Europe_Rev_A-byte-expanded.srm │ │ │ │ │ │ │ ├── Popful Mail (USA) (RE) cd-cart-raw.srm │ │ │ │ │ │ │ ├── Popful Mail (USA) (RE) cd-cart.srm │ │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-from-emulator cart.brm │ │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-from-emulator-to-med cd-cart.srm │ │ │ │ │ │ │ ├── Sonic The Hedgehog 3 (USA).srm │ │ │ │ │ │ │ ├── Wonder Boy in Monster World (USA, Europe).srm │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA).srm │ │ │ │ │ │ │ └── emulator/ │ │ │ │ │ │ │ └── Sonic The Hedgehog 3 (USA).sav │ │ │ │ │ │ └── megasd/ │ │ │ │ │ │ ├── 36 Great Holes Starring Fred Couples (Japan, USA)-raw.sav │ │ │ │ │ │ ├── 36 Great Holes Starring Fred Couples (Japan, USA).SRM │ │ │ │ │ │ ├── Knuckles' Chaotix (Japan, USA) (En)-raw.sav │ │ │ │ │ │ ├── Knuckles' Chaotix (Japan, USA) (En).SRM │ │ │ │ │ │ ├── Lunar_The_Silver_Star-internal-memory.brm │ │ │ │ │ │ ├── Lunar_The_Silver_Star-ram-cart.brm │ │ │ │ │ │ ├── Lunar_The_Silver_Star.SRM │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev 1)-raw.sav │ │ │ │ │ │ ├── Phantasy Star (USA, Europe) (Rev 1).SRM │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-new-style-raw.sav │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-new-style.SRM │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-old-style-raw.sav │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-old-style.srm │ │ │ │ │ │ ├── Phantasy Star IV (USA)-new-style-converted-back.SRM │ │ │ │ │ │ ├── Phantasy Star IV (USA)-new-style-raw.sav │ │ │ │ │ │ ├── Phantasy Star IV (USA)-new-style.SRM │ │ │ │ │ │ ├── Popful Mail (U)-converted-back-internal-memory.SRM │ │ │ │ │ │ ├── Popful Mail (U)-converted-back-ram-cart.SRM │ │ │ │ │ │ ├── Popful Mail (U)-internal-memory-only.SRM │ │ │ │ │ │ ├── Popful Mail (U)-internal-memory.brm │ │ │ │ │ │ ├── Popful Mail (U)-ram-cart.brm │ │ │ │ │ │ ├── Popful Mail (U).SRM │ │ │ │ │ │ ├── Sonic the Hedgehog 3 (USA)-new-style-raw.sav │ │ │ │ │ │ ├── Sonic the Hedgehog 3 (USA)-new-style.SRM │ │ │ │ │ │ ├── Sword of Vermilion (USA, Europe)-new-style-raw.sav │ │ │ │ │ │ ├── Sword of Vermilion (USA, Europe)-new-style.SRM │ │ │ │ │ │ ├── Wonder Boy in Monster World (USA, Europe)-new-style-raw.sav │ │ │ │ │ │ ├── Wonder Boy in Monster World (USA, Europe)-new-style.SRM │ │ │ │ │ │ ├── Wonder Boy in Monster World (USA, Europe)-old-style.srm │ │ │ │ │ │ └── emulator/ │ │ │ │ │ │ └── Sonic The Hedgehog 3 (USA).sav │ │ │ │ │ ├── n64/ │ │ │ │ │ │ ├── Pokemon Snap-flashcart.fla │ │ │ │ │ │ ├── Pokemon Snap.fla │ │ │ │ │ │ ├── Star Fox 64.eep │ │ │ │ │ │ ├── f-zero-x.15165-flashcart.sra │ │ │ │ │ │ ├── f-zero-x.15165.sra │ │ │ │ │ │ ├── gb64emulator/ │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-emulator-to-everdrive.fla │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-emulator.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-everdrive-to-raw.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-everdrive-uncompressed-data.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Link's Awakening (USA, Europe)-everdrive.fla │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia)-emulator-to-everdrive.fla │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia)-emulator.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia)-everdrive-to-raw.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia)-everdrive-uncompressed-data.sav │ │ │ │ │ │ │ ├── Legend of Zelda, The - Oracle of Seasons (USA, Australia)-everdrive.fla │ │ │ │ │ │ │ ├── Wario Land 3 (World) (En,Ja)-emulator-to-everdrive.fla │ │ │ │ │ │ │ ├── Wario Land 3 (World) (En,Ja)-emulator.sav │ │ │ │ │ │ │ ├── Wario Land 3 (World) (En,Ja)-everdrive-to-raw.sav │ │ │ │ │ │ │ ├── Wario Land 3 (World) (En,Ja)-everdrive-uncompressed-data.sav │ │ │ │ │ │ │ └── Wario Land 3 (World) (En,Ja)-everdrive.fla │ │ │ │ │ │ ├── neon64emulator/ │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-neon.srm │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-to-raw.sav │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link-cart-to-neon.srm │ │ │ │ │ │ │ └── Zelda II - The Adventure of Link-cart.sav │ │ │ │ │ │ ├── nes/ │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-from-cart-to-everdrive.sav │ │ │ │ │ │ │ ├── Zelda II - The Adventure of Link (USA)-from-cart.sav │ │ │ │ │ │ │ └── Zelda II - The Adventure of Link (USA)-from-everdrive.srm │ │ │ │ │ │ └── yoshis-story.17238.eep │ │ │ │ │ ├── nes/ │ │ │ │ │ │ └── Crystalis.sav │ │ │ │ │ ├── pcengine/ │ │ │ │ │ │ └── Castlevania - Rondo of Blood (my save) - raw.sav │ │ │ │ │ ├── sms/ │ │ │ │ │ │ └── Phantasy Star (USA, Europe) (Rev A).srm │ │ │ │ │ └── snes/ │ │ │ │ │ ├── Donkey Kong Country 2 - Diddy's Kong Quest.srm │ │ │ │ │ └── Legend of Zelda, The - Link's Awakening (USA, Europe).srm │ │ │ │ ├── gamecube/ │ │ │ │ │ ├── GameShark/ │ │ │ │ │ │ ├── soulcalibur-ii.20763.gcs │ │ │ │ │ │ └── soulcalibur-ii.20766.gcs │ │ │ │ │ ├── GameSpecificFixups/ │ │ │ │ │ │ ├── f_zero_gx_usa.gci │ │ │ │ │ │ └── phantasy-star-online-SNUGGLES-WEAPONS.gcp │ │ │ │ │ ├── MaxDrive/ │ │ │ │ │ │ ├── soulcalibur-ii.20764.sav │ │ │ │ │ │ └── soulcalibur-ii.8736.sav │ │ │ │ │ ├── gci/ │ │ │ │ │ │ ├── bleach_gc_tasogare_ni_mamieru_shinigami_jp.gci │ │ │ │ │ │ ├── dokapon_dx_wataru_sekai_wa_oni_darake_jp_1.gci │ │ │ │ │ │ ├── hikaru_no_go_3_jp.gci │ │ │ │ │ │ ├── konjiki_no_gashbell__yuujou_no_tag_battle_jp.gci │ │ │ │ │ │ ├── need_for_speed_underground_2_usa-recreated.gci │ │ │ │ │ │ └── need_for_speed_underground_2_usa.gci │ │ │ │ │ ├── jpn-empty-0251b-16mb.raw │ │ │ │ │ ├── memcard-image-empty-no-serial.raw │ │ │ │ │ ├── memcard-image-japan-nintendont.raw │ │ │ │ │ ├── memcard-image-recreated-fzero-no-serial.raw │ │ │ │ │ ├── memcard-image-recreated-fzero.raw │ │ │ │ │ ├── memcard-image-recreated-resized.raw │ │ │ │ │ ├── memcard-image-recreated.raw │ │ │ │ │ ├── memcard-image.raw │ │ │ │ │ ├── mine-different-flash-id-different-date.raw │ │ │ │ │ ├── mine-different-flash-id.raw │ │ │ │ │ ├── mine-same-flash-id-different-date.raw │ │ │ │ │ ├── mine-same-flash-id.raw │ │ │ │ │ └── usa-empty-0251b-16mb.raw │ │ │ │ ├── gba/ │ │ │ │ │ ├── action-replay/ │ │ │ │ │ │ ├── the-legend-of-zelda-the-minish-cap.11439.srm │ │ │ │ │ │ └── the-legend-of-zelda-the-minish-cap.11439.xps │ │ │ │ │ ├── gameshark/ │ │ │ │ │ │ ├── mario-and-luigi-superstar-saga.25949.sps │ │ │ │ │ │ ├── the-legend-of-zelda-the-minish-cap.6650.sps │ │ │ │ │ │ ├── the-legend-of-zelda-the-minish-cap.6650.sps-2 │ │ │ │ │ │ └── the-legend-of-zelda-the-minish-cap.6650.srm │ │ │ │ │ └── gameshark-sp/ │ │ │ │ │ ├── final-fantasy-tactics-advance.22864.gsv │ │ │ │ │ └── final-fantasy-tactics-advance.22864.srm │ │ │ │ ├── mister/ │ │ │ │ │ ├── gba/ │ │ │ │ │ │ ├── Final_Fight_One_Japan-mister.sav │ │ │ │ │ │ ├── Final_Fight_One_Japan-raw-converted-back.srm │ │ │ │ │ │ ├── Final_Fight_One_Japan-raw.srm │ │ │ │ │ │ ├── pokemon-sapphire-mister-fake-rtc.sav │ │ │ │ │ │ ├── pokemon-sapphire-mister-no-rtc.sav │ │ │ │ │ │ ├── pokemon-sapphire-raw.srm │ │ │ │ │ │ ├── the-legend-of-zelda-the-minish-cap.sav │ │ │ │ │ │ └── the-legend-of-zelda-the-minish-cap.srm │ │ │ │ │ ├── genesis/ │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-from-mega-sd.sav │ │ │ │ │ │ ├── Phantasy Star II (USA, Europe) (Rev A)-from-mega-sd.srm │ │ │ │ │ │ ├── Phantasy_Star_IV_USA-from-mister-zero-padded-to-raw.srm │ │ │ │ │ │ ├── Phantasy_Star_IV_USA-from-mister-zero-padded.sav │ │ │ │ │ │ ├── Phantasy_Star_IV_USA-from-retrode-to-mister.sav │ │ │ │ │ │ ├── Phantasy_Star_IV_USA-from-retrode.srm │ │ │ │ │ │ ├── Wonder Boy in Monster World mister.sav │ │ │ │ │ │ ├── Wonder Boy in Monster World raw.srm │ │ │ │ │ │ ├── phantasy-star-ii.18168-mister.sav │ │ │ │ │ │ └── phantasy-star-ii.18168-raw.srm │ │ │ │ │ ├── n64/ │ │ │ │ │ │ ├── 007 - The World Is Not Enough (USA)_1.cpk │ │ │ │ │ │ ├── Banjo-Kazooie (USA).eep │ │ │ │ │ │ ├── Donkey Kong 64 (USA).eep │ │ │ │ │ │ ├── Legend of Zelda, The - Majora's Mask (USA).fla │ │ │ │ │ │ └── Legend of Zelda, The - Ocarina of Time (USA).sra │ │ │ │ │ ├── segacd/ │ │ │ │ │ │ ├── Empty-mister-save.sav │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-internal-plus-raw-cart-to-mister.sav │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-mister-internal-only.sav │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-ram-cart-only.brm │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-raw-cart-only-to-mister.sav │ │ │ │ │ │ ├── Popful Mail (USA) (RE)-raw-internal.brm │ │ │ │ │ │ ├── Popful Mail (USA) Internal plus Cart to-emulator-internal.brm │ │ │ │ │ │ ├── Popful Mail (USA) Internal plus Cart to-emulator-ram-cart.brm │ │ │ │ │ │ ├── Popful Mail (USA) Internal plus Cart-mister.sav │ │ │ │ │ │ ├── Shining Force CD (USA) (3R)-mister-internal-only-padded.sav │ │ │ │ │ │ └── Shining Force CD (USA) (3R)-to-emulator-internal.brm │ │ │ │ │ └── segasaturn/ │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA)-recreated.sav │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA).bkr │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA).sav │ │ │ │ │ ├── Empty-mister-save.sav │ │ │ │ │ ├── Pretend-mister-save-only-cart.sav │ │ │ │ │ ├── Rayman (USA) (R2)-cart-uncompressed.bcr │ │ │ │ │ ├── Rayman (USA) (R2)-cart.bcr │ │ │ │ │ ├── Rayman (USA) (R2)-internal.bkr │ │ │ │ │ ├── Rayman (USA) (R2).sav │ │ │ │ │ ├── Sega Rally Championship Plus (Japan).bkr │ │ │ │ │ └── Sega Rally Championship Plus (Japan).sav │ │ │ │ ├── n64/ │ │ │ │ │ ├── dexdrive/ │ │ │ │ │ │ ├── Ready 2 Rumble Boxing (U) [!]-fixed-1 │ │ │ │ │ │ ├── Ready 2 Rumble Boxing (U) [!]-fixed-2 │ │ │ │ │ │ ├── Ready 2 Rumble Boxing (U) [!]-fixed.mpk │ │ │ │ │ │ ├── Ready 2 Rumble Boxing (U) [!].n64 │ │ │ │ │ │ ├── banjo-kazooie.1141-1 │ │ │ │ │ │ ├── banjo-kazooie.1141-2 │ │ │ │ │ │ ├── banjo-kazooie.1141-3 │ │ │ │ │ │ ├── banjo-kazooie.1141-4 │ │ │ │ │ │ ├── banjo-kazooie.1141.mpk │ │ │ │ │ │ ├── banjo-kazooie.1141.n64 │ │ │ │ │ │ ├── banjokaz-1 │ │ │ │ │ │ ├── banjokaz-2 │ │ │ │ │ │ ├── banjokaz.mpk │ │ │ │ │ │ ├── banjokaz.n64 │ │ │ │ │ │ ├── donkey-kong-64.1156-1 │ │ │ │ │ │ ├── donkey-kong-64.1156.mpk │ │ │ │ │ │ ├── donkey-kong-64.1156.n64 │ │ │ │ │ │ ├── ecw-hardcore-revolution-empty-header.1000.n64 │ │ │ │ │ │ ├── ecw-hardcore-revolution-no-header.1000.n64 │ │ │ │ │ │ ├── ecw-hardcore-revolution.1000-1 │ │ │ │ │ │ ├── ecw-hardcore-revolution.1000.mpk │ │ │ │ │ │ ├── ecw-hardcore-revolution.1000.n64 │ │ │ │ │ │ ├── mario-kart-64.1102.eep │ │ │ │ │ │ ├── mario-kart-64.1102.n64 │ │ │ │ │ │ ├── mario-kart-64.1116-1 │ │ │ │ │ │ ├── mario-kart-64.1116.mpk │ │ │ │ │ │ ├── mario-kart-64.1116.n64 │ │ │ │ │ │ ├── perfect-dark.1043.1116-1 │ │ │ │ │ │ ├── perfect-dark.1043.mpk │ │ │ │ │ │ ├── perfect-dark.1043.n64 │ │ │ │ │ │ ├── san-francisco-rush-extreme-racing.1103-1 │ │ │ │ │ │ ├── san-francisco-rush-extreme-racing.1103.mpk │ │ │ │ │ │ ├── san-francisco-rush-extreme-racing.1103.n64 │ │ │ │ │ │ ├── super-mario-64.1091-1 │ │ │ │ │ │ ├── super-mario-64.1091.mpk │ │ │ │ │ │ ├── super-mario-64.1091.n64 │ │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077-1 │ │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077-2 │ │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077-output.n64 │ │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077.mpk │ │ │ │ │ │ └── tony-hawks-pro-skater-2.1077.n64 │ │ │ │ │ └── mempack/ │ │ │ │ │ ├── banjokaz-1 │ │ │ │ │ ├── mario-kart-64.1116-1 │ │ │ │ │ ├── mario-kart-64.1116.mpk │ │ │ │ │ ├── san-francisco-rush-extreme-racing.1103-1 │ │ │ │ │ ├── super-mario-64.1091-1 │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077-1 │ │ │ │ │ ├── tony-hawks-pro-skater-2.1077-2 │ │ │ │ │ └── tony-hawks-pro-skater-2.1077.mpk │ │ │ │ ├── nintendoswitchonline/ │ │ │ │ │ ├── gb/ │ │ │ │ │ │ ├── Kirbys_Dreamland_2.sav │ │ │ │ │ │ ├── Kirbys_Dreamland_2.sram │ │ │ │ │ │ ├── Links_Awakening_DX.sav │ │ │ │ │ │ ├── Links_Awakening_DX.sram │ │ │ │ │ │ ├── Metroid_II_Return_of_Samus.sav │ │ │ │ │ │ ├── Metroid_II_Return_of_Samus.sram │ │ │ │ │ │ ├── Pokemon Cristal.sav │ │ │ │ │ │ ├── Pokemon Cristal.sram │ │ │ │ │ │ ├── Pokemon_-_Crystal_Version.sav │ │ │ │ │ │ ├── Pokemon_-_Crystal_Version.sram │ │ │ │ │ │ ├── Pokemon_TCG.sav │ │ │ │ │ │ ├── Pokemon_TCG.sram │ │ │ │ │ │ ├── Pokemon_TCG_Europe.sav │ │ │ │ │ │ ├── Pokemon_TCG_Europe.sram │ │ │ │ │ │ ├── Wario_Land_3.sav │ │ │ │ │ │ └── Wario_Land_3.sram │ │ │ │ │ ├── gba/ │ │ │ │ │ │ └── The_Legend_of_Zelda_The_Minish_Cap.sram │ │ │ │ │ ├── genesis/ │ │ │ │ │ │ ├── MegaMan Wily Wars SEGA GENESIS.sav │ │ │ │ │ │ ├── MegaMan Wily Wars SEGA GENESIS.sram │ │ │ │ │ │ ├── Phantasy Star 4 SEGA GENESIS.sav │ │ │ │ │ │ └── Phantasy Star 4 SEGA GENESIS.sram │ │ │ │ │ ├── n64/ │ │ │ │ │ │ ├── F-Zero N64.sra │ │ │ │ │ │ ├── F-Zero N64.sram │ │ │ │ │ │ ├── Majoras Mask N64.fla │ │ │ │ │ │ ├── Majoras Mask N64.sram │ │ │ │ │ │ ├── Mario 64 N64.sram │ │ │ │ │ │ ├── Mario Tennis N64.sram │ │ │ │ │ │ └── Operation Winback N64.sram │ │ │ │ │ ├── nes/ │ │ │ │ │ │ ├── Legend_of_Zelda_The_USA_Rev_1.sram │ │ │ │ │ │ └── Zelda-converted.srm │ │ │ │ │ └── snes/ │ │ │ │ │ └── Super Mario World SNES.sram │ │ │ │ ├── online-emulators/ │ │ │ │ │ ├── arcadespot.com/ │ │ │ │ │ │ ├── gb/ │ │ │ │ │ │ │ ├── final-fantasy-legend.sav │ │ │ │ │ │ │ ├── final-fantasy-legend.save │ │ │ │ │ │ │ ├── invalid-save-state.save │ │ │ │ │ │ │ ├── legend-of-zelda-the-links-awakening.sav │ │ │ │ │ │ │ ├── legend-of-zelda-the-links-awakening.save │ │ │ │ │ │ │ ├── pokemon-crystal.sav │ │ │ │ │ │ │ ├── pokemon-crystal.save │ │ │ │ │ │ │ ├── pokemon-yellow.sav │ │ │ │ │ │ │ ├── pokemon-yellow.save │ │ │ │ │ │ │ ├── the-legend-of-zelda-links-awakening-dx.sav │ │ │ │ │ │ │ ├── the-legend-of-zelda-links-awakening-dx.save │ │ │ │ │ │ │ ├── the-legend-of-zelda-oracle-of-seasons.sav │ │ │ │ │ │ │ ├── the-legend-of-zelda-oracle-of-seasons.save │ │ │ │ │ │ │ ├── wario-land-2.sav │ │ │ │ │ │ │ └── wario-land-2.save │ │ │ │ │ │ ├── gba/ │ │ │ │ │ │ │ ├── advance-wars.sav │ │ │ │ │ │ │ ├── advance-wars.save │ │ │ │ │ │ │ ├── donkey-kong-country-3.sav │ │ │ │ │ │ │ ├── donkey-kong-country-3.save │ │ │ │ │ │ │ ├── golden-sun.sav │ │ │ │ │ │ │ ├── golden-sun.save │ │ │ │ │ │ │ ├── invalid-save-state.save │ │ │ │ │ │ │ ├── metroid-fusion.sav │ │ │ │ │ │ │ ├── metroid-fusion.save │ │ │ │ │ │ │ ├── metroid-zero-mission.sav │ │ │ │ │ │ │ ├── metroid-zero-mission.save │ │ │ │ │ │ │ ├── pokemon-sapphire.sav │ │ │ │ │ │ │ ├── pokemon-sapphire.save │ │ │ │ │ │ │ ├── super-mario-advance-4.sav │ │ │ │ │ │ │ ├── super-mario-advance-4.save │ │ │ │ │ │ │ ├── the-legend-of-zelda-the-minish-cap.sav │ │ │ │ │ │ │ └── the-legend-of-zelda-the-minish-cap.save │ │ │ │ │ │ ├── genesis/ │ │ │ │ │ │ │ ├── phantasy-star-ii.save │ │ │ │ │ │ │ └── readme │ │ │ │ │ │ └── snes/ │ │ │ │ │ │ ├── Legend-of-Zelda-The-A-Link-to-the-Past-U-.sav │ │ │ │ │ │ └── Legend-of-Zelda-The-A-Link-to-the-Past-U-.save │ │ │ │ │ ├── myemulator.online/ │ │ │ │ │ │ ├── gba/ │ │ │ │ │ │ │ ├── gbazelda-0.sav │ │ │ │ │ │ │ ├── gbazelda-1.sav │ │ │ │ │ │ │ ├── gbazelda-2.sav │ │ │ │ │ │ │ ├── gbazelda-3.sav │ │ │ │ │ │ │ └── gbazelda.ggz │ │ │ │ │ │ ├── genesis/ │ │ │ │ │ │ │ ├── genesisphantasystar4.ggz │ │ │ │ │ │ │ └── readme │ │ │ │ │ │ └── snes/ │ │ │ │ │ │ ├── sneszelda1.ggz │ │ │ │ │ │ └── sneszelda1.sav │ │ │ │ │ └── retrogames.onl/ │ │ │ │ │ ├── gb/ │ │ │ │ │ │ ├── final-fantasy-legend-gboy.sav │ │ │ │ │ │ ├── final-fantasy-legend-gboy.state │ │ │ │ │ │ ├── invalid-file.state │ │ │ │ │ │ ├── legend-zelda-link-awakening-dx.sav │ │ │ │ │ │ ├── legend-zelda-link-awakening-dx.state │ │ │ │ │ │ ├── pokemon-crystal.sav │ │ │ │ │ │ ├── pokemon-crystal.state │ │ │ │ │ │ ├── pokemon-yellow.sav │ │ │ │ │ │ ├── pokemon-yellow.state │ │ │ │ │ │ ├── wario-land-2-gbcolor.sav │ │ │ │ │ │ ├── wario-land-2-gbcolor.state │ │ │ │ │ │ ├── wrong-size.state │ │ │ │ │ │ ├── zelda-oracle-sesion.sav │ │ │ │ │ │ └── zelda-oracle-sesion.state │ │ │ │ │ └── gba/ │ │ │ │ │ ├── advance-wars-gmba.sav │ │ │ │ │ ├── advance-wars-gmba.state │ │ │ │ │ ├── baldurs-gate.sav │ │ │ │ │ ├── baldurs-gate.state │ │ │ │ │ ├── golden-sun-gmba.sav │ │ │ │ │ ├── golden-sun-gmba.state │ │ │ │ │ ├── invalid-file.state │ │ │ │ │ ├── metroid-fusion.sav │ │ │ │ │ ├── metroid-fusion.state │ │ │ │ │ ├── metroid-zero-mission.sav │ │ │ │ │ ├── metroid-zero-mission.state │ │ │ │ │ ├── pokemon-sapphire.sav │ │ │ │ │ ├── pokemon-sapphire.state │ │ │ │ │ ├── super-mario-advance-4.sav │ │ │ │ │ ├── super-mario-advance-4.state │ │ │ │ │ ├── wrong-size.state │ │ │ │ │ ├── zelda-minish-cap.sav │ │ │ │ │ └── zelda-minish-cap.state │ │ │ │ ├── ps1/ │ │ │ │ │ ├── dexdrive/ │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.BASLUS-00067DRAX00.srm │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.gme │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.mcr │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1368-BASLUS-00067DRAX01.srm │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1368.gme │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1782-BASLUS-00067DRAX00.srm │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1782-BASLUS-00067DRAX01.srm │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1782.gme │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.3172.gme │ │ │ │ │ │ ├── digimon-world.21133-BASLUS-01032DMR0.srm │ │ │ │ │ │ ├── digimon-world.21133.gme │ │ │ │ │ │ ├── gran-turismo.26535-BASCUS-94194GT.srm │ │ │ │ │ │ ├── gran-turismo.26535.gme │ │ │ │ │ │ ├── gran-turismo.26537-BASCUS-94194GT.srm │ │ │ │ │ │ ├── gran-turismo.26537-BASCUS-94194RT.srm │ │ │ │ │ │ ├── gran-turismo.26537-output.gme │ │ │ │ │ │ ├── gran-turismo.26537.gme │ │ │ │ │ │ ├── tony-hawks-pro-skater-4.24197-BASLUS-01485PNMOG01.srm │ │ │ │ │ │ └── tony-hawks-pro-skater-4.24197.gme │ │ │ │ │ ├── memcard/ │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.BASLUS-00067DRAX00.srm │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.mcr │ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).1.mcr │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1782-BASLUS-00067DRAX00.srm │ │ │ │ │ │ ├── castlevania-symphony-of-the-night.1782-BASLUS-00067DRAX01.srm │ │ │ │ │ │ ├── gran-turismo.26537-BASCUS-94194GT.srm │ │ │ │ │ │ └── gran-turismo.26537-BASCUS-94194RT.srm │ │ │ │ │ ├── ps3/ │ │ │ │ │ │ ├── Street Fighter EX2 Plus-BASLUS-0110553595354454D.PSV │ │ │ │ │ │ ├── Suikoden 2-BASLUS-009584753322D37.PSV │ │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-7.srm │ │ │ │ │ │ └── street-fighter-ex2-plus.17782.mcr │ │ │ │ │ └── psp/ │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.BASLUS-00067DRAX00.srm │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.VMP │ │ │ │ │ ├── Castlevania - Symphony of the Night (USA).0.mcr │ │ │ │ │ ├── Suikoden 1-save-editor-signature.VMP │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-1.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-2.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-3.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-4.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-5.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-6.srm │ │ │ │ │ ├── Suikoden 2-BASLUS-00958GS2-7.srm │ │ │ │ │ ├── Suikoden 2-no-signature.VMP │ │ │ │ │ ├── Suikoden 2-psp-signature.VMP │ │ │ │ │ ├── Suikoden 2-vita-mcr2vmp-signature.VMP │ │ │ │ │ ├── Suikoden 2.VMP │ │ │ │ │ ├── gran-turismo.26537-BASCUS-94194GT.srm │ │ │ │ │ ├── gran-turismo.26537-BASCUS-94194RT.srm │ │ │ │ │ └── gran-turismo.26537-output.vmp │ │ │ │ ├── psp/ │ │ │ │ │ ├── DRACULA-PARAM-reencrypted-debug.SFO │ │ │ │ │ ├── DRACULA-PARAM-reencrypted-release.SFO │ │ │ │ │ ├── DRACULA-PARAM.SFO │ │ │ │ │ └── PARAM.SFO │ │ │ │ ├── retron5/ │ │ │ │ │ ├── Final Fantasy III (USA).sav │ │ │ │ │ ├── Final Fantasy III (USA).srm │ │ │ │ │ ├── Tomato Adventure (Japan)-truncated.srm │ │ │ │ │ └── Tomato Adventure (Japan).sav │ │ │ │ ├── segacd/ │ │ │ │ │ ├── Multiple titles - corrupted.brm │ │ │ │ │ ├── Multiple titles - created by program.brm │ │ │ │ │ ├── Multiple titles-1.srm │ │ │ │ │ ├── Multiple titles-2.srm │ │ │ │ │ ├── Multiple titles-3.srm │ │ │ │ │ ├── Multiple titles-4.srm │ │ │ │ │ ├── Multiple titles-5.srm │ │ │ │ │ ├── Multiple titles-6.srm │ │ │ │ │ ├── Multiple titles-7.srm │ │ │ │ │ ├── Multiple titles.brm │ │ │ │ │ ├── Popful Mail (U)-internal-memory-1.srm │ │ │ │ │ ├── Popful Mail (U)-internal-memory.brm │ │ │ │ │ ├── SHINING FORCE CD-0.srm │ │ │ │ │ ├── SHINING FORCE CD-1.srm │ │ │ │ │ ├── SHINING FORCE CD-2.srm │ │ │ │ │ ├── SHINING FORCE CD-3.srm │ │ │ │ │ ├── SHINING FORCE CD-4.srm │ │ │ │ │ └── SHINING FORCE CD.brm │ │ │ │ ├── segasaturn/ │ │ │ │ │ ├── DRACULAX-recreated.BUP │ │ │ │ │ ├── DRACULAX.BUP │ │ │ │ │ ├── DRACULAX.raw │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA)-1.raw │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA)-2.raw │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA)-uncompressed-recreated.bcr │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA)-uncompressed.bcr │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA).bcr │ │ │ │ │ ├── Dezaemon 2 (Japan)-1.raw │ │ │ │ │ ├── Dezaemon 2 (Japan).bkr │ │ │ │ │ ├── Empty save.bkr │ │ │ │ │ ├── Hyper Duel (Japan)-1.raw │ │ │ │ │ ├── Hyper Duel (Japan).bkr │ │ │ │ │ ├── SFORCE31-recreated.BUP │ │ │ │ │ ├── SFORCE31.BUP │ │ │ │ │ ├── SFORCE31.raw │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1)-1.raw │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1)-cart-1.raw │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1)-recreated.bcr │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1)-uncompressed.bcr │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1).bcr │ │ │ │ │ ├── Shining Force III Scenario 3 (English v25.1).bkr │ │ │ │ │ ├── saroo/ │ │ │ │ │ │ ├── Blast Wind (Japan).raw │ │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA) 1-1.raw │ │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA) 1-2.raw │ │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA) 2-1.raw │ │ │ │ │ │ ├── Daytona USA - Championship Circuit Edition (USA) 2-2.raw │ │ │ │ │ │ ├── Dungeons and Dragons Collection (Japan) (Disc 2) (Shadows over Mystara).raw │ │ │ │ │ │ ├── Hyper Duel (Japan).raw │ │ │ │ │ │ ├── Shining Force III Scenario 1 (English v25.1)-1.raw │ │ │ │ │ │ └── Shining Force III Scenario 1 (English v25.1)-2.raw │ │ │ │ │ └── yabause/ │ │ │ │ │ ├── Akumajou Dracula X - Gekka no Yasoukyoku (Japan) (2M).srm │ │ │ │ │ └── Akumajou Dracula X - Gekka no Yasoukyoku (Japan) (2M).srm-1.raw │ │ │ │ └── wii/ │ │ │ │ ├── gametdb/ │ │ │ │ │ ├── C97E.html │ │ │ │ │ ├── D40A.html │ │ │ │ │ ├── DAXE01.html │ │ │ │ │ ├── E6ZJ.html │ │ │ │ │ ├── EAEP.html │ │ │ │ │ ├── FBNE.html │ │ │ │ │ ├── JECE.html │ │ │ │ │ ├── LADE.html │ │ │ │ │ ├── MC4E.html │ │ │ │ │ ├── NADJ.html │ │ │ │ │ ├── NAJE.html │ │ │ │ │ ├── QAPN.html │ │ │ │ │ ├── R3OP01.html │ │ │ │ │ └── WKTE.html │ │ │ │ ├── n64/ │ │ │ │ │ ├── f-zero-x.15165-raw.sra │ │ │ │ │ ├── mario-golf.23681-raw.sra │ │ │ │ │ ├── mario-kart-64.14534-raw.eep │ │ │ │ │ ├── paper-mario.17225-raw.fla │ │ │ │ │ ├── super-mario-64.14546-raw.eep │ │ │ │ │ ├── the-legend-of-zelda-majoras-mask.19354-raw.fla │ │ │ │ │ └── yoshis-story.17238-raw.eep │ │ │ │ └── pcengine/ │ │ │ │ ├── Castlevania - Rondo of Blood (my save) - extracted.bup │ │ │ │ ├── Castlevania - Rondo of Blood (my save) - raw.sav │ │ │ │ ├── Castlevania - Rondo of Blood (test save) - extracted.bup │ │ │ │ ├── Castlevania - Rondo of Blood (test save) - raw.sav │ │ │ │ ├── battle-lode-runner.16193 - extracted.bup │ │ │ │ ├── battle-lode-runner.16193 - raw.sav │ │ │ │ ├── bomberman-93.20114 - extracted.bup │ │ │ │ ├── bomberman-93.20114 - raw.sav │ │ │ │ ├── neutopia-ii.21439 - extracted.bup │ │ │ │ └── neutopia-ii.21439 - raw.sav │ │ │ └── util/ │ │ │ ├── Multiple titles-to-ram-cart.brm │ │ │ ├── Multiple titles.brm │ │ │ ├── Popful Mail (USA) (RE)-internal-to-ram-cart.brm │ │ │ ├── Popful Mail (USA) (RE)-internal.sav │ │ │ ├── Tomato Adventure (Japan) extra padding at end.srm │ │ │ ├── Tomato Adventure (Japan) fixed extra padding at end.srm │ │ │ ├── Tomato Adventure (Japan) fixed extra padding at start.srm │ │ │ ├── Tomato Adventure (Japan) fixed.srm │ │ │ ├── Tomato Adventure (Japan) test save all padding.srm │ │ │ ├── Tomato Adventure (Japan).srm │ │ │ ├── Xenogears (USA) (Disc 1)-compressed.srm │ │ │ ├── Xenogears (USA) (Disc 1)-uncompressed.srm │ │ │ └── endian/ │ │ │ ├── 2ByteWord-input.sav │ │ │ ├── 2ByteWord-output.sav │ │ │ ├── 4ByteWord-input.sav │ │ │ ├── 4ByteWord-output.sav │ │ │ ├── 8ByteWord-input.sav │ │ │ └── 8ByteWord-output.sav │ │ ├── unit/ │ │ │ ├── rom-formats/ │ │ │ │ ├── GB/ │ │ │ │ │ └── gb.spec.js │ │ │ │ ├── GBA/ │ │ │ │ │ └── gba.spec.js │ │ │ │ ├── NES/ │ │ │ │ │ └── nes.spec.js │ │ │ │ ├── PSP/ │ │ │ │ │ └── PspIso.spec.js │ │ │ │ ├── SMS/ │ │ │ │ │ └── sms.spec.js │ │ │ │ └── SegaSaturn/ │ │ │ │ └── SegaSaturnCueBin.spec.js │ │ │ ├── save-formats/ │ │ │ │ ├── Dreamcast/ │ │ │ │ │ ├── Dreamcast.spec.js │ │ │ │ │ └── IndividualSaves/ │ │ │ │ │ ├── Dci.spec.js │ │ │ │ │ └── VmiVms.spec.js │ │ │ │ ├── FlashCarts/ │ │ │ │ │ ├── GB.spec.js │ │ │ │ │ ├── GBA/ │ │ │ │ │ │ ├── GBA.spec.js │ │ │ │ │ │ ├── GoombaEmulator.spec.js │ │ │ │ │ │ ├── PocketNesEmulator.spec.js │ │ │ │ │ │ └── SmsAdvanceEmulator.spec.js │ │ │ │ │ ├── GameGear.spec.js │ │ │ │ │ ├── Genesis/ │ │ │ │ │ │ ├── MegaEverdrivePro/ │ │ │ │ │ │ │ ├── 32X.spec.js │ │ │ │ │ │ │ ├── Genesis.spec.js │ │ │ │ │ │ │ ├── NES.spec.js │ │ │ │ │ │ │ ├── SMS.spec.js │ │ │ │ │ │ │ └── SegaCd.spec.js │ │ │ │ │ │ └── MegaSD/ │ │ │ │ │ │ ├── 32X.spec.js │ │ │ │ │ │ ├── Genesis.spec.js │ │ │ │ │ │ ├── SMS.spec.js │ │ │ │ │ │ └── SegaCd.spec.js │ │ │ │ │ ├── N64/ │ │ │ │ │ │ ├── GB64.spec.js │ │ │ │ │ │ ├── N64.spec.js │ │ │ │ │ │ ├── NES.spec.js │ │ │ │ │ │ └── Neon64Emulator.spec.js │ │ │ │ │ ├── NES.spec.js │ │ │ │ │ ├── PcEngine.spec.js │ │ │ │ │ ├── SMS.spec.js │ │ │ │ │ └── SNES/ │ │ │ │ │ ├── GB.spec.js │ │ │ │ │ └── SNES.spec.js │ │ │ │ ├── GBA/ │ │ │ │ │ ├── ActionReplay.spec.js │ │ │ │ │ ├── GameShark.spec.js │ │ │ │ │ └── GameSharkSP.spec.js │ │ │ │ ├── GameCube/ │ │ │ │ │ ├── GameCube.spec.js │ │ │ │ │ ├── GameSpecificFixups/ │ │ │ │ │ │ ├── FZeroGx.spec.js │ │ │ │ │ │ └── PhantasyStarOnline.spec.js │ │ │ │ │ └── IndividualSaves/ │ │ │ │ │ ├── GameShark.spec.js │ │ │ │ │ ├── Gci.spec.js │ │ │ │ │ └── MaxDrive.spec.js │ │ │ │ ├── Mister/ │ │ │ │ │ ├── GameboyAdvance.spec.js │ │ │ │ │ ├── Genesis.spec.js │ │ │ │ │ ├── N64Cart.spec.js │ │ │ │ │ ├── N64Mempack.spec.js │ │ │ │ │ ├── SegaCd.spec.js │ │ │ │ │ └── SegaSaturn.spec.js │ │ │ │ ├── N64/ │ │ │ │ │ ├── DexDrive.spec.js │ │ │ │ │ ├── IndividualSaveFilename.spec.js │ │ │ │ │ └── Mempack.spec.js │ │ │ │ ├── NintendoSwitchOnline/ │ │ │ │ │ ├── Gameboy.spec.js │ │ │ │ │ ├── GameboyAdvance.spec.js │ │ │ │ │ ├── Genesis.spec.js │ │ │ │ │ ├── N64.spec.js │ │ │ │ │ ├── Nes.spec.js │ │ │ │ │ └── Snes.spec.js │ │ │ │ ├── OnlineEmulators/ │ │ │ │ │ ├── Emulators/ │ │ │ │ │ │ ├── Gambatte.spec.js │ │ │ │ │ │ ├── Gb.spec.js │ │ │ │ │ │ ├── Snes9x.spec.js │ │ │ │ │ │ ├── VBA-Next.spec.js │ │ │ │ │ │ └── mGba.spec.js │ │ │ │ │ └── OnlineEmulatorWrapper.spec.js │ │ │ │ ├── PS1/ │ │ │ │ │ ├── DexDrive.spec.js │ │ │ │ │ ├── Memcard.spec.js │ │ │ │ │ ├── Ps3.spec.js │ │ │ │ │ └── Psp.spec.js │ │ │ │ ├── PSP/ │ │ │ │ │ ├── Executable.spec.js │ │ │ │ │ ├── ParamSfo.spec.js │ │ │ │ │ └── Savefile.spec.js │ │ │ │ ├── Retron5/ │ │ │ │ │ └── Retron5.spec.js │ │ │ │ ├── SegaCd/ │ │ │ │ │ └── SegaCd.spec.js │ │ │ │ ├── SegaSaturn/ │ │ │ │ │ ├── Emulators/ │ │ │ │ │ │ ├── mednafen.spec.js │ │ │ │ │ │ ├── yabasanshiro.spec.js │ │ │ │ │ │ └── yabause.spec.js │ │ │ │ │ ├── IndividualSaves/ │ │ │ │ │ │ └── Bup.spec.js │ │ │ │ │ ├── Saroo/ │ │ │ │ │ │ ├── Cart.spec.js │ │ │ │ │ │ ├── Internal.spec.js │ │ │ │ │ │ └── System.spec.js │ │ │ │ │ └── SegaSaturn.spec.js │ │ │ │ └── Wii/ │ │ │ │ ├── ConvertFrom/ │ │ │ │ │ ├── ConvertFromN64.spec.js │ │ │ │ │ ├── ConvertFromPcEngine.spec.js │ │ │ │ │ └── ConvertFromSega.spec.js │ │ │ │ ├── GetPlatform/ │ │ │ │ │ ├── GetPlatform.spec.js │ │ │ │ │ └── MockHttpClient.js │ │ │ │ └── Wii.spec.js │ │ │ └── util/ │ │ │ ├── CompressionGzip.spec.js │ │ │ ├── CompressionLzo.spec.js │ │ │ ├── CompressionRzip.spec.js │ │ │ ├── CompressionZlib.spec.js │ │ │ ├── Endian.spec.js │ │ │ ├── Math.spec.js │ │ │ ├── Padding.spec.js │ │ │ ├── SaveFiles.spec.js │ │ │ ├── SegaCdUtil.spec.js │ │ │ ├── Troubleshooting test files.spec.js │ │ │ ├── crypto-aes.spec.js │ │ │ ├── crypto-des.spec.js │ │ │ └── util.spec.js │ │ └── util/ │ │ ├── ArrayBuffer.js │ │ └── Crypto.js │ └── vue.config.js └── terraform/ ├── .gitignore ├── aws_credentials.example ├── dev/ │ ├── main.tf │ ├── provider.tf │ ├── variables.tf │ └── versions.tf ├── modules/ │ ├── alarms/ │ │ ├── outputs.tf │ │ ├── sns-topic.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── build-common-infrastructure/ │ │ ├── logs-bucket.tf │ │ ├── outputs.tf │ │ ├── role.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── build-pipeline-frontend/ │ │ ├── alarms.tf │ │ ├── code-build.tf │ │ ├── email-logs.tf │ │ ├── eventbridge.tf │ │ ├── python/ │ │ │ └── email-logs.py │ │ ├── variables.tf │ │ └── versions.tf │ └── frontend/ │ ├── build.tf │ ├── cloudfront.tf │ ├── dns.tf │ ├── outputs.tf │ ├── s3.tf │ ├── variables.tf │ └── versions.tf ├── prod/ │ ├── main.tf │ ├── provider.tf │ ├── variables.tf │ └── versions.tf └── terraform.tfvars.example