gitextract_pe69zl1c/ ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── Readme.md ├── data/ │ └── sounds/ │ ├── bgMusic.ogg │ └── credits_music.ogg ├── filelist.sh ├── gitrev.sh ├── installer/ │ ├── Makefile │ ├── coreinit.h │ ├── crt0.S │ ├── elf_abi.h │ ├── kernel_patches.S │ ├── kexploit.c │ ├── kexploit.h │ ├── launcher.c │ ├── logger.c │ ├── logger.h │ ├── socket.h │ ├── structs.h │ └── types.h ├── languages/ │ ├── chinese.lang │ ├── chinese_tr.lang │ ├── english.lang │ ├── french.lang │ ├── german.lang │ ├── hungarian.lang │ ├── italian.lang │ ├── japanese.lang │ ├── pt_BR.lang │ ├── pt_PT.lang │ └── spanish.lang ├── meta/ │ └── meta.xml ├── other/ │ ├── devkitPPCupdatePPCr29.pl │ └── devkitProUpdatePPCr29.ini ├── sd_loader/ │ ├── Makefile │ └── src/ │ ├── elf_abi.h │ ├── entry.c │ ├── kernel_hooks.S │ └── link.ld ├── server/ │ └── src/ │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── System/ │ │ └── IO/ │ │ ├── EndianBinaryReader.cs │ │ └── EndianBinaryWriter.cs │ ├── app.config │ ├── bin/ │ │ └── Debug/ │ │ ├── loadiine_server.exe.config │ │ ├── loadiine_server.pdb │ │ ├── loadiine_server.vshost.exe.config │ │ └── loadiine_server.vshost.exe.manifest │ ├── loadiine_server.csproj │ ├── loadiine_server.sln │ ├── loadiine_server.suo │ └── obj/ │ └── x86/ │ └── Debug/ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ResolveAssemblyReference.cache │ ├── cafiine_server.csproj.FileListAbsolute.txt │ ├── loadiine_server.csproj.FileListAbsolute.txt │ └── loadiine_server.pdb ├── src/ │ ├── Application.cpp │ ├── Application.h │ ├── common/ │ │ ├── common.h │ │ ├── kernel_defs.h │ │ ├── loader_defs.h │ │ ├── os_defs.h │ │ ├── retain_vars.c │ │ ├── retain_vars.h │ │ └── types.h │ ├── entry.cpp │ ├── fs/ │ │ ├── CFile.cpp │ │ ├── CFile.hpp │ │ ├── DirList.cpp │ │ ├── DirList.h │ │ ├── fs_utils.c │ │ ├── fs_utils.h │ │ ├── sd_fat_devoptab.c │ │ └── sd_fat_devoptab.h │ ├── game/ │ │ ├── GameLauncher.cpp │ │ ├── GameLauncher.h │ │ ├── GameList.cpp │ │ ├── GameList.h │ │ ├── memory_area_table.c │ │ ├── memory_area_table.h │ │ ├── rpx_rpl_table.c │ │ └── rpx_rpl_table.h │ ├── gitrev.h │ ├── gui/ │ │ ├── FreeTypeGX.cpp │ │ ├── FreeTypeGX.h │ │ ├── GameBgImage.cpp │ │ ├── GameBgImage.h │ │ ├── GameIcon.cpp │ │ ├── GameIcon.h │ │ ├── GameIconModel.h │ │ ├── GridBackground.cpp │ │ ├── GridBackground.h │ │ ├── Gui.h │ │ ├── GuiButton.cpp │ │ ├── GuiButton.h │ │ ├── GuiCheckBox.cpp │ │ ├── GuiCheckBox.h │ │ ├── GuiConfigurationScreen.h │ │ ├── GuiController.h │ │ ├── GuiDragListener.cpp │ │ ├── GuiDragListener.h │ │ ├── GuiElement.cpp │ │ ├── GuiElement.h │ │ ├── GuiFrame.cpp │ │ ├── GuiFrame.h │ │ ├── GuiGameBrowser.h │ │ ├── GuiGameCarousel.cpp │ │ ├── GuiGameCarousel.h │ │ ├── GuiIconCarousel.cpp │ │ ├── GuiIconCarousel.h │ │ ├── GuiIconGrid.cpp │ │ ├── GuiIconGrid.h │ │ ├── GuiImage.cpp │ │ ├── GuiImage.h │ │ ├── GuiImageAsync.cpp │ │ ├── GuiImageAsync.h │ │ ├── GuiImageData.cpp │ │ ├── GuiImageData.h │ │ ├── GuiParticleImage.cpp │ │ ├── GuiParticleImage.h │ │ ├── GuiSelectBox.cpp │ │ ├── GuiSelectBox.h │ │ ├── GuiSound.cpp │ │ ├── GuiSound.h │ │ ├── GuiSwitch.cpp │ │ ├── GuiSwitch.h │ │ ├── GuiText.cpp │ │ ├── GuiText.h │ │ ├── GuiToggle.cpp │ │ ├── GuiToggle.h │ │ ├── GuiTrigger.cpp │ │ ├── GuiTrigger.h │ │ ├── Scrollbar.cpp │ │ ├── Scrollbar.h │ │ ├── VPadController.h │ │ ├── WPadController.h │ │ └── sigslot.h │ ├── kernel/ │ │ ├── kernel_functions.c │ │ ├── kernel_functions.h │ │ ├── kernel_hooks.S │ │ ├── syscalls.c │ │ ├── syscalls.h │ │ └── syscalls_asm.S │ ├── language/ │ │ ├── gettext.cpp │ │ └── gettext.h │ ├── link.ld │ ├── main.cpp │ ├── main.h │ ├── menu/ │ │ ├── ButtonChoiceMenu.cpp │ │ ├── ButtonChoiceMenu.h │ │ ├── CreditsMenu.cpp │ │ ├── CreditsMenu.h │ │ ├── GameLauncherMenu.cpp │ │ ├── GameLauncherMenu.h │ │ ├── KeyPadMenu.cpp │ │ ├── KeyPadMenu.h │ │ ├── MainDrcButtonsFrame.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── ProgressWindow.cpp │ │ ├── ProgressWindow.h │ │ ├── SettingsCategoryMenu.cpp │ │ ├── SettingsCategoryMenu.h │ │ ├── SettingsMenu.cpp │ │ └── SettingsMenu.h │ ├── network/ │ │ ├── FileDownloader.cpp │ │ ├── FileDownloader.h │ │ ├── GameImageDownloader.cpp │ │ └── GameImageDownloader.h │ ├── patcher/ │ │ ├── aoc_patcher.cpp │ │ ├── aoc_patcher.h │ │ ├── cpp_to_c_util.cpp │ │ ├── cpp_to_c_util.h │ │ ├── extra_log_patcher.cpp │ │ ├── extra_log_patcher.h │ │ ├── fs_logger.c │ │ ├── fs_logger.h │ │ ├── fs_patcher.cpp │ │ ├── fs_patcher.h │ │ ├── fs_sd_patcher.cpp │ │ ├── fs_sd_patcher.h │ │ ├── hid_controller_function_patcher.cpp │ │ ├── hid_controller_function_patcher.h │ │ ├── patcher_util.cpp │ │ ├── patcher_util.h │ │ ├── pygecko.c │ │ ├── pygecko.h │ │ ├── rplrpx_patcher.cpp │ │ └── rplrpx_patcher.h │ ├── resources/ │ │ ├── Resources.cpp │ │ ├── Resources.h │ │ └── filelist.h │ ├── settings/ │ │ ├── CSettings.cpp │ │ ├── CSettings.h │ │ ├── CSettingsGame.cpp │ │ ├── CSettingsGame.h │ │ ├── SettingsDefs.h │ │ ├── SettingsEnums.h │ │ └── SettingsGameDefs.h │ ├── sounds/ │ │ ├── BufferCircle.cpp │ │ ├── BufferCircle.hpp │ │ ├── Mp3Decoder.cpp │ │ ├── Mp3Decoder.hpp │ │ ├── OggDecoder.cpp │ │ ├── OggDecoder.hpp │ │ ├── SoundDecoder.cpp │ │ ├── SoundDecoder.hpp │ │ ├── SoundHandler.cpp │ │ ├── SoundHandler.hpp │ │ ├── Voice.h │ │ ├── WavDecoder.cpp │ │ └── WavDecoder.hpp │ ├── system/ │ │ ├── AsyncDeleter.cpp │ │ ├── AsyncDeleter.h │ │ ├── CMutex.h │ │ ├── CThread.h │ │ ├── exception_handler.c │ │ ├── exception_handler.h │ │ ├── memory.c │ │ └── memory.h │ ├── utils/ │ │ ├── Directory.cpp │ │ ├── Directory.h │ │ ├── FileReplacer.cpp │ │ ├── FileReplacer.h │ │ ├── StringTools.cpp │ │ ├── StringTools.h │ │ ├── function_patcher.cpp │ │ ├── function_patcher.h │ │ ├── logger.c │ │ ├── logger.h │ │ ├── strings.c │ │ ├── strings.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── xml.c │ │ └── xml.h │ └── video/ │ ├── CVideo.cpp │ ├── CVideo.h │ ├── CursorDrawer.cpp │ ├── CursorDrawer.h │ └── shaders/ │ ├── ColorShader.cpp │ ├── ColorShader.h │ ├── FXAAShader.cpp │ ├── FXAAShader.h │ ├── FetchShader.h │ ├── PixelShader.h │ ├── Shader.h │ ├── Shader3D.cpp │ ├── Shader3D.h │ ├── ShaderFractalColor.cpp │ ├── ShaderFractalColor.h │ ├── Texture2DShader.cpp │ ├── Texture2DShader.h │ └── VertexShader.h ├── udp_debug_reader/ │ ├── Makefile │ ├── UdpDebugReader │ ├── UdpDebugReader.cbp │ ├── UdpDebugReader.depend │ ├── UdpDebugReader.layout │ ├── doxygen/ │ │ └── doxyfile │ └── source/ │ ├── Input.c │ ├── Input.h │ ├── main.c │ ├── network.c │ ├── network.h │ └── winsock/ │ ├── libwsock32.a │ └── winsock.h ├── updatelang.sh └── www/ └── loadiine_gx2/ ├── frame.html ├── index.html ├── payload.php ├── payload400.html ├── payload410.html ├── payload500.html ├── payload532.html ├── wiiu_browserhax_common.php ├── wiiuhaxx_common_cfg.php ├── wiiuhaxx_rop_sysver_532.php └── wiiuhaxx_rop_sysver_550.php